commit bb604e593ec1a25f8bb447a27bf745e736b46b75 Author: vladimir.buzalka Date: Mon Jun 1 15:36:31 2026 +0200 Initial commit — clean history (removed large test files, browser profiles, Medidata/Clario downloads) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b5ea29 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +__pycache__/ +__pycache__/ +*.pyc +.idea/ +.claude/ +EmailsImport/SouboryRůznéVelikosti/ +Clario/Downloads/ +Medidata/downloads/ +*/browser_profile*/ +auth.json +session.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..7ce92f3 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,14 @@ +{ + "mcpServers": { + "janssen-mongo": { + "command": "python", + "args": ["U:\\PythonProject\\Janssen\\mcp_mongo.py"], + "cwd": "U:\\PythonProject\\Janssen" + }, + "jnjemails": { + "command": "python", + "args": ["U:\\PythonProject\\Janssen\\EmailsImport\\mcp_jnjemails.py"], + "cwd": "U:\\PythonProject\\Janssen\\EmailsImport" + } + } +} diff --git a/CTMS/PanoramaContacts/CLAUDE.md b/CTMS/PanoramaContacts/CLAUDE.md new file mode 100644 index 0000000..58090f6 --- /dev/null +++ b/CTMS/PanoramaContacts/CLAUDE.md @@ -0,0 +1,117 @@ +# PanoramaContacts — CLAUDE.md + +## Účel adresáře + +Import kontaktů středisek (site contacts) z exportů systému PANORAMA (CTMS) do MySQL a jejich zobrazení ve Streamlit web reportu. +Filtruje pouze záznamy pro **Czechia**. Aktuálně pokryté protokoly: + +| Protocol ID | TA | +|---|---| +| `77242113UCO3001` | Immunology | +| `42847922MDD3003` | Neuroscience | + +--- + +## Soubory + +| Soubor | Účel | +|---|---| +| `import_CZ_contacts.py` | Import xlsx → MySQL | +| `webreport.py` | Streamlit web report | +| `run_webreport.py` | PyCharm launcher (`streamlit run webreport.py`) | +| `sql/create_CTMS_contacts.sql` | DDL tabulky `CTMS_contacts` | +| `SourceData/*.xlsx` | PANORAMA Dashboard exporty (zdrojová data) | +| `filter_state.json` | Automaticky ukládaný stav filtrů (generuje app) | + +--- + +## MySQL + +- **Host:** 192.168.1.76:3306 · **DB:** `studie` · **Tabulka:** `CTMS_contacts` +- **Sheet v xlsx:** `Site Contacts`, header na řádku 6 (0-based index 5) + +### Klíčové sloupce tabulky + +| Sloupec | Typ | Poznámka | +|---|---|---| +| `file_date` | DATE | Z `dcterms:created` v docProps/core.xml xlsx | +| `imported_at` | DATETIME | Auto timestamp importu | +| `protocol_id` | VARCHAR(20) | Identifikátor studie | +| `site_id` | VARCHAR(15) | Středisko (např. `DD5-CZ10006`) | +| `contact_role` | VARCHAR(50) | Role kontaktu (PI, Study Coordinator, …) | +| `contact_start_date` | DATE | Začátek platnosti kontaktu | +| `contact_end_date` | DATE | Konec platnosti — NULL = stále aktivní | +| `email` | VARCHAR(100) | Hlavní e-mail | + +--- + +## import_CZ_contacts.py + +- Zpracuje všechny `*.xlsx` v `SourceData/` +- Přeskočí soubory, jejichž `file_date` ≠ dnešní datum (UTC) +- Přepis: DELETE + INSERT podle `(file_date, protocol_id, country_name)` +- `clean_value()` převede NaN / NaT / Timestamp na typy přijatelné MySQL driverem + +--- + +## webreport.py — Streamlit app + +### Filtry (sidebar) + +| Filtr | Widget | Logika options | +|---|---|---| +| **Střediska** | radio | Aktivní / Neaktivní / Všechna | +| **Protokol** | selectbox | Z celé DB | +| **Role** | multiselect | Filtrováno dle protokolu + aktivní/neaktivní | +| **Site** | multiselect | Filtrováno dle protokolu + aktivní/neaktivní | +| **Hledání** | text_input | Fulltext přes všechny sloupce řádku | + +### Logika filtru Střediska + +| Hodnota | Site podmínka | End Date podmínka | +|---|---|---| +| **Aktivní** | `site_id` v `ACTIVE_SITES` | `contact_end_date IS NULL` | +| **Neaktivní** | `site_id` NOT v `ACTIVE_SITES` | bez omezení | +| **Všechna** | bez omezení | bez omezení | + +### Aktivní střediska (ACTIVE_SITES) + +```python +"77242113UCO3001": { + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", +} +"42847922MDD3003": { + "S10-CZ10004", "S10-CZ10008", "S10-CZ10011", "S10-CZ10012", +} +``` + +### Perzistence filtrů + +- Stav se ukládá do `filter_state.json` při každé změně filtru (`on_change=save_filter_state`) +- Načítá se jednou za session přes flag `filters_initialized` v `st.session_state` +- Při načítání se hodnoty validují vůči aktuálním options (ochrana před zastaralými daty) + +### Clipboard tlačítko + +- Knihovna `pyperclip` — kopíruje přímo do Windows clipboardu ze serverové strany +- Formát: `Jméno Příjmení ; …` +- Reaguje na aktuálně zobrazené (filtrované) záznamy + +### Cache + +- `@st.cache_data(ttl=300)` — data se drží 5 minut +- Tlačítko 🔄 Obnovit data volá `st.cache_data.clear()` + `st.rerun()` + +--- + +## Závislosti (venv) + +``` +mysql-connector-python +pandas +openpyxl +streamlit +pyperclip +``` diff --git a/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (32).xlsx b/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (32).xlsx new file mode 100644 index 0000000..e72322d Binary files /dev/null and b/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (32).xlsx differ diff --git a/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (33).xlsx b/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (33).xlsx new file mode 100644 index 0000000..6e9d573 Binary files /dev/null and b/CTMS/PanoramaContacts/SourceData/PANORAMA Dashboard (33).xlsx differ diff --git a/CTMS/PanoramaContacts/filter_state.json b/CTMS/PanoramaContacts/filter_state.json new file mode 100644 index 0000000..4070db8 --- /dev/null +++ b/CTMS/PanoramaContacts/filter_state.json @@ -0,0 +1,9 @@ +{ + "sel_status": "Aktivní", + "sel_proto": "77242113UCO3001", + "sel_role": [ + "Principal Investigator", + "Sub-Investigator" + ], + "sel_site": [] +} \ No newline at end of file diff --git a/CTMS/PanoramaContacts/import_CZ_contacts.py b/CTMS/PanoramaContacts/import_CZ_contacts.py new file mode 100644 index 0000000..a5ca9f5 --- /dev/null +++ b/CTMS/PanoramaContacts/import_CZ_contacts.py @@ -0,0 +1,192 @@ +""" +import_CZ_contacts.py +Importuje kontakty středisek Czechia z PANORAMA Dashboard xlsx do MySQL tabulky CTMS_contacts. +- Zpracuje všechny *.xlsx soubory ve SOURCE_DIR +- Filtruje pouze řádky Country Name == 'Czechia' +- file_date bere z document properties xlsx (dcterms:created) +- Každý soubor vždy přepíše (delete + insert podle file_date + protocol_id + country) +""" + +import zipfile +import xml.etree.ElementTree as ET +from datetime import datetime, timezone +from pathlib import Path + +import pandas as pd +import mysql.connector + +# ── Konfigurace ──────────────────────────────────────────────────────────────── +SOURCE_DIR = Path(r"U:\PythonProject\Janssen\CTMS\PanoramaContacts\SourceData") + +DB_CONFIG = { + "host": "192.168.1.76", + "port": 3306, + "user": "root", + "password": "Vlado9674+", + "database": "studie", + "charset": "utf8mb4", +} + +TABLE = "CTMS_contacts" +COUNTRY = "Czechia" +SHEET = "Site Contacts" +HEADER_ROW = 5 # 0-based → řádek č. 6 v Excelu + +COL_MAP = { + "Sector": "sector", + "TA": "ta", + "Protocol ID": "protocol_id", + "GTL-GTM/CTM": "gtl_ctm", + "Country Name": "country_name", + "LTM Name": "ltm_name", + "Site ID": "site_id", + "SM Name": "sm_name", + "PI Full Name": "pi_full_name", + "Institution Name": "institution_name", + "Contact Identifier": "contact_identifier", + "Title": "contact_title", + "Last Name": "last_name", + "First Name": "first_name", + "Contact Role": "contact_role", + "Contact Type": "contact_type", + "Pr St Cont Primary Indicator": "primary_indicator", + "SUA Reporting Indicator": "sua_reporting_indicator", + "Financial Disclosure Indicator": "financial_disclosure_indicator", + "Contact Phone Number": "phone", + "Alternative Phone Number": "phone_alt", + "Mobile Phone Number": "phone_mobile", + "Contact Fax Number": "fax", + "Contact Email Address": "email", + "SUA Reporting Email Address": "email_sua", + "Contact Start Date": "contact_start_date", + "Contact End Date": "contact_end_date", + "Degree/qualification": "degree_qualification", + "Job Title": "job_title", + "Contact Address Line 1": "address_line1", + "Contact Address Line 2": "address_line2", + "Contact Address Line 3": "address_line3", + "Contact City": "city", + "Contact Addr State/Province": "state_province", + "Contact Zip/Postal Code": "zip_postal_code", +} + + +# ── Pomocné funkce ───────────────────────────────────────────────────────────── +def get_file_created_date(xlsx_path: Path): + """Vrátí date z dcterms:created v docProps/core.xml.""" + with zipfile.ZipFile(xlsx_path) as z: + with z.open("docProps/core.xml") as f: + root = ET.parse(f).getroot() + el = root.find("{http://purl.org/dc/terms/}created") + dt = datetime.fromisoformat(el.text.replace("Z", "+00:00")) + return dt.astimezone(timezone.utc).date() + + +def clean_value(val): + """Převede NaN / NaT / Timestamp na typy přijatelné MySQL driverem.""" + import math + if val is None: + return None + if isinstance(val, float): + return None if math.isnan(val) else val + if isinstance(val, pd.Timestamp): + return None if pd.isnull(val) else val.date() + try: + if pd.isna(val): + return None + except Exception: + pass + return val + + +def get_protocol_id(xlsx_path: Path) -> str: + """Přečte protocol_id z prvního datového řádku (rychle, bez načtení celého souboru).""" + df = pd.read_excel(xlsx_path, sheet_name=SHEET, header=HEADER_ROW, + usecols=["Protocol ID"], nrows=1) + return str(df["Protocol ID"].iloc[0]) + + +def import_file(xlsx_path: Path, cursor, conn): + """Zpracuje jeden xlsx soubor — vždy přepíše (delete + insert).""" + file_date = get_file_created_date(xlsx_path) + protocol_id = get_protocol_id(xlsx_path) + print(f" file_date : {file_date}") + print(f" protocol_id : {protocol_id}") + + df = pd.read_excel(xlsx_path, sheet_name=SHEET, header=HEADER_ROW) + df_cz = df[df["Country Name"] == COUNTRY].copy() + print(f" radku CZ : {len(df_cz)}") + + if df_cz.empty: + print(" -> zadne CZ radky, preskoceno") + return 0 + + df_cz = df_cz.rename(columns=COL_MAP) + db_cols = list(COL_MAP.values()) + + # Smazání stávajících záznamů pro tento soubor (přepis) + cursor.execute( + f"DELETE FROM {TABLE} " + f"WHERE file_date = %s AND protocol_id = %s AND country_name = %s", + (file_date, protocol_id, COUNTRY) + ) + deleted = cursor.rowcount + if deleted: + print(f" prepis : smazano {deleted} starych radku") + + placeholders = ", ".join(["%s"] * (len(db_cols) + 1)) + insert_cols = "file_date, " + ", ".join(db_cols) + sql_insert = f"INSERT INTO {TABLE} ({insert_cols}) VALUES ({placeholders})" + + for _, row in df_cz.iterrows(): + values = [file_date] + [clean_value(row.get(col)) for col in db_cols] + cursor.execute(sql_insert, values) + + conn.commit() + return len(df_cz) + + +# ── Hlavní logika ────────────────────────────────────────────────────────────── +def main(): + files = sorted(SOURCE_DIR.glob("*.xlsx")) + if not files: + print(f"Zadne xlsx soubory v {SOURCE_DIR}") + return + + today = datetime.now(timezone.utc).date() + print(f"Nalezeno souboru: {len(files)} | dnesni datum: {today}") + print(f"Pripojuji se k MySQL...") + conn = mysql.connector.connect(**DB_CONFIG) + cursor = conn.cursor() + + summary = [] + for xlsx in files: + print(f"\n[{xlsx.name}]") + try: + file_date = get_file_created_date(xlsx) + if file_date != today: + print(f" file_date : {file_date} -> PRESKOCENO (neni dnesni datum)") + summary.append((xlsx.name, f"preskoceno (file_date={file_date})")) + continue + n = import_file(xlsx, cursor, conn) + if n is None: + summary.append((xlsx.name, "preskoceno")) + else: + summary.append((xlsx.name, f"importovano {n} radku")) + except Exception as e: + conn.rollback() + summary.append((xlsx.name, f"CHYBA: {e}")) + print(f" CHYBA: {e}") + + cursor.close() + conn.close() + + print("\n" + "=" * 60) + print("SOUHRN:") + for name, status in summary: + print(f" {name:<45} {status}") + print("=" * 60) + + +if __name__ == "__main__": + main() diff --git a/CTMS/PanoramaContacts/run_webreport.py b/CTMS/PanoramaContacts/run_webreport.py new file mode 100644 index 0000000..6ac7360 --- /dev/null +++ b/CTMS/PanoramaContacts/run_webreport.py @@ -0,0 +1,6 @@ +import subprocess +import sys +from pathlib import Path + +app = Path(__file__).parent / "webreport.py" +subprocess.run([sys.executable, "-m", "streamlit", "run", str(app)]) diff --git a/CTMS/PanoramaContacts/sql/create_CTMS_contacts.sql b/CTMS/PanoramaContacts/sql/create_CTMS_contacts.sql new file mode 100644 index 0000000..850ed2e --- /dev/null +++ b/CTMS/PanoramaContacts/sql/create_CTMS_contacts.sql @@ -0,0 +1,83 @@ +-- ============================================================ +-- Databáze : studie +-- Tabulka : CTMS_contacts +-- Popis : Kontakty center ze systému PANORAMA (CTMS) +-- studie 42847922MDD3003 (Neuroscience) +-- Vytvořeno : 2026-05-07 +-- ============================================================ + +USE studie; + +CREATE TABLE IF NOT EXISTS CTMS_contacts ( + -- ── Interní klíče ────────────────────────────────────────── + id INT UNSIGNED NOT NULL AUTO_INCREMENT, + file_date DATE NOT NULL COMMENT 'Datum vytvoření zdrojového souboru (PANORAMA export)', + imported_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Datum a čas importu záznamu do DB', + + -- ── Studie / organizace ──────────────────────────────────── + sector VARCHAR(20) COMMENT 'Pharma / ...', + ta VARCHAR(30) COMMENT 'Therapeutic Area', + protocol_id VARCHAR(20) COMMENT 'Protocol ID (např. 42847922MDD3003)', + gtl_ctm VARCHAR(50) COMMENT 'GTL-GTM/CTM jméno', + + -- ── Lokalita (site) ──────────────────────────────────────── + country_name VARCHAR(60) COMMENT 'Název země', + ltm_name VARCHAR(50) COMMENT 'LTM Name', + site_id VARCHAR(15) COMMENT 'Identifikátor střediska (např. S10-CZ10008)', + sm_name VARCHAR(60) COMMENT 'Site Manager Name', + pi_full_name VARCHAR(80) COMMENT 'Principal Investigator – celé jméno', + institution_name VARCHAR(100) COMMENT 'Název instituce / kliniky', + + -- ── Kontaktní osoba ──────────────────────────────────────── + contact_identifier INT UNSIGNED COMMENT 'PANORAMA interní ID kontaktu', + contact_title VARCHAR(25) COMMENT 'Titul (Mr, Ms, Dr, ...)', + last_name VARCHAR(50) COMMENT 'Příjmení', + first_name VARCHAR(40) COMMENT 'Jméno', + contact_role VARCHAR(50) COMMENT 'Role kontaktu (Study Coordinator, PI, ...)', + contact_type VARCHAR(30) COMMENT 'Typ kontaktu (Study-Site Staff, ...)', + + -- ── Indikátory ───────────────────────────────────────────── + primary_indicator ENUM('Yes','No') COMMENT 'Pr St Cont Primary Indicator', + sua_reporting_indicator ENUM('Yes','No') COMMENT 'SUA Reporting Indicator', + financial_disclosure_indicator ENUM('Yes','No') COMMENT 'Financial Disclosure Indicator', + + -- ── Kontaktní údaje ──────────────────────────────────────── + phone VARCHAR(40) COMMENT 'Hlavní telefonní číslo', + phone_alt VARCHAR(40) COMMENT 'Alternativní telefonní číslo', + phone_mobile VARCHAR(40) COMMENT 'Mobilní číslo', + fax VARCHAR(40) COMMENT 'Faxové číslo', + email VARCHAR(100) COMMENT 'Hlavní e-mailová adresa', + email_sua VARCHAR(100) COMMENT 'SUA Reporting e-mail', + + -- ── Datumy ───────────────────────────────────────────────── + contact_start_date DATE COMMENT 'Datum začátku platnosti kontaktu', + contact_end_date DATE COMMENT 'Datum konce platnosti kontaktu', + + -- ── Kvalifikace ──────────────────────────────────────────── + degree_qualification VARCHAR(30) COMMENT 'Titul / kvalifikace', + job_title VARCHAR(40) COMMENT 'Pracovní pozice', + + -- ── Adresa ───────────────────────────────────────────────── + address_line1 VARCHAR(100) COMMENT 'Adresní řádek 1', + address_line2 VARCHAR(60) COMMENT 'Adresní řádek 2', + address_line3 VARCHAR(100) COMMENT 'Adresní řádek 3', + city VARCHAR(50) COMMENT 'Město', + state_province VARCHAR(40) COMMENT 'Stát / provincie', + zip_postal_code VARCHAR(20) COMMENT 'PSČ', + + -- ── Klíče ────────────────────────────────────────────────── + PRIMARY KEY (id), + + -- Rychlé vyhledávání podle nejčastěji dotazovaných polí + INDEX idx_file_date (file_date), + INDEX idx_country (country_name), + INDEX idx_site_id (site_id), + INDEX idx_protocol (protocol_id), + INDEX idx_contact_role (contact_role), + INDEX idx_email (email), + INDEX idx_contact_identifier (contact_identifier) + +) ENGINE=InnoDB + DEFAULT CHARSET=utf8mb4 + COLLATE=utf8mb4_unicode_ci + COMMENT='CTMS contacts – Site Contacts, studie 42847922MDD3003'; diff --git a/CTMS/PanoramaContacts/webreport.py b/CTMS/PanoramaContacts/webreport.py new file mode 100644 index 0000000..355af9f --- /dev/null +++ b/CTMS/PanoramaContacts/webreport.py @@ -0,0 +1,223 @@ +""" +create_report.py +Streamlit report kontaktů z MySQL tabulky CTMS_contacts. +Spuštění: streamlit run create_report.py +""" + +import json +from pathlib import Path + +import mysql.connector +import pandas as pd +import pyperclip +import streamlit as st + +# ── Konfigurace ──────────────────────────────────────────────────────────────── +DB_CONFIG = { + "host": "192.168.1.76", + "port": 3306, + "user": "root", + "password": "Vlado9674+", + "database": "studie", + "charset": "utf8mb4", +} + +TABLE = "CTMS_contacts" +STATE_FILE = Path(__file__).parent / "filter_state.json" + +ACTIVE_SITES = { + "77242113UCO3001": { + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", + }, + "42847922MDD3003": { + "S10-CZ10004", "S10-CZ10008", "S10-CZ10011", "S10-CZ10012", + }, +} + +DISPLAY_COLS = { + "site_id": "Site ID", + "institution_name": "Institution", + "pi_full_name": "PI", + "contact_title": "Title", + "last_name": "Last Name", + "first_name": "First Name", + "contact_role": "Role", + "primary_indicator": "Primary", + "phone": "Phone", + "phone_mobile": "Mobile", + "email": "Email", + "contact_start_date": "Start Date", + "contact_end_date": "End Date", +} + +STATUS_OPTIONS = ["Aktivní", "Neaktivní", "Všechna"] +DEFAULT_STATUS = "Aktivní" + + +# ── Perzistence filtrů ───────────────────────────────────────────────────────── +def load_filter_state() -> dict: + if STATE_FILE.exists(): + try: + return json.loads(STATE_FILE.read_text(encoding="utf-8")) + except Exception: + pass + return {} + +def save_filter_state(): + state = { + "sel_status": st.session_state.get("sel_status", DEFAULT_STATUS), + "sel_proto": st.session_state.get("sel_proto", "Všechny"), + "sel_role": st.session_state.get("sel_role", []), + "sel_site": st.session_state.get("sel_site", []), + } + STATE_FILE.write_text(json.dumps(state, ensure_ascii=False, indent=2), encoding="utf-8") + + +# ── Data ─────────────────────────────────────────────────────────────────────── +@st.cache_data(ttl=300) +def load_data() -> pd.DataFrame: + cols = ", ".join(DISPLAY_COLS.keys()) + sql = ( + f"SELECT protocol_id, file_date, {cols} " + f"FROM {TABLE} " + f"ORDER BY protocol_id, site_id, contact_role, last_name, first_name" + ) + conn = mysql.connector.connect(**DB_CONFIG) + cursor = conn.cursor(dictionary=True) + cursor.execute(sql) + rows = cursor.fetchall() + cursor.close() + conn.close() + return pd.DataFrame(rows) + + +# ── Aplikace ─────────────────────────────────────────────────────────────────── +st.set_page_config(page_title="CTMS Contacts", page_icon="🏥", layout="wide") +st.title("🏥 CTMS Contacts — Czechia") + +try: + df = load_data() +except Exception as e: + st.error(f"Chyba připojení k MySQL: {e}") + st.stop() + +protocols = ["Všechny"] + sorted(df["protocol_id"].unique().tolist()) + +# Načti uložený stav jednou za session +if "filters_initialized" not in st.session_state: + saved = load_filter_state() + st.session_state["sel_status"] = saved.get("sel_status", DEFAULT_STATUS) if saved.get("sel_status") in STATUS_OPTIONS else DEFAULT_STATUS + st.session_state["sel_proto"] = saved.get("sel_proto", "Všechny") if saved.get("sel_proto") in protocols else "Všechny" + st.session_state["sel_role"] = saved.get("sel_role", []) + st.session_state["sel_site"] = saved.get("sel_site", []) + st.session_state["filters_initialized"] = True + +# Role a centra podle vybraného protokolu + aktivní/neaktivní +all_active = set().union(*ACTIVE_SITES.values()) +df_opts = df.copy() +if st.session_state["sel_proto"] != "Všechny": + df_opts = df_opts[df_opts["protocol_id"] == st.session_state["sel_proto"]] +if st.session_state["sel_status"] == "Aktivní": + df_opts = df_opts[df_opts["site_id"].isin(all_active) & df_opts["contact_end_date"].isna()] +elif st.session_state["sel_status"] == "Neaktivní": + df_opts = df_opts[~df_opts["site_id"].isin(all_active)] +roles = sorted(df_opts["contact_role"].dropna().unique().tolist()) +sites = sorted(df_opts["site_id"].dropna().unique().tolist()) + +# Pročisti neplatné výběry po změně protokolu +st.session_state["sel_role"] = [r for r in st.session_state["sel_role"] if r in roles] +st.session_state["sel_site"] = [s for s in st.session_state["sel_site"] if s in sites] + +# ── Sidebar filtry ───────────────────────────────────────────────────────────── +with st.sidebar: + st.header("Filtry") + + st.radio( + "Střediska", STATUS_OPTIONS, horizontal=True, + key="sel_status", on_change=save_filter_state, + ) + st.selectbox( + "Protokol", protocols, + key="sel_proto", on_change=save_filter_state, + ) + st.multiselect( + "Role", roles, + key="sel_role", on_change=save_filter_state, + ) + st.multiselect( + "Site", sites, + key="sel_site", on_change=save_filter_state, + ) + + search = st.text_input("Hledat (jméno, email…)") + + st.divider() + if st.button("🔄 Obnovit data"): + st.cache_data.clear() + st.rerun() + + st.caption(f"Naposledy načteno: {pd.Timestamp.now().strftime('%H:%M:%S')}") + +# ── Filtrování ───────────────────────────────────────────────────────────────── +filtered = df.copy() + +if st.session_state["sel_proto"] != "Všechny": + filtered = filtered[filtered["protocol_id"] == st.session_state["sel_proto"]] + +if st.session_state["sel_status"] == "Aktivní": + filtered = filtered[filtered["site_id"].isin(all_active) & filtered["contact_end_date"].isna()] +elif st.session_state["sel_status"] == "Neaktivní": + filtered = filtered[~filtered["site_id"].isin(all_active)] + +if st.session_state["sel_role"]: + filtered = filtered[filtered["contact_role"].isin(st.session_state["sel_role"])] +if st.session_state["sel_site"]: + filtered = filtered[filtered["site_id"].isin(st.session_state["sel_site"])] +if search: + mask = filtered.apply( + lambda row: row.astype(str).str.contains(search, case=False, na=False).any(), + axis=1, + ) + filtered = filtered[mask] + +# ── Metriky ──────────────────────────────────────────────────────────────────── +col1, col2, col3, col4 = st.columns(4) +col1.metric("Kontaktů celkem", len(filtered)) +col2.metric("Protokolů", filtered["protocol_id"].nunique()) +col3.metric("Středisek", filtered["site_id"].nunique()) +col4.metric("Rolí", filtered["contact_role"].nunique()) + +st.divider() + +# ── Tabulka ──────────────────────────────────────────────────────────────────── +display = filtered[["protocol_id", "file_date"] + list(DISPLAY_COLS.keys())].copy() +display = display.rename(columns={"protocol_id": "Protocol", "file_date": "File Date", **DISPLAY_COLS}) + +st.dataframe( + display, + width="stretch", + hide_index=True, + column_config={ + "Email": st.column_config.LinkColumn("Email", display_text=".*"), + "Start Date": st.column_config.DateColumn("Start Date", format="DD-MMM-YYYY"), + "End Date": st.column_config.DateColumn("End Date", format="DD-MMM-YYYY"), + }, +) + +st.caption(f"Zobrazeno {len(filtered)} z {len(df)} záznamů") + +st.divider() +email_rows = filtered[["first_name", "last_name", "email"]].dropna(subset=["email"]) +email_rows = email_rows[email_rows["email"].str.strip() != ""] +entries = [ + f"{row.first_name} {row.last_name} <{row.email}>" + for row in email_rows.itertuples() +] +email_str = "; ".join(entries) + +if st.button(f"📋 Kopírovat emaily do clipboardu ({len(entries)} adres)"): + if entries: + pyperclip.copy(email_str) + st.success(f"✅ Zkopírováno {len(entries)} adres — vlož přímo do pole Komu.") diff --git a/CTMS/VisitsFromCTMSExport/10_explore_data.py b/CTMS/VisitsFromCTMSExport/10_explore_data.py new file mode 100644 index 0000000..8bab6e6 --- /dev/null +++ b/CTMS/VisitsFromCTMSExport/10_explore_data.py @@ -0,0 +1,47 @@ +import pandas as pd + +CSV_FILE = "filename.csv" + +df = pd.read_csv(CSV_FILE, sep=";", encoding="utf-8-sig") + +# Parse dates +date_cols = ["Original Due Date", "Due Date", "Window Start Date", "Cutoff Date", "Completed Date"] +for col in date_cols: + df[col] = pd.to_datetime(df[col], errors="coerce") + +# Country from site number +df["Country"] = df["Study Site Number"].str.extract(r"DD5-([A-Z]+)\d+") + +print("=" * 60) +print("CTMS VISITS EXPORT — přehled dat") +print("=" * 60) +print(f"\nCelkem řádků : {len(df):,}") +print(f"Celkem sloupců: {len(df.columns)}") +print(f"\nSloupce:\n " + "\n ".join(df.columns.tolist())) + +print(f"\nSites celkem : {df['Study Site Number'].nunique()}") +print(f"Zemí celkem : {df['Country'].nunique()}") +print(f"Země : {', '.join(sorted(df['Country'].dropna().unique()))}") + +print("\nStatus:") +for k, v in df["Status"].value_counts().items(): + print(f" {k:<20} {v:>6,}") + +print("\nCategory:") +for k, v in df["Category"].value_counts().items(): + print(f" {k:<25} {v:>6,}") + +print("\nSub Category:") +for k, v in df["Sub Category"].value_counts().items(): + print(f" {k:<20} {v:>6,}") + +print(f"\nReference kódy: {sorted(df['Reference'].dropna().unique().tolist())}") + +print("\nRozsah dat:") +for col in ["Due Date", "Completed Date"]: + vals = df[col].dropna() + if len(vals): + print(f" {col:<20} {vals.min().date()} — {vals.max().date()}") + +print("\nNáhled (5 řádků):") +print(df.head(5).to_string()) diff --git a/CTMS/VisitsFromCTMSExport/20_report_CZ.py b/CTMS/VisitsFromCTMSExport/20_report_CZ.py new file mode 100644 index 0000000..24f560c --- /dev/null +++ b/CTMS/VisitsFromCTMSExport/20_report_CZ.py @@ -0,0 +1,401 @@ +import pandas as pd +import openpyxl +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side, numbers +from openpyxl.utils import get_column_letter +from datetime import date +import os + +CSV_FILE = "filename.csv" +SVR_FILE = "Site Visit Report (2).xlsx" +OUTPUT_DIR = os.path.join("..", "..", "CTMS", "output") +os.makedirs(OUTPUT_DIR, exist_ok=True) +today_str = date.today().strftime("%Y-%m-%d") +OUTPUT_FILE = os.path.join(OUTPUT_DIR, f"{today_str} UCO3001 CZ CTMS Visits.xlsx") + +# --- Load & filter --- +df = pd.read_csv(CSV_FILE, sep=";", encoding="utf-8-sig") +df["Country"] = df["Study Site Number"].str.extract(r"DD5-([A-Z]+)\d+") +cz = df[df["Country"] == "CZ"].copy() + +date_cols = ["Original Due Date", "Due Date", "Window Start Date", "Cutoff Date", "Completed Date"] +for col in date_cols: + cz[col] = pd.to_datetime(cz[col], errors="coerce") + +SITES = [ + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", +] +cz = cz[cz["Study Site Number"].isin(SITES) & cz["Status"].isin(["Completed", "Scheduled", "Planned"])].copy() + +cz["CRA"] = cz["Assigned To Last Name"].fillna("") + +# --- Merge Site Visit Report (2) --- +import re as _re +def _svid_to_ref(svid): + svid = str(svid).replace("MCTMS|", "") + if svid == "Qualification Visit": return "SQV" + if svid == "Site Initiation": return "SIV" + if svid == "Closure Visit": return "COV" + m = _re.match(r"Monitoring Visit (\d+)", svid) + return f"IMV{m.group(1)}" if m else svid + +svr = pd.read_excel(SVR_FILE, header=5) +svr = svr[svr["Site ID"].isin(SITES)].copy() +svr["Reference"] = svr["Site Visit ID"].apply(_svid_to_ref) +svr = svr[["Site ID", "Reference", "Site Visit Type", "Submitter Name", "Approver Name"]].rename(columns={"Site ID": "Study Site Number"}) + +cz = cz.merge(svr, on=["Study Site Number", "Reference"], how="left") + +# --- Styles --- +FONT_NAME = "Arial" +COL_HEADER = "1F5C99" # dark blue +COL_COMPL = "E2EFDA" # light green +COL_SCHED = "FFF2CC" # light yellow +COL_PLAN = "FCE4D6" # light orange +COL_NA = "F2F2F2" # grey +WHITE = "FFFFFF" +DARK_TEXT = "000000" + +STATUS_COLORS = { + "Completed": COL_COMPL, + "Scheduled": COL_SCHED, + "Planned": COL_PLAN, + "Not applicable": COL_NA, +} + +thin = Side(style="thin", color="BFBFBF") +med = Side(style="medium", color="808080") + +def border(left=thin, right=thin, top=thin, bottom=thin): + return Border(left=left, right=right, top=top, bottom=bottom) + +def header_cell(ws, row, col, value, width=None): + c = ws.cell(row=row, column=col, value=value) + c.font = Font(name=FONT_NAME, bold=True, color=WHITE, size=10) + c.fill = PatternFill("solid", fgColor=COL_HEADER) + c.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + c.border = Border(left=Side(style="medium", color=WHITE), + right=Side(style="medium", color=WHITE), + top=thin, bottom=thin) + if width and col <= ws.max_column or width: + ws.column_dimensions[get_column_letter(col)].width = width + return c + +def data_cell(ws, row, col, value, fill_color=WHITE, align="left", bold=False, num_fmt=None, date_val=False): + c = ws.cell(row=row, column=col, value=value) + c.font = Font(name=FONT_NAME, size=9, bold=bold, color=DARK_TEXT) + if fill_color != WHITE: + c.fill = PatternFill("solid", fgColor=fill_color) + c.alignment = Alignment(horizontal=align, vertical="center") + c.border = border() + if num_fmt: + c.number_format = num_fmt + elif date_val and isinstance(value, (pd.Timestamp, type(None))): + c.number_format = "DD-MMM-YYYY" + return c + +# ========================================================= +# SHEET 1: Přehled per site +# ========================================================= +wb = openpyxl.Workbook() +ws1 = wb.active +ws1.title = "Přehled CZ" +ws1.freeze_panes = "A3" + +# Title +ws1.merge_cells("A1:M1") +title = ws1["A1"] +title.value = f"UCO3001 — CZ CTMS Visits Overview | {today_str}" +title.font = Font(name=FONT_NAME, bold=True, size=12, color=WHITE) +title.fill = PatternFill("solid", fgColor="2E4057") +title.alignment = Alignment(horizontal="center", vertical="center") +ws1.row_dimensions[1].height = 22 + +# Headers +headers = [ + ("Site", 14), ("Investigátor", 22), + ("SQV", 11), ("SIV", 11), + ("IMV\nCompleted", 11), ("IMV\nScheduled", 11), ("IMV\nPlanned", 11), + ("COV", 11), + ("Poslední vizita\nDatum", 14), ("Poslední vizita\nTyp", 16), + ("Příští vizita\nDatum", 14), ("Příští vizita\nTyp", 16), + ("Celkem\nvizit", 10), +] +for ci, (h, w) in enumerate(headers, 1): + header_cell(ws1, 2, ci, h, width=w) +ws1.row_dimensions[2].height = 30 + +# Data per site +sites = sorted(cz["Study Site Number"].unique()) +for ri, site in enumerate(sites, 3): + s = cz[cz["Study Site Number"] == site] + inv_row = s.iloc[0] + inv = f"{inv_row['INV_FIRST_NAME']} {inv_row['INV_LAST_NAME']}" + cra = s["CRA"].replace("", pd.NA).dropna().iloc[0] if not s["CRA"].replace("", pd.NA).dropna().empty else "" + + sqv = s[s["Reference"] == "SQV"] + siv = s[s["Reference"] == "SIV"] + cov = s[s["Reference"] == "COV"] + imv = s[s["Category"] == "Monitoring Visit"] + + def visit_status(sub): + if sub.empty: + return ("—", COL_NA) + st = sub.iloc[0]["Status"] + return (st, STATUS_COLORS.get(st, WHITE)) + + sqv_st, sqv_c = visit_status(sqv) + siv_st, siv_c = visit_status(siv) + cov_st, cov_c = visit_status(cov) + + imv_comp = int((imv["Status"] == "Completed").sum()) + imv_sch = int((imv["Status"] == "Scheduled").sum()) + imv_plan = int((imv["Status"] == "Planned").sum()) + + # Last completed + comp = s[s["Status"] == "Completed"].dropna(subset=["Completed Date"]) + last_comp = comp.sort_values("Completed Date").iloc[-1] if not comp.empty else None + last_date = last_comp["Completed Date"] if last_comp is not None else None + last_type = last_comp["Reference"] if last_comp is not None else "—" + + # Next upcoming — pouze vizity s Due Date po poslední Completed + upcoming = s[s["Status"].isin(["Scheduled", "Planned"])].dropna(subset=["Due Date"]) + if last_date is not None: + upcoming = upcoming[upcoming["Due Date"] > last_date] + next_vis = upcoming.sort_values("Due Date").iloc[0] if not upcoming.empty else None + next_date = next_vis["Due Date"] if next_vis is not None else None + next_type = next_vis["Reference"] if next_vis is not None else "—" + + total = len(s) + bg = WHITE if ri % 2 == 0 else "F7F9FC" + + row_data = [ + (site, "left", True, None, None), + (inv, "left", False, None, None), + (sqv_st, "center", False, None, sqv_c), + (siv_st, "center", False, None, siv_c), + (imv_comp, "center", False, "#,##0", None), + (imv_sch, "center", False, "#,##0", None), + (imv_plan, "center", False, "#,##0", None), + (cov_st, "center", False, None, cov_c), + (last_date, "center", False, "DD-MMM-YY",None), + (last_type, "center", False, None, None), + (next_date, "center", False, "DD-MMM-YY",None), + (next_type, "center", False, None, None), + (total, "center", True, "#,##0", None), + ] + for ci, (val, align, bold, fmt, fill) in enumerate(row_data, 1): + fc = fill if fill else bg + c = data_cell(ws1, ri, ci, val, fill_color=fc, align=align, bold=bold) + if fmt: + c.number_format = fmt + ws1.row_dimensions[ri].height = 16 + +# Autofilter +ws1.auto_filter.ref = f"A2:{get_column_letter(len(headers))}2" + +# ========================================================= +# SHEET 2: Detail všech CZ vizit +# ========================================================= +ws2 = wb.create_sheet("Detail CZ") +ws2.freeze_panes = "A3" + +ws2.merge_cells("A1:N1") +t2 = ws2["A1"] +t2.value = f"UCO3001 — CZ CTMS Visits — Detail | {today_str}" +t2.font = Font(name=FONT_NAME, bold=True, size=12, color=WHITE) +t2.fill = PatternFill("solid", fgColor="2E4057") +t2.alignment = Alignment(horizontal="center", vertical="center") +ws2.row_dimensions[1].height = 22 + +det_headers = [ + ("Site", 14), ("Investigátor", 22), ("CRA (Submitter)", 24), + ("Ref", 9), ("Název vizity", 24), ("Category", 20), ("Sub Category", 16), + ("Status", 14), + ("Due Date", 13), ("Window Start", 13), ("Cutoff Date", 13), ("Completed Date", 13), + ("Typ vizity", 12), +] +for ci, (h, w) in enumerate(det_headers, 1): + header_cell(ws2, 2, ci, h, width=w) +ws2.row_dimensions[2].height = 26 + +# Sort: site → SQV → SIV → IMV1 → IMV2 … → COV +ref_order = {"SQV": 0, "SIV": 1, "COV": 9999} +def ref_sort_key(ref): + if ref in ref_order: + return ref_order[ref] + import re + m = re.match(r"IMV(\d+)$", str(ref)) + return int(m.group(1)) + 1 if m else 5000 +cz["_ref_ord"] = cz["Reference"].apply(ref_sort_key) +detail = cz.sort_values(["Study Site Number", "_ref_ord"]).reset_index(drop=True) + +for ri, row in detail.iterrows(): + r = ri + 3 + st = row["Status"] + bg = STATUS_COLORS.get(st, WHITE) + + inv = f"{row['INV_FIRST_NAME']} {row['INV_LAST_NAME']}" + submitter = row["Submitter Name"] if pd.notna(row.get("Submitter Name")) else "" + visit_type = row["Site Visit Type"] if pd.notna(row.get("Site Visit Type")) else "" + vals = [ + (row["Study Site Number"], "left", True), + (inv, "left", False), + (submitter, "left", False), + (row["Reference"], "center", True), + (row["Visit Name"], "left", False), + (row["Category"], "left", False), + (row["Sub Category"], "left", False), + (st, "center", False), + (row["Due Date"], "center", False), + (row["Window Start Date"], "center", False), + (row["Cutoff Date"], "center", False), + (row["Completed Date"], "center", False), + (visit_type, "center", False), + ] + for ci, (val, align, bold) in enumerate(vals, 1): + c = data_cell(ws2, r, ci, val, fill_color=bg, align=align, bold=bold) + if isinstance(val, pd.Timestamp) and not pd.isna(val): + c.value = val.to_pydatetime() + c.number_format = "DD-MMM-YY" + ws2.row_dimensions[r].height = 14 + +ws2.auto_filter.ref = f"A2:{get_column_letter(len(det_headers))}2" + +# ========================================================= +# SHEET 3: Nadcházející / Scheduled+Planned +# ========================================================= +ws3 = wb.create_sheet("Nadcházející vizity") +ws3.freeze_panes = "A3" + +ws3.merge_cells("A1:J1") +t3 = ws3["A1"] +t3.value = f"UCO3001 — CZ — Nadcházející vizity (Scheduled + Planned) | {today_str}" +t3.font = Font(name=FONT_NAME, bold=True, size=12, color=WHITE) +t3.fill = PatternFill("solid", fgColor="2E4057") +t3.alignment = Alignment(horizontal="center", vertical="center") +ws3.row_dimensions[1].height = 22 + +upc_headers = [ + ("Due Date", 13), ("Site", 14), ("Investigátor", 22), ("CRA", 14), + ("Ref", 9), ("Název vizity", 24), ("Category", 20), + ("Status", 12), ("Window Start", 13), ("Cutoff Date", 13), +] +for ci, (h, w) in enumerate(upc_headers, 1): + header_cell(ws3, 2, ci, h, width=w) +ws3.row_dimensions[2].height = 26 + +upcoming = cz[cz["Status"].isin(["Scheduled", "Planned"])].sort_values(["Due Date", "Study Site Number"]).reset_index(drop=True) + +for ri, row in upcoming.iterrows(): + r = ri + 3 + bg = STATUS_COLORS.get(row["Status"], WHITE) + inv = f"{row['INV_FIRST_NAME']} {row['INV_LAST_NAME']}" + vals = [ + (row["Due Date"], "center", True), + (row["Study Site Number"], "left", False), + (inv, "left", False), + (row["CRA"], "center", False), + (row["Reference"], "center", True), + (row["Visit Name"], "left", False), + (row["Category"], "left", False), + (row["Status"], "center", False), + (row["Window Start Date"], "center", False), + (row["Cutoff Date"], "center", False), + ] + for ci, (val, align, bold) in enumerate(vals, 1): + c = data_cell(ws3, r, ci, val, fill_color=bg, align=align, bold=bold) + if isinstance(val, pd.Timestamp) and not pd.isna(val): + c.value = val.to_pydatetime() + c.number_format = "DD-MMM-YY" + ws3.row_dimensions[r].height = 14 + +ws3.auto_filter.ref = f"A2:{get_column_letter(len(upc_headers))}2" + +# ========================================================= +# SHEET 4: Problémy — datové nesoulady +# ========================================================= +ws4 = wb.create_sheet("Problémy") +ws4.freeze_panes = "A3" + +# Načteme původní data bez statusového filtru pro detekci problémů +df_raw = pd.read_csv(CSV_FILE, sep=";", encoding="utf-8-sig") +df_raw["Country"] = df_raw["Study Site Number"].str.extract(r"DD5-([A-Z]+)\d+") +cz_raw = df_raw[df_raw["Study Site Number"].isin(SITES)].copy() +for col in date_cols: + cz_raw[col] = pd.to_datetime(cz_raw[col], errors="coerce") +cz_raw["CRA"] = cz_raw["Assigned To Last Name"].fillna("") +cz_raw = cz_raw.merge(svr, on=["Study Site Number", "Reference"], how="left") +cz_raw["Submitter Name"] = cz_raw["Submitter Name"].fillna("") + +problems = [] + +# Pravidlo 1: Completed Date vyplněno ale Status ≠ Completed +mask1 = cz_raw["Completed Date"].notna() & (cz_raw["Status"] != "Completed") +for _, row in cz_raw[mask1].iterrows(): + problems.append((row, "Completed Date je vyplněno, ale Status není Completed")) + +# Seřadit podle site a reference +import re as _re +def _ref_key(ref): + if ref == "SQV": return 0 + if ref == "SIV": return 1 + if ref == "COV": return 9999 + m = _re.match(r"IMV(\d+)$", str(ref)) + return int(m.group(1)) + 1 if m else 5000 + +problems.sort(key=lambda x: (x[0]["Study Site Number"], _ref_key(x[0]["Reference"]))) + +COL_PROBLEM = "FFC7CE" # světle červená + +ws4.merge_cells("A1:M1") +t4 = ws4["A1"] +t4.value = f"UCO3001 — CZ — Datové problémy k opravě v OneCTMS | {today_str}" +t4.font = Font(name=FONT_NAME, bold=True, size=12, color=WHITE) +t4.fill = PatternFill("solid", fgColor="C00000") +t4.alignment = Alignment(horizontal="center", vertical="center") +ws4.row_dimensions[1].height = 22 + +prob_headers = [ + ("Site", 14), ("Investigátor", 22), ("CRA (Submitter)", 24), + ("Ref", 9), ("Název vizity", 24), ("Category", 18), + ("Status", 14), + ("Due Date", 13), ("Completed Date", 13), + ("", 2), + ("Důvod — co je potřeba opravit v OneCTMS", 50), +] +for ci, (h, w) in enumerate(prob_headers, 1): + header_cell(ws4, 2, ci, h, width=w) +ws4.row_dimensions[2].height = 26 + +for ri, (row, reason) in enumerate(problems, 3): + inv = f"{row['INV_FIRST_NAME']} {row['INV_LAST_NAME']}" + vals = [ + (row["Study Site Number"], "left", True, None), + (inv, "left", False, None), + (row["Submitter Name"], "left", False, None), + (row["Reference"], "center", True, None), + (row["Visit Name"], "left", False, None), + (row["Category"], "left", False, None), + (row["Status"], "center", False, None), + (row["Due Date"], "center", False, "DD-MMM-YY"), + (row["Completed Date"], "center", False, "DD-MMM-YY"), + ("", "center", False, None), + (reason, "left", True, None), + ] + for ci, (val, align, bold, fmt) in enumerate(vals, 1): + c = data_cell(ws4, ri, ci, val, fill_color=COL_PROBLEM, align=align, bold=bold) + if fmt and isinstance(val, pd.Timestamp) and not pd.isna(val): + c.value = val.to_pydatetime() + c.number_format = fmt + ws4.row_dimensions[ri].height = 16 + +ws4.auto_filter.ref = f"A2:{get_column_letter(len(prob_headers))}2" + +wb.save(OUTPUT_FILE) +print(f"Report uložen: {OUTPUT_FILE}") +print(f" Sheet 'Přehled CZ' : {len(sites)} sites") +print(f" Sheet 'Detail CZ' : {len(detail)} řádků") +print(f" Sheet 'Nadcházející vizity': {len(upcoming)} vizit") +print(f" Sheet 'Problémy' : {len(problems)} záznamů") diff --git a/CTMS/VisitsFromCTMSExport/NOTES.md b/CTMS/VisitsFromCTMSExport/NOTES.md new file mode 100644 index 0000000..da3424d --- /dev/null +++ b/CTMS/VisitsFromCTMSExport/NOTES.md @@ -0,0 +1,44 @@ +# OneCTMS — Visit Schedule Notes + +## Zdroj +LTM Local Trial Manager OneCTMS Manual, ver. 11.0, 15-Dec-2024 (stránky 11–28) + +## Statusy vizit + +| Status | Popis | +|---|---| +| **Planned** | Vizita existuje v harmonogramu, SM zatím nezadal Visit Start Date. Dropdown nabídka jej obsahuje, ale manuál jeho použití na str. 11–28 blíže nevysvětluje. | +| **Scheduled** | SM zadal Visit Start Date → datum se automaticky propíše do ATLAS jako "Next Scheduled Visit Date". | +| **Completed** | SM označil vizitu za dokončenou. | +| **Not applicable** | Nevyužitý placeholder — prázdný slot ze DSM šablony (výchozích 50 MV). Nemá vypovídací hodnotu, filtrujeme ven. | + +Přechod stavů dle manuálu (str. 24): +``` +Planned → Scheduled → Completed +``` + +## DSM specifika (studie UCO3001) + +- Studie používá **Dynamic Site Monitoring (DSM)** — šablona SIV + SCV + 50 MV s 8týdenními intervaly. +- **Due Date se v DSM nepoužívá pro řazení** — vizity se řadí podle číselné sekvence (IMV1, IMV2, ...). +- Správné pořadí vizit: **SQV → SIV → IMV1 → IMV2 → … → COV** +- `Not applicable` vizity jsou nevyužité sloty šablony → vyřadit z reportů a počtů. +- `Planned` vizity jsou reálné budoucí vizity bez potvrzeného data → ponechat. + +## Zdrojové soubory + +| Soubor | Systém | Odkud | +|---|---|---| +| `filename.csv` | **OneCTMS** | modul Visits → EMEA export (středníkový CSV) | +| `Site Visit Report (2).xlsx` | **VIPER** | SVR Metrics report | + +`filename.csv` obsahuje harmonogram vizit (plánované i completed), ale pole Assigned To je vyplněno nesystematicky — nelze spolehlivě použít jako zdroj CRA. + +`Site Visit Report (2).xlsx` obsahuje pouze vizity se schváleným reportem (SVR Status = Reviewed and Approved), ale má klíčové pole **Submitter Name** = kdo vizitu reálně provedl. Oba soubory se propojují přes Site ID + Reference (SQV/SIV/IMV1...). + +## Report skript + +`20_report_CZ.py` — generuje Excel report pro 12 CZ center (Buzalka/Cetkovská porfolio): +- Sheet **Přehled CZ** — souhrn per site +- Sheet **Detail CZ** — všechny vizity, řazeno SQV→SIV→IMV1…→COV +- Sheet **Nadcházející vizity** — Scheduled + Planned seřazeno dle Due Date diff --git a/CTMS/VisitsFromCTMSExport/Site Visit Report (2).xlsx b/CTMS/VisitsFromCTMSExport/Site Visit Report (2).xlsx new file mode 100644 index 0000000..d2faf22 Binary files /dev/null and b/CTMS/VisitsFromCTMSExport/Site Visit Report (2).xlsx differ diff --git a/CTMS/VisitsFromCTMSExport/Site Visit Report (3).xlsx b/CTMS/VisitsFromCTMSExport/Site Visit Report (3).xlsx new file mode 100644 index 0000000..da4d4b7 Binary files /dev/null and b/CTMS/VisitsFromCTMSExport/Site Visit Report (3).xlsx differ diff --git a/CTMS/VisitsFromCTMSExport/filename.csv b/CTMS/VisitsFromCTMSExport/filename.csv new file mode 100644 index 0000000..5f5c214 --- /dev/null +++ b/CTMS/VisitsFromCTMSExport/filename.csv @@ -0,0 +1,32099 @@ +Study;Study Code;Study Site Number;Site Number;INV_FIRST_NAME;INV_LAST_NAME;Reference;Visit Name;Status;Category;Sub Category;Original Due Date;Due Date;Window Start Date;Cutoff Date;Completed Date;Assigned To First Name;Assigned To Other Names;Assigned To Last Name +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-20;2025-05-08;2025-05-20;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"COV";"Site Closure";"";"Closure Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10001";"DD5-AR10001";"Edgardo Daniel";"Gimenez";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10002";"DD5-AR10002";"Maria Jimena";"Ortiz";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-27;2025-05-08;2025-05-27;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10003";"DD5-AR10003";"Luciana Soledad";"Brunatto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-19;2025-05-08;2025-05-19;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10004";"DD5-AR10004";"Gabriela";"Moran Faienzo";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2026-01-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-02-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-04-01;"Azul";"";"Tejedor" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"COV";"Site Closure";"";"Closure Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10005";"DD5-AR10005";"Claudia";"Fuxman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-13;2025-05-08;2025-05-13;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2025-12-12;"Lucila";"";"Belen Mendez" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-18;2026-03-18;2026-03-18;2026-03-18;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-13;2026-05-13;2026-05-13;2026-05-13;2026-02-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-07-08;2026-07-08;2026-07-08;2026-07-08;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"COV";"Site Closure";"";"Closure Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10006";"DD5-AR10006";"Silvina";"Goncalves";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-15;2036-10-15;2036-10-15;2036-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-15;2025-05-08;2025-05-15;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-02-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"COV";"Site Closure";"";"Closure Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10007";"DD5-AR10007";"Domingo";"Balderramo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-23;2036-10-23;2036-10-23;2036-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10008";"DD5-AR10008";"Emiliano";"Tron";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-02;2025-12-02;2025-12-02;2025-12-02;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"COV";"Site Closure";"";"Closure Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10009";"DD5-AR10009";"Juan";"Lasa";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10010";"DD5-AR10010";"Eduardo";"Martinez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-16;2025-05-08;2025-05-16;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10011";"DD5-AR10011";"Martin";"Dolan";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10012";"DD5-AR10012";"Ezequiel";"Balaban";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-14;2025-05-08;2025-05-14;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"COV";"Site Closure";"";"Closure Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10013";"DD5-AR10013";"Astrid ";"Rausch ";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-02;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-02-23;"Azul";"";"Tejedor" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-03-11;"Azul";"";"Tejedor" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10014";"DD5-AR10014";"Martin";"Toro";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10015";"DD5-AR10015";"Maria Josefina";"Sobrero";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-27;2025-05-08;2025-05-27;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"COV";"Site Closure";"";"Closure Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10016";"DD5-AR10016";"Juan";"Trakal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-30;2036-10-30;2036-10-30;2036-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10017";"DD5-AR10017";"Diego";"Sartori";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-05-12;2026-05-12;2026-05-12;2026-05-12;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-07-07;2026-07-07;2026-07-07;2026-07-07;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"COV";"Site Closure";"";"Closure Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-14;2036-10-14;2036-10-14;2036-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10018";"DD5-AR10018";"Luciana";"Guzman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-09;2036-12-09;2036-12-09;2036-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;;2025-05-08;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-02-26;2026-02-26;2026-02-26;2026-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-23;2026-04-23;2026-04-23;2026-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-18;2026-06-18;2026-06-18;2026-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-13;2026-08-13;2026-08-13;2026-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-08;2026-10-08;2026-10-08;2026-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-03;2026-12-03;2026-12-03;2026-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-28;2027-01-28;2027-01-28;2027-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-25;2027-03-25;2027-03-25;2027-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-20;2027-05-20;2027-05-20;2027-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-15;2027-07-15;2027-07-15;2027-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-09;2027-09-09;2027-09-09;2027-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-04;2027-11-04;2027-11-04;2027-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-30;2027-12-30;2027-12-30;2027-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-24;2028-02-24;2028-02-24;2028-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-20;2028-04-20;2028-04-20;2028-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-15;2028-06-15;2028-06-15;2028-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-10;2028-08-10;2028-08-10;2028-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-05;2028-10-05;2028-10-05;2028-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-30;2028-11-30;2028-11-30;2028-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-25;2029-01-25;2029-01-25;2029-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-22;2029-03-22;2029-03-22;2029-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-17;2029-05-17;2029-05-17;2029-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-12;2029-07-12;2029-07-12;2029-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-06;2029-09-06;2029-09-06;2029-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-01;2029-11-01;2029-11-01;2029-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-27;2029-12-27;2029-12-27;2029-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-21;2030-02-21;2030-02-21;2030-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-18;2030-04-18;2030-04-18;2030-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-13;2030-06-13;2030-06-13;2030-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-08;2030-08-08;2030-08-08;2030-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-03;2030-10-03;2030-10-03;2030-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-28;2030-11-28;2030-11-28;2030-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-23;2031-01-23;2031-01-23;2031-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-20;2031-03-20;2031-03-20;2031-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-15;2031-05-15;2031-05-15;2031-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-10;2031-07-10;2031-07-10;2031-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-04;2031-09-04;2031-09-04;2031-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-30;2031-10-30;2031-10-30;2031-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-25;2031-12-25;2031-12-25;2031-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-19;2032-02-19;2032-02-19;2032-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-15;2032-04-15;2032-04-15;2032-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-10;2032-06-10;2032-06-10;2032-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-05;2032-08-05;2032-08-05;2032-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-30;2032-09-30;2032-09-30;2032-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-25;2032-11-25;2032-11-25;2032-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-20;2033-01-20;2033-01-20;2033-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-17;2033-03-17;2033-03-17;2033-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-12;2033-05-12;2033-05-12;2033-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-07;2033-07-07;2033-07-07;2033-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-01;2033-09-01;2033-09-01;2033-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-27;2033-10-27;2033-10-27;2033-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-22;2033-12-22;2033-12-22;2033-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-16;2034-02-16;2034-02-16;2034-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-13;2034-04-13;2034-04-13;2034-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-08;2034-06-08;2034-06-08;2034-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-03;2034-08-03;2034-08-03;2034-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-28;2034-09-28;2034-09-28;2034-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-23;2034-11-23;2034-11-23;2034-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-18;2035-01-18;2035-01-18;2035-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-15;2035-03-15;2035-03-15;2035-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-10;2035-05-10;2035-05-10;2035-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"COV";"Site Closure";"";"Closure Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-30;2035-08-30;2035-08-30;2035-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-25;2035-10-25;2035-10-25;2035-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-20;2035-12-20;2035-12-20;2035-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-14;2036-02-14;2036-02-14;2036-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-10;2036-04-10;2036-04-10;2036-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-05;2036-06-05;2036-06-05;2036-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-31;2036-07-31;2036-07-31;2036-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-25;2036-09-25;2036-09-25;2036-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10019";"DD5-AR10019";"Raquel";"Gonzalez";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-20;2036-11-20;2036-11-20;2036-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-02-24;"Azul";"";"Tejedor" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-03-13;"Azul";"";"Tejedor" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10020";"DD5-AR10020";"Pamela";"Daffra";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2026-01-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"COV";"Site Closure";"";"Closure Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AR10021";"DD5-AR10021";"Javier";"Toibaro";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-08;2025-12-08;2025-12-08;2025-12-08;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"COV";"Site Closure";"";"Closure Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10001";"DD5-AU10001";"Manjeet";"Sandhu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2025-11-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-02-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10002";"DD5-AU10002";"Nik John";"Ding";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10003";"DD5-AU10003";"James";"Daveson";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-11-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-04-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10004";"DD5-AU10004";"Britt";"Christensen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-02-11;"Isabelle";"";"Park" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"COV";"Site Closure";"";"Closure Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10005";"DD5-AU10005";"Lena";"Thin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10006";"DD5-AU10006";"Kate";"Lynch ";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10007";"DD5-AU10007";"Crispin";"Corte";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10008";"DD5-AU10008";"Miles";"Sparrow";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-04;2025-10-23;2025-12-04;;2025-10-24;"Isabelle";"";"Park" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-29;2025-12-18;2025-12-18;2025-12-18;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-26;2026-02-12;2026-02-12;2026-02-12;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-21;2026-04-09;2026-04-09;2026-04-09;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-16;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-10;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-05;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-31;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-25;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-22;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-17;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-12;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-07;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-02;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-27;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-23;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-18;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-13;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-07;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-02;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-28;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-22;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-19;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-14;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-09;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-04;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-29;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-24;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-21;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-16;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-11;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-05;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-31;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-26;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-20;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-17;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-12;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-07;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-02;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-27;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-22;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-18;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-13;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-08;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-02;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-28;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-23;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-17;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-14;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-09;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-04;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-29;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-24;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-19;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-16;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-11;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-06;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-31;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-26;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-21;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-15;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-12;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-07;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-02;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-27;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-22;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-17;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-13;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-08;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-03;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-28;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10009";"DD5-AU10009";"Jakob";"Begun";"COV";"Site Closure";"";"Closure Visit";"";2035-04-12;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10010";"DD5-AU10010";"Edward";"Giles";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2025-11-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;2026-03-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"COV";"Site Closure";"";"Closure Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10011";"DD5-AU10011";"Rupert";"Leong";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-06-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-AU10012";"DD5-AU10012";"Tom";"Goodsall";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2025-12-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-06;2026-05-06;2026-05-06;2026-05-06;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10001";"DD5-BE10001";"Marc";"Ferrante";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-07;2026-01-07;2026-01-07;2026-01-07;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-29;2026-04-29;2026-04-29;2026-04-29;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"COV";"Site Closure";"";"Closure Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10002";"DD5-BE10002";"Vinciane";"Muls";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-01;2036-10-01;2036-10-01;2036-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-07;2026-01-07;2026-01-07;2026-01-07;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV2";"Monitoring Visit 2";"Planned";"Monitoring Visit";"";2026-04-29;2026-04-29;2026-04-29;2026-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"COV";"Site Closure";"";"Closure Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10003";"DD5-BE10003";"Pieter";"Dewint";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-01;2036-10-01;2036-10-01;2036-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-01;2026-05-01;2026-05-01;2026-05-01;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10004";"DD5-BE10004";"Harald";"Peeters";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"SIV";"Site Initiation";"";"Initiation Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10005";"DD5-BE10005";"Edouard";"Louis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"SIV";"Site Initiation";"Planned";"Initiation Visit";"";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2026-01-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10006";"DD5-BE10006";"Triana";"Lobaton Ortega";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10007";"DD5-BE10007";"Olivier";"Dewit";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-13;2026-02-13;2026-02-13;2026-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"COV";"Site Closure";"";"Closure Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10008";"DD5-BE10008";"Lena";"Capirchio";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10009";"DD5-BE10009";"Barbara";"Willandt";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10010";"DD5-BE10010";"Evi";"Van Dyck";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-09;2026-01-09;2026-01-09;2026-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10011";"DD5-BE10011";"Patrick";"Bontems";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-09;;2026-02-09;;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"";"Non-Routine visit";"Planned";"Monitoring Visit";"";;;;;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-12-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BE10012";"DD5-BE10012";"Elisabeth";"De Greef";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-22;"Barbara";"";"Silva" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-11-22;2025-11-22;2025-11-22;2025-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV1";"Monitoring Visit 1";"Not applicable";"Monitoring Visit";"";2026-01-17;2026-01-17;2026-01-17;2026-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-14;2026-03-14;2026-03-14;2026-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-09;2026-05-09;2026-05-09;2026-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-04;2026-07-04;2026-07-04;2026-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-29;2026-08-29;2026-08-29;2026-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-24;2026-10-24;2026-10-24;2026-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-19;2026-12-19;2026-12-19;2026-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-13;2027-02-13;2027-02-13;2027-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-10;2027-04-10;2027-04-10;2027-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-05;2027-06-05;2027-06-05;2027-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-31;2027-07-31;2027-07-31;2027-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-25;2027-09-25;2027-09-25;2027-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-20;2027-11-20;2027-11-20;2027-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-15;2028-01-15;2028-01-15;2028-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-11;2028-03-11;2028-03-11;2028-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-06;2028-05-06;2028-05-06;2028-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-01;2028-07-01;2028-07-01;2028-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-26;2028-08-26;2028-08-26;2028-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-21;2028-10-21;2028-10-21;2028-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-16;2028-12-16;2028-12-16;2028-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-10;2029-02-10;2029-02-10;2029-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-07;2029-04-07;2029-04-07;2029-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-02;2029-06-02;2029-06-02;2029-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-28;2029-07-28;2029-07-28;2029-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-22;2029-09-22;2029-09-22;2029-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-17;2029-11-17;2029-11-17;2029-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-12;2030-01-12;2030-01-12;2030-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-09;2030-03-09;2030-03-09;2030-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-04;2030-05-04;2030-05-04;2030-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-29;2030-06-29;2030-06-29;2030-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-24;2030-08-24;2030-08-24;2030-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-19;2030-10-19;2030-10-19;2030-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-14;2030-12-14;2030-12-14;2030-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-08;2031-02-08;2031-02-08;2031-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-05;2031-04-05;2031-04-05;2031-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-31;2031-05-31;2031-05-31;2031-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-26;2031-07-26;2031-07-26;2031-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-20;2031-09-20;2031-09-20;2031-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-15;2031-11-15;2031-11-15;2031-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-10;2032-01-10;2032-01-10;2032-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-06;2032-03-06;2032-03-06;2032-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-01;2032-05-01;2032-05-01;2032-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-26;2032-06-26;2032-06-26;2032-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-21;2032-08-21;2032-08-21;2032-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-16;2032-10-16;2032-10-16;2032-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-11;2032-12-11;2032-12-11;2032-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-05;2033-02-05;2033-02-05;2033-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-02;2033-04-02;2033-04-02;2033-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-28;2033-05-28;2033-05-28;2033-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-23;2033-07-23;2033-07-23;2033-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-17;2033-09-17;2033-09-17;2033-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-12;2033-11-12;2033-11-12;2033-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-07;2034-01-07;2034-01-07;2034-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-04;2034-03-04;2034-03-04;2034-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-29;2034-04-29;2034-04-29;2034-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-24;2034-06-24;2034-06-24;2034-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-19;2034-08-19;2034-08-19;2034-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-14;2034-10-14;2034-10-14;2034-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-09;2034-12-09;2034-12-09;2034-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-03;2035-02-03;2035-02-03;2035-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-31;2035-03-31;2035-03-31;2035-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"COV";"Site Closure";"";"Closure Visit";"";2035-03-31;2035-03-31;2035-03-31;2035-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-26;2035-05-26;2035-05-26;2035-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-21;2035-07-21;2035-07-21;2035-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-15;2035-09-15;2035-09-15;2035-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-10;2035-11-10;2035-11-10;2035-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-05;2036-01-05;2036-01-05;2036-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-01;2036-03-01;2036-03-01;2036-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-26;2036-04-26;2036-04-26;2036-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-21;2036-06-21;2036-06-21;2036-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10001";"DD5-BR10001";"Alexander de Sa";"Rolim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-16;2036-08-16;2036-08-16;2036-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10002";"DD5-BR10002";"Anderson";"Silva";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"Ludmila";"";"Carvalho" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-05-15;2026-05-15;2026-05-15;2026-05-15;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"COV";"Site Closure";"";"Closure Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-17;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-12;2036-12-12;2036-12-12;2036-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10003";"DD5-BR10003";"Caio";"Freire";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-06;2037-02-06;2037-02-06;2037-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-16;2026-01-16;2026-01-16;2026-01-16;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"COV";"Site Closure";"";"Closure Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10004";"DD5-BR10004";"Carlos Alexandre";"Antunes de Brito";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10005";"DD5-BR10005";"Cintia";"Clemente";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-01-23;2026-01-23;2026-01-23;2026-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"COV";"Site Closure";"";"Closure Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10006";"DD5-BR10006";"Daniel";"Da Silva";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-17;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"SQV";"Qualification Visit";"";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-23;"Amanda";"";"Peres" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10007";"DD5-BR10007";"Dilendson";"Oliveira";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10008";"DD5-BR10008";"Genoile Oliveira";"Santana";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"Barbara";"";"Silva" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10009";"DD5-BR10009";"Jose Eduardo";"Vasconcelos Fernandes";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10010";"DD5-BR10010";"Julio";"Chebli";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"Ludmila";"";"Carvalho" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-26;"Ludmila";"";"Carvalho" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"COV";"Site Closure";"";"Closure Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10011";"DD5-BR10011";"Ligia";"Yukie Sassaki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-31;2036-10-31;2036-10-31;2036-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-27;"Amanda";"";"Peres" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-13;2026-02-13;2026-02-13;2026-02-13;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"COV";"Site Closure";"";"Closure Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10012";"DD5-BR10012";"Livia";"Celani";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-07;2036-11-07;2036-11-07;2036-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"Barbara";"";"Silva" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"COV";"Site Closure";"";"Closure Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-19;2036-09-19;2036-09-19;2036-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10013";"DD5-BR10013";"Luciana";"Harlacher";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-14;2036-11-14;2036-11-14;2036-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10014";"DD5-BR10014";"Luisa";"Leite Barros";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-02-27;2026-03-23;2026-02-27;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"COV";"Site Closure";"";"Closure Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-26;2036-09-26;2036-09-26;2036-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10015";"DD5-BR10015";"Marjorie";"Argollo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-21;2036-11-21;2036-11-21;2036-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"Barbara";"";"Silva" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-03-04;"Thiago";"";"Santos" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;2026-04-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"COV";"Site Closure";"";"Closure Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10016";"DD5-BR10016";"Odery";"Ramos Junior";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-28;2036-11-28;2036-11-28;2036-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-30;"Ludmila";"";"Carvalho" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-04-23;2026-04-23;2026-04-23;2026-04-23;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-06-18;2026-06-18;2026-06-18;2026-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-13;2026-08-13;2026-08-13;2026-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-08;2026-10-08;2026-10-08;2026-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-03;2026-12-03;2026-12-03;2026-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-28;2027-01-28;2027-01-28;2027-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-25;2027-03-25;2027-03-25;2027-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-20;2027-05-20;2027-05-20;2027-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-15;2027-07-15;2027-07-15;2027-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-09;2027-09-09;2027-09-09;2027-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-04;2027-11-04;2027-11-04;2027-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-30;2027-12-30;2027-12-30;2027-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-24;2028-02-24;2028-02-24;2028-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-20;2028-04-20;2028-04-20;2028-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-15;2028-06-15;2028-06-15;2028-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-10;2028-08-10;2028-08-10;2028-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-05;2028-10-05;2028-10-05;2028-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-30;2028-11-30;2028-11-30;2028-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-25;2029-01-25;2029-01-25;2029-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-22;2029-03-22;2029-03-22;2029-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-17;2029-05-17;2029-05-17;2029-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-12;2029-07-12;2029-07-12;2029-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-06;2029-09-06;2029-09-06;2029-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-01;2029-11-01;2029-11-01;2029-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-27;2029-12-27;2029-12-27;2029-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-21;2030-02-21;2030-02-21;2030-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-18;2030-04-18;2030-04-18;2030-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-13;2030-06-13;2030-06-13;2030-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-08;2030-08-08;2030-08-08;2030-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-03;2030-10-03;2030-10-03;2030-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-28;2030-11-28;2030-11-28;2030-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-23;2031-01-23;2031-01-23;2031-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-20;2031-03-20;2031-03-20;2031-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-15;2031-05-15;2031-05-15;2031-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-10;2031-07-10;2031-07-10;2031-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-04;2031-09-04;2031-09-04;2031-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-30;2031-10-30;2031-10-30;2031-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-25;2031-12-25;2031-12-25;2031-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-19;2032-02-19;2032-02-19;2032-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-15;2032-04-15;2032-04-15;2032-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-10;2032-06-10;2032-06-10;2032-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-05;2032-08-05;2032-08-05;2032-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-30;2032-09-30;2032-09-30;2032-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-25;2032-11-25;2032-11-25;2032-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-20;2033-01-20;2033-01-20;2033-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-17;2033-03-17;2033-03-17;2033-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-12;2033-05-12;2033-05-12;2033-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-07;2033-07-07;2033-07-07;2033-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-01;2033-09-01;2033-09-01;2033-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-27;2033-10-27;2033-10-27;2033-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-22;2033-12-22;2033-12-22;2033-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-16;2034-02-16;2034-02-16;2034-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-13;2034-04-13;2034-04-13;2034-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-08;2034-06-08;2034-06-08;2034-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-03;2034-08-03;2034-08-03;2034-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-28;2034-09-28;2034-09-28;2034-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-23;2034-11-23;2034-11-23;2034-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-18;2035-01-18;2035-01-18;2035-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-15;2035-03-15;2035-03-15;2035-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-10;2035-05-10;2035-05-10;2035-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-30;2035-08-30;2035-08-30;2035-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"COV";"Site Closure";"";"Closure Visit";"";2035-08-30;2035-08-30;2035-08-30;2035-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-25;2035-10-25;2035-10-25;2035-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-20;2035-12-20;2035-12-20;2035-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-14;2036-02-14;2036-02-14;2036-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-10;2036-04-10;2036-04-10;2036-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-05;2036-06-05;2036-06-05;2036-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-31;2036-07-31;2036-07-31;2036-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-25;2036-09-25;2036-09-25;2036-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-20;2036-11-20;2036-11-20;2036-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10017";"DD5-BR10017";"Roberto";"Silva Junior";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-15;2037-01-15;2037-01-15;2037-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-05-01;2026-05-01;2026-05-01;2026-05-01;2026-03-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-06-26;2026-06-26;2026-06-26;2026-06-26;2026-04-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV2";"Monitoring Visit 2";"Planned";"Monitoring Visit";"Within the plan";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"COV";"Site Closure";"";"Closure Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-28;2036-11-28;2036-11-28;2036-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10018";"DD5-BR10018";"Rogério";"Parra";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-23;2037-01-23;2037-01-23;2037-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"COV";"Site Closure";"";"Closure Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-05;2036-12-05;2036-12-05;2036-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10019";"DD5-BR10019";"Sabine";"Truppel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-30;2037-01-30;2037-01-30;2037-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"Barbara";"";"Silva" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-12;2025-12-12;2025-12-12;2025-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"COV";"Site Closure";"";"Closure Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10020";"DD5-BR10020";"Vanessa";"Scheeffer";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-24;2025-05-24;2025-05-24;2025-05-24;2025-05-30;"Ludmila";"";"Carvalho" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"COV";"Site Closure";"";"Closure Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-19;2036-12-19;2036-12-19;2036-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10021";"DD5-BR10021";"Luciana";"Teixeira Campos";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-13;2037-02-13;2037-02-13;2037-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;2026-02-12;"Fernanda";"";"Lima" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"COV";"Site Closure";"";"Closure Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-19;2036-12-19;2036-12-19;2036-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10022";"DD5-BR10022";"Bruna";"Meyer De Mattos Correa";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-13;2037-02-13;2037-02-13;2037-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"COV";"Site Closure";"";"Closure Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-31;2036-10-31;2036-10-31;2036-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-26;2036-12-26;2036-12-26;2036-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10023";"DD5-BR10023";"Jonathas";"Stifft";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-20;2037-02-20;2037-02-20;2037-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-06-05;2026-06-05;2026-06-05;2026-06-05;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"COV";"Site Closure";"";"Closure Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-07;2036-11-07;2036-11-07;2036-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-02;2037-01-02;2037-01-02;2037-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10024";"DD5-BR10024";"Fernanda";"Nunes";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-27;2037-02-27;2037-02-27;2037-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-02-19;"Fernanda";"";"Lima" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;2026-03-27;"Fernanda";"";"Lima" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"COV";"Site Closure";"";"Closure Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-20;2037-01-20;2037-01-20;2037-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10025";"DD5-BR10025";"Jorge";"Andrade Pinto";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-17;2037-03-17;2037-03-17;2037-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"COV";"Site Closure";"";"Closure Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-20;2037-01-20;2037-01-20;2037-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10026";"DD5-BR10026";"Aderson";"Cintra";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-17;2037-03-17;2037-03-17;2037-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10027";"DD5-BR10027";"Geni Satomi";"Cunrath";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-29;2025-05-29;2025-05-29;2025-05-29;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-31;2025-05-31;2025-05-31;2025-05-31;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"COV";"Site Closure";"";"Closure Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-20;2037-01-20;2037-01-20;2037-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10028";"DD5-BR10028";"Cristina";"Flores";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-17;2037-03-17;2037-03-17;2037-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-31;2025-05-31;2025-05-31;2025-05-31;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-03-30;"Fernanda";"";"Lima" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"COV";"Site Closure";"";"Closure Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-20;2037-01-20;2037-01-20;2037-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10029";"DD5-BR10029";"Herlon";"Escorsi Valerio";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-17;2037-03-17;2037-03-17;2037-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-14;2025-06-14;2025-06-14;2025-06-14;2025-06-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-01-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;2026-04-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-BR10030";"DD5-BR10030";"Flavio";"Steinwurz";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-08;2025-10-08;2025-10-08;2025-10-08;2025-10-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-03;2025-12-03;2025-12-03;2025-12-03;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-25;2026-03-25;2026-03-25;2026-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"COV";"Site Closure";"";"Closure Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10001";"DD5-CA10001";"Lindsay";"Crabbe";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-10-09;2025-10-09;2025-10-09;2025-10-16;2025-10-16;"Karlee";"";"Trafford" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-04;2025-12-04;2025-12-04;2025-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"COV";"Site Closure";"";"Closure Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10002";"DD5-CA10002";"Vivian";"Huang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"COV";"Site Closure";"";"Closure Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10003";"DD5-CA10003";"AllenWhey Khye";"Lim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2025-11-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10004";"DD5-CA10004";"Yvette";"Leung";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"COV";"Site Closure";"";"Closure Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10005";"DD5-CA10005";"Robert";"Battat";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2025-10-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10006";"DD5-CA10006";"Joe";"Pham";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2026-01-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-02-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"COV";"Site Closure";"";"Closure Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10007";"DD5-CA10007";"Shaalan Jesse";"Siffledeen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-21;2036-10-21;2036-10-21;2036-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"UNSCH1";"Unscheduled Visit 1";"Completed";"Qualification Visit";"Within the plan";2025-08-22;2025-08-22;;;2025-09-22;"Karlee";"";"Trafford" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2025-11-11;"Karlee";"";"Trafford" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2025-12-08;"Karlee";"";"Trafford" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-11;2026-04-09;2026-02-11;2026-04-09;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10008";"DD5-CA10008";"Vipul";"Jairath";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2036-11-06;2036-11-06;2036-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10009";"DD5-CA10009";"Aman";"Arya";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-23;2025-10-23;2025-10-23;2025-10-23;2025-11-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-12;2026-02-12;2026-02-12;2026-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"COV";"Site Closure";"";"Closure Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10010";"DD5-CA10010";"Waqqas";"Afif";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-29;2025-10-29;2025-10-29;2025-10-29;2025-11-05;"Kadie";"";"MacDonald" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-24;2025-12-24;2025-12-24;2025-12-24;2026-01-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-18;2026-02-18;2026-02-18;2026-02-18;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"COV";"Site Closure";"";"Closure Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10011";"DD5-CA10011";"Bruce";"Musgrave";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-21;2025-10-21;2025-10-21;2025-10-21;2025-10-30;"Elizabeth";"";"Kastanis-Kiarash" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2025-12-16;2026-01-23;2025-12-16;2026-01-23;2026-01-23;"Elizabeth";"";"Kastanis-Kiarash" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-10;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-07;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-02;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-28;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-22;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-17;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-12;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-09;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-04;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-29;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-24;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-19;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-14;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-08;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-04;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-30;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-25;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-19;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-14;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-09;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-06;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-01;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-26;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-21;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-16;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-11;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-05;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-02;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-28;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-23;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-17;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-12;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-07;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-04;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-29;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-24;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-19;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-14;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-09;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-03;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-30;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-25;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-20;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-14;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-09;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-04;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-01;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-26;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-21;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-16;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-11;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-06;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-31;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-28;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-23;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-18;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-12;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-07;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-02;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-27;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-24;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-19;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-14;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-09;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-04;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-29;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-25;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-20;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-15;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CA10012";"DD5-CA10012";"Arif";"Yusuf";"COV";"Site Closure";"";"Closure Visit";"";2035-02-27;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10001";"DD5-CH10001";"Frank";"Seibold";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-29;2025-12-29;2025-12-29;2025-12-29;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-23;2026-02-23;2026-02-23;2026-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10002";"DD5-CH10002";"Niklas";"Krupka";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-06;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"SIV";"Site Initiation";"";"Initiation Visit";"Within the plan";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2026-02-12;"Aleksandra";"";"Mystek" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-29;2025-12-29;2025-12-29;2025-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-23;2026-02-23;2026-02-23;2026-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10003";"DD5-CH10003";"Stephan";"Brand";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-29;2025-12-29;2025-12-29;2025-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-23;2026-02-23;2026-02-23;2026-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CH10004";"DD5-CH10004";"Luc";"Biedermann";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-16;2025-12-16;2025-12-16;2025-12-16;2025-11-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-10;2026-02-10;2026-02-10;2026-02-10;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-07;2026-04-07;2026-04-07;2026-04-07;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-06-02;2026-06-02;2026-06-02;2026-06-02;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-07-28;2026-07-28;2026-07-28;2026-07-28;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-22;2026-09-22;2026-09-22;2026-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-17;2026-11-17;2026-11-17;2026-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-12;2027-01-12;2027-01-12;2027-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-09;2027-03-09;2027-03-09;2027-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-04;2027-05-04;2027-05-04;2027-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-29;2027-06-29;2027-06-29;2027-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-24;2027-08-24;2027-08-24;2027-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-19;2027-10-19;2027-10-19;2027-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-14;2027-12-14;2027-12-14;2027-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-08;2028-02-08;2028-02-08;2028-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-04;2028-04-04;2028-04-04;2028-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-30;2028-05-30;2028-05-30;2028-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-25;2028-07-25;2028-07-25;2028-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-19;2028-09-19;2028-09-19;2028-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-14;2028-11-14;2028-11-14;2028-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-09;2029-01-09;2029-01-09;2029-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-06;2029-03-06;2029-03-06;2029-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-01;2029-05-01;2029-05-01;2029-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-26;2029-06-26;2029-06-26;2029-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-21;2029-08-21;2029-08-21;2029-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-16;2029-10-16;2029-10-16;2029-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-11;2029-12-11;2029-12-11;2029-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-05;2030-02-05;2030-02-05;2030-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-02;2030-04-02;2030-04-02;2030-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-28;2030-05-28;2030-05-28;2030-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-23;2030-07-23;2030-07-23;2030-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-17;2030-09-17;2030-09-17;2030-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-12;2030-11-12;2030-11-12;2030-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-07;2031-01-07;2031-01-07;2031-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-04;2031-03-04;2031-03-04;2031-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-29;2031-04-29;2031-04-29;2031-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-24;2031-06-24;2031-06-24;2031-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-19;2031-08-19;2031-08-19;2031-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-14;2031-10-14;2031-10-14;2031-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-09;2031-12-09;2031-12-09;2031-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-03;2032-02-03;2032-02-03;2032-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-30;2032-03-30;2032-03-30;2032-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-25;2032-05-25;2032-05-25;2032-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-20;2032-07-20;2032-07-20;2032-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-14;2032-09-14;2032-09-14;2032-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-09;2032-11-09;2032-11-09;2032-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-04;2033-01-04;2033-01-04;2033-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-01;2033-03-01;2033-03-01;2033-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-26;2033-04-26;2033-04-26;2033-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-21;2033-06-21;2033-06-21;2033-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-16;2033-08-16;2033-08-16;2033-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-11;2033-10-11;2033-10-11;2033-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-06;2033-12-06;2033-12-06;2033-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-31;2034-01-31;2034-01-31;2034-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-28;2034-03-28;2034-03-28;2034-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-23;2034-05-23;2034-05-23;2034-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-18;2034-07-18;2034-07-18;2034-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-12;2034-09-12;2034-09-12;2034-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-07;2034-11-07;2034-11-07;2034-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-02;2035-01-02;2035-01-02;2035-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-27;2035-02-27;2035-02-27;2035-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"COV";"Site Closure";"";"Closure Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-19;2035-06-19;2035-06-19;2035-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-14;2035-08-14;2035-08-14;2035-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-09;2035-10-09;2035-10-09;2035-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-04;2035-12-04;2035-12-04;2035-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-29;2036-01-29;2036-01-29;2036-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-25;2036-03-25;2036-03-25;2036-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-20;2036-05-20;2036-05-20;2036-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-15;2036-07-15;2036-07-15;2036-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10001";"DD5-CN10001";"Qian";"Cao";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-09;2036-09-09;2036-09-09;2036-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-28;2025-12-28;2025-12-28;2025-12-28;2025-12-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-22;2026-02-22;2026-02-22;2026-02-22;2026-02-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-19;2026-04-19;2026-04-19;2026-04-19;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-06-14;2026-06-14;2026-06-14;2026-06-14;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-09;2026-08-09;2026-08-09;2026-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-04;2026-10-04;2026-10-04;2026-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-29;2026-11-29;2026-11-29;2026-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-24;2027-01-24;2027-01-24;2027-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-21;2027-03-21;2027-03-21;2027-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-16;2027-05-16;2027-05-16;2027-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-11;2027-07-11;2027-07-11;2027-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-05;2027-09-05;2027-09-05;2027-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-31;2027-10-31;2027-10-31;2027-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-26;2027-12-26;2027-12-26;2027-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-20;2028-02-20;2028-02-20;2028-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-16;2028-04-16;2028-04-16;2028-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-11;2028-06-11;2028-06-11;2028-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-06;2028-08-06;2028-08-06;2028-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-01;2028-10-01;2028-10-01;2028-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-26;2028-11-26;2028-11-26;2028-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-21;2029-01-21;2029-01-21;2029-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-18;2029-03-18;2029-03-18;2029-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-13;2029-05-13;2029-05-13;2029-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-08;2029-07-08;2029-07-08;2029-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-02;2029-09-02;2029-09-02;2029-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-28;2029-10-28;2029-10-28;2029-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-23;2029-12-23;2029-12-23;2029-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-17;2030-02-17;2030-02-17;2030-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-14;2030-04-14;2030-04-14;2030-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-09;2030-06-09;2030-06-09;2030-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-04;2030-08-04;2030-08-04;2030-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-29;2030-09-29;2030-09-29;2030-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-24;2030-11-24;2030-11-24;2030-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-19;2031-01-19;2031-01-19;2031-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-16;2031-03-16;2031-03-16;2031-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-11;2031-05-11;2031-05-11;2031-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-06;2031-07-06;2031-07-06;2031-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-31;2031-08-31;2031-08-31;2031-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-26;2031-10-26;2031-10-26;2031-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-21;2031-12-21;2031-12-21;2031-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-15;2032-02-15;2032-02-15;2032-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-11;2032-04-11;2032-04-11;2032-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-06;2032-06-06;2032-06-06;2032-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-01;2032-08-01;2032-08-01;2032-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-26;2032-09-26;2032-09-26;2032-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-21;2032-11-21;2032-11-21;2032-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-16;2033-01-16;2033-01-16;2033-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-13;2033-03-13;2033-03-13;2033-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-08;2033-05-08;2033-05-08;2033-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-03;2033-07-03;2033-07-03;2033-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-28;2033-08-28;2033-08-28;2033-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-23;2033-10-23;2033-10-23;2033-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-18;2033-12-18;2033-12-18;2033-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-12;2034-02-12;2034-02-12;2034-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-09;2034-04-09;2034-04-09;2034-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-04;2034-06-04;2034-06-04;2034-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-30;2034-07-30;2034-07-30;2034-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-24;2034-09-24;2034-09-24;2034-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-19;2034-11-19;2034-11-19;2034-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-14;2035-01-14;2035-01-14;2035-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-11;2035-03-11;2035-03-11;2035-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-06;2035-05-06;2035-05-06;2035-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"COV";"Site Closure";"";"Closure Visit";"";2035-05-06;2035-05-06;2035-05-06;2035-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-01;2035-07-01;2035-07-01;2035-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-26;2035-08-26;2035-08-26;2035-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-21;2035-10-21;2035-10-21;2035-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-16;2035-12-16;2035-12-16;2035-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-10;2036-02-10;2036-02-10;2036-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-06;2036-04-06;2036-04-06;2036-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-01;2036-06-01;2036-06-01;2036-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-27;2036-07-27;2036-07-27;2036-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10002";"DD5-CN10002";"Baili";"Chen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-21;2036-09-21;2036-09-21;2036-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-26;2026-02-26;2026-02-26;2026-02-26;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-23;2026-04-23;2026-04-23;2026-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-18;2026-06-18;2026-06-18;2026-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-13;2026-08-13;2026-08-13;2026-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-08;2026-10-08;2026-10-08;2026-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-03;2026-12-03;2026-12-03;2026-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-28;2027-01-28;2027-01-28;2027-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-25;2027-03-25;2027-03-25;2027-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-20;2027-05-20;2027-05-20;2027-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-15;2027-07-15;2027-07-15;2027-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-09;2027-09-09;2027-09-09;2027-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-04;2027-11-04;2027-11-04;2027-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-30;2027-12-30;2027-12-30;2027-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-24;2028-02-24;2028-02-24;2028-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-20;2028-04-20;2028-04-20;2028-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-15;2028-06-15;2028-06-15;2028-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-10;2028-08-10;2028-08-10;2028-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-05;2028-10-05;2028-10-05;2028-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-30;2028-11-30;2028-11-30;2028-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-25;2029-01-25;2029-01-25;2029-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-22;2029-03-22;2029-03-22;2029-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-17;2029-05-17;2029-05-17;2029-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-12;2029-07-12;2029-07-12;2029-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-06;2029-09-06;2029-09-06;2029-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-01;2029-11-01;2029-11-01;2029-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-27;2029-12-27;2029-12-27;2029-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-21;2030-02-21;2030-02-21;2030-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-18;2030-04-18;2030-04-18;2030-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-13;2030-06-13;2030-06-13;2030-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-08;2030-08-08;2030-08-08;2030-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-03;2030-10-03;2030-10-03;2030-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-28;2030-11-28;2030-11-28;2030-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-23;2031-01-23;2031-01-23;2031-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-20;2031-03-20;2031-03-20;2031-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-15;2031-05-15;2031-05-15;2031-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-10;2031-07-10;2031-07-10;2031-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-04;2031-09-04;2031-09-04;2031-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-30;2031-10-30;2031-10-30;2031-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-25;2031-12-25;2031-12-25;2031-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-19;2032-02-19;2032-02-19;2032-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-15;2032-04-15;2032-04-15;2032-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-10;2032-06-10;2032-06-10;2032-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-05;2032-08-05;2032-08-05;2032-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-30;2032-09-30;2032-09-30;2032-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-25;2032-11-25;2032-11-25;2032-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-20;2033-01-20;2033-01-20;2033-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-17;2033-03-17;2033-03-17;2033-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-12;2033-05-12;2033-05-12;2033-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-07;2033-07-07;2033-07-07;2033-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-01;2033-09-01;2033-09-01;2033-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-27;2033-10-27;2033-10-27;2033-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-22;2033-12-22;2033-12-22;2033-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-16;2034-02-16;2034-02-16;2034-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-13;2034-04-13;2034-04-13;2034-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-08;2034-06-08;2034-06-08;2034-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-03;2034-08-03;2034-08-03;2034-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-28;2034-09-28;2034-09-28;2034-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-23;2034-11-23;2034-11-23;2034-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-18;2035-01-18;2035-01-18;2035-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-15;2035-03-15;2035-03-15;2035-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-10;2035-05-10;2035-05-10;2035-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"COV";"Site Closure";"";"Closure Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-30;2035-08-30;2035-08-30;2035-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-25;2035-10-25;2035-10-25;2035-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-20;2035-12-20;2035-12-20;2035-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-14;2036-02-14;2036-02-14;2036-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-10;2036-04-10;2036-04-10;2036-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-05;2036-06-05;2036-06-05;2036-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-31;2036-07-31;2036-07-31;2036-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-25;2036-09-25;2036-09-25;2036-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10003";"DD5-CN10003";"Chengdang";"Wang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-20;2036-11-20;2036-11-20;2036-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"COV";"Site Closure";"";"Closure Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10004";"DD5-CN10004";"Hui";"Yang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-21;"Wei";"";"Tao" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10005";"DD5-CN10005";"Wen";"Tang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10006";"DD5-CN10006";"Yanyun";"Fan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-08;2026-02-08;2026-02-08;2026-02-08;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-05;2026-04-05;2026-04-05;2026-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-31;2026-05-31;2026-05-31;2026-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-26;2026-07-26;2026-07-26;2026-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-20;2026-09-20;2026-09-20;2026-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-15;2026-11-15;2026-11-15;2026-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-10;2027-01-10;2027-01-10;2027-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-07;2027-03-07;2027-03-07;2027-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-02;2027-05-02;2027-05-02;2027-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-27;2027-06-27;2027-06-27;2027-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-22;2027-08-22;2027-08-22;2027-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-17;2027-10-17;2027-10-17;2027-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-12;2027-12-12;2027-12-12;2027-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-06;2028-02-06;2028-02-06;2028-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-02;2028-04-02;2028-04-02;2028-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-28;2028-05-28;2028-05-28;2028-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-23;2028-07-23;2028-07-23;2028-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-17;2028-09-17;2028-09-17;2028-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-12;2028-11-12;2028-11-12;2028-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-07;2029-01-07;2029-01-07;2029-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-04;2029-03-04;2029-03-04;2029-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-29;2029-04-29;2029-04-29;2029-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-24;2029-06-24;2029-06-24;2029-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-19;2029-08-19;2029-08-19;2029-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-14;2029-10-14;2029-10-14;2029-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-09;2029-12-09;2029-12-09;2029-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-03;2030-02-03;2030-02-03;2030-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-31;2030-03-31;2030-03-31;2030-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-26;2030-05-26;2030-05-26;2030-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-21;2030-07-21;2030-07-21;2030-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-15;2030-09-15;2030-09-15;2030-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-10;2030-11-10;2030-11-10;2030-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-05;2031-01-05;2031-01-05;2031-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-02;2031-03-02;2031-03-02;2031-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-27;2031-04-27;2031-04-27;2031-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-22;2031-06-22;2031-06-22;2031-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-17;2031-08-17;2031-08-17;2031-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-12;2031-10-12;2031-10-12;2031-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-07;2031-12-07;2031-12-07;2031-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-01;2032-02-01;2032-02-01;2032-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-28;2032-03-28;2032-03-28;2032-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-23;2032-05-23;2032-05-23;2032-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-18;2032-07-18;2032-07-18;2032-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-12;2032-09-12;2032-09-12;2032-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-07;2032-11-07;2032-11-07;2032-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-02;2033-01-02;2033-01-02;2033-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-27;2033-02-27;2033-02-27;2033-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-24;2033-04-24;2033-04-24;2033-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-19;2033-06-19;2033-06-19;2033-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-14;2033-08-14;2033-08-14;2033-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-09;2033-10-09;2033-10-09;2033-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-04;2033-12-04;2033-12-04;2033-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-29;2034-01-29;2034-01-29;2034-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-26;2034-03-26;2034-03-26;2034-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-21;2034-05-21;2034-05-21;2034-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-16;2034-07-16;2034-07-16;2034-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-10;2034-09-10;2034-09-10;2034-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-05;2034-11-05;2034-11-05;2034-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-31;2034-12-31;2034-12-31;2034-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-25;2035-02-25;2035-02-25;2035-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-22;2035-04-22;2035-04-22;2035-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-17;2035-06-17;2035-06-17;2035-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-17;2035-06-17;2035-06-17;2035-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-12;2035-08-12;2035-08-12;2035-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-07;2035-10-07;2035-10-07;2035-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-02;2035-12-02;2035-12-02;2035-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-27;2036-01-27;2036-01-27;2036-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-23;2036-03-23;2036-03-23;2036-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-18;2036-05-18;2036-05-18;2036-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-13;2036-07-13;2036-07-13;2036-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-07;2036-09-07;2036-09-07;2036-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10007";"DD5-CN10007";"Lixuan";"Sang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-02;2036-11-02;2036-11-02;2036-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"COV";"Site Closure";"";"Closure Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-23;2036-10-23;2036-10-23;2036-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10008";"DD5-CN10008";"Xiaoxiao";"Tian";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-18;2036-12-18;2036-12-18;2036-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10009";"DD5-CN10009";"Xiaowei";"Liu";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10010";"DD5-CN10010";"Xuehong";"Wang";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;;"Shuo";"";"Wang" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-20;"Shuo";"";"Wang" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-08;2026-02-08;2026-02-08;2026-02-08;2026-01-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-05;2026-04-05;2026-04-05;2026-04-05;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-31;2026-05-31;2026-05-31;2026-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-26;2026-07-26;2026-07-26;2026-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-20;2026-09-20;2026-09-20;2026-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-15;2026-11-15;2026-11-15;2026-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-10;2027-01-10;2027-01-10;2027-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-07;2027-03-07;2027-03-07;2027-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-02;2027-05-02;2027-05-02;2027-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-27;2027-06-27;2027-06-27;2027-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-22;2027-08-22;2027-08-22;2027-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-17;2027-10-17;2027-10-17;2027-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-12;2027-12-12;2027-12-12;2027-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-06;2028-02-06;2028-02-06;2028-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-02;2028-04-02;2028-04-02;2028-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-28;2028-05-28;2028-05-28;2028-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-23;2028-07-23;2028-07-23;2028-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-17;2028-09-17;2028-09-17;2028-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-12;2028-11-12;2028-11-12;2028-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-07;2029-01-07;2029-01-07;2029-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-04;2029-03-04;2029-03-04;2029-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-29;2029-04-29;2029-04-29;2029-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-24;2029-06-24;2029-06-24;2029-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-19;2029-08-19;2029-08-19;2029-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-14;2029-10-14;2029-10-14;2029-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-09;2029-12-09;2029-12-09;2029-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-03;2030-02-03;2030-02-03;2030-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-31;2030-03-31;2030-03-31;2030-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-26;2030-05-26;2030-05-26;2030-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-21;2030-07-21;2030-07-21;2030-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-15;2030-09-15;2030-09-15;2030-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-10;2030-11-10;2030-11-10;2030-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-05;2031-01-05;2031-01-05;2031-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-02;2031-03-02;2031-03-02;2031-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-27;2031-04-27;2031-04-27;2031-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-22;2031-06-22;2031-06-22;2031-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-17;2031-08-17;2031-08-17;2031-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-12;2031-10-12;2031-10-12;2031-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-07;2031-12-07;2031-12-07;2031-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-01;2032-02-01;2032-02-01;2032-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-28;2032-03-28;2032-03-28;2032-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-23;2032-05-23;2032-05-23;2032-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-18;2032-07-18;2032-07-18;2032-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-12;2032-09-12;2032-09-12;2032-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-07;2032-11-07;2032-11-07;2032-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-02;2033-01-02;2033-01-02;2033-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-27;2033-02-27;2033-02-27;2033-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-24;2033-04-24;2033-04-24;2033-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-19;2033-06-19;2033-06-19;2033-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-14;2033-08-14;2033-08-14;2033-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-09;2033-10-09;2033-10-09;2033-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-04;2033-12-04;2033-12-04;2033-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-29;2034-01-29;2034-01-29;2034-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-26;2034-03-26;2034-03-26;2034-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-21;2034-05-21;2034-05-21;2034-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-16;2034-07-16;2034-07-16;2034-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-10;2034-09-10;2034-09-10;2034-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-05;2034-11-05;2034-11-05;2034-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-31;2034-12-31;2034-12-31;2034-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-25;2035-02-25;2035-02-25;2035-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-22;2035-04-22;2035-04-22;2035-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-17;2035-06-17;2035-06-17;2035-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"COV";"Site Closure";"";"Closure Visit";"";2035-06-17;2035-06-17;2035-06-17;2035-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-12;2035-08-12;2035-08-12;2035-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-07;2035-10-07;2035-10-07;2035-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-02;2035-12-02;2035-12-02;2035-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-27;2036-01-27;2036-01-27;2036-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-23;2036-03-23;2036-03-23;2036-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-18;2036-05-18;2036-05-18;2036-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-13;2036-07-13;2036-07-13;2036-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-07;2036-09-07;2036-09-07;2036-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10011";"DD5-CN10011";"Hong";"Guo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-02;2036-11-02;2036-11-02;2036-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-21;2026-02-21;2026-02-21;2026-02-21;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-18;2026-04-18;2026-04-18;2026-04-18;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-06-13;2026-06-13;2026-06-13;2026-06-13;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-08;2026-08-08;2026-08-08;2026-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-03;2026-10-03;2026-10-03;2026-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-28;2026-11-28;2026-11-28;2026-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-23;2027-01-23;2027-01-23;2027-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-20;2027-03-20;2027-03-20;2027-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-15;2027-05-15;2027-05-15;2027-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-10;2027-07-10;2027-07-10;2027-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-04;2027-09-04;2027-09-04;2027-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-30;2027-10-30;2027-10-30;2027-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-25;2027-12-25;2027-12-25;2027-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-19;2028-02-19;2028-02-19;2028-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-15;2028-04-15;2028-04-15;2028-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-10;2028-06-10;2028-06-10;2028-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-05;2028-08-05;2028-08-05;2028-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-30;2028-09-30;2028-09-30;2028-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-25;2028-11-25;2028-11-25;2028-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-20;2029-01-20;2029-01-20;2029-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-17;2029-03-17;2029-03-17;2029-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-12;2029-05-12;2029-05-12;2029-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-07;2029-07-07;2029-07-07;2029-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-01;2029-09-01;2029-09-01;2029-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-27;2029-10-27;2029-10-27;2029-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-22;2029-12-22;2029-12-22;2029-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-16;2030-02-16;2030-02-16;2030-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-13;2030-04-13;2030-04-13;2030-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-08;2030-06-08;2030-06-08;2030-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-03;2030-08-03;2030-08-03;2030-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-28;2030-09-28;2030-09-28;2030-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-23;2030-11-23;2030-11-23;2030-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-18;2031-01-18;2031-01-18;2031-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-15;2031-03-15;2031-03-15;2031-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-10;2031-05-10;2031-05-10;2031-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-05;2031-07-05;2031-07-05;2031-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-30;2031-08-30;2031-08-30;2031-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-25;2031-10-25;2031-10-25;2031-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-20;2031-12-20;2031-12-20;2031-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-14;2032-02-14;2032-02-14;2032-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-10;2032-04-10;2032-04-10;2032-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-05;2032-06-05;2032-06-05;2032-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-31;2032-07-31;2032-07-31;2032-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-25;2032-09-25;2032-09-25;2032-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-20;2032-11-20;2032-11-20;2032-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-15;2033-01-15;2033-01-15;2033-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-12;2033-03-12;2033-03-12;2033-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-07;2033-05-07;2033-05-07;2033-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-02;2033-07-02;2033-07-02;2033-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-27;2033-08-27;2033-08-27;2033-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-22;2033-10-22;2033-10-22;2033-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-17;2033-12-17;2033-12-17;2033-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-11;2034-02-11;2034-02-11;2034-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-08;2034-04-08;2034-04-08;2034-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-03;2034-06-03;2034-06-03;2034-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-29;2034-07-29;2034-07-29;2034-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-23;2034-09-23;2034-09-23;2034-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-18;2034-11-18;2034-11-18;2034-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-13;2035-01-13;2035-01-13;2035-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-10;2035-03-10;2035-03-10;2035-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-05;2035-05-05;2035-05-05;2035-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"COV";"Site Closure";"";"Closure Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-25;2035-08-25;2035-08-25;2035-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-20;2035-10-20;2035-10-20;2035-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-15;2035-12-15;2035-12-15;2035-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-09;2036-02-09;2036-02-09;2036-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-05;2036-04-05;2036-04-05;2036-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-31;2036-05-31;2036-05-31;2036-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-26;2036-07-26;2036-07-26;2036-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-20;2036-09-20;2036-09-20;2036-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10012";"DD5-CN10012";"Jun";"Shen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-15;2036-11-15;2036-11-15;2036-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"COV";"Site Closure";"";"Closure Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-05;2036-11-05;2036-11-05;2036-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10013";"DD5-CN10013";"Xiang";"Wang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-31;2036-12-31;2036-12-31;2036-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10014";"DD5-CN10014";"Xin";"Liu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2025-11-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-01-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10015";"DD5-CN10015";"Qunyan";"Zhou";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10016";"DD5-CN10016";"Jin";"Ding";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-23;2025-12-23;2025-12-23;2025-12-23;2025-12-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"COV";"Site Closure";"";"Closure Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10017";"DD5-CN10017";"Huixin";"Chen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-16;2036-09-16;2036-09-16;2036-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10018";"DD5-CN10018";"Weiyao";"Xie";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-23;2025-12-23;2025-12-23;2025-12-23;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-17;2026-02-17;2026-02-17;2026-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"COV";"Site Closure";"";"Closure Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10019";"DD5-CN10019";"Yan";"Zhang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-16;2036-09-16;2036-09-16;2036-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"COV";"Site Closure";"";"Closure Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10020";"DD5-CN10020";"Hong";"Shen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-08;2036-12-08;2036-12-08;2036-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-29;2026-04-29;2026-04-29;2026-04-29;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"COV";"Site Closure";"";"Closure Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-01;2036-10-01;2036-10-01;2036-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10021";"DD5-CN10021";"Juan";"Wu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-26;2036-11-26;2036-11-26;2036-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-31;2025-12-31;2025-12-31;2025-12-31;2025-12-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-25;2026-02-25;2026-02-25;2026-02-25;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-22;2026-04-22;2026-04-22;2026-04-22;2026-03-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-17;2026-06-17;2026-06-17;2026-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-12;2026-08-12;2026-08-12;2026-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-07;2026-10-07;2026-10-07;2026-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-02;2026-12-02;2026-12-02;2026-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-27;2027-01-27;2027-01-27;2027-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-24;2027-03-24;2027-03-24;2027-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-19;2027-05-19;2027-05-19;2027-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-14;2027-07-14;2027-07-14;2027-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-08;2027-09-08;2027-09-08;2027-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-03;2027-11-03;2027-11-03;2027-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-29;2027-12-29;2027-12-29;2027-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-23;2028-02-23;2028-02-23;2028-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-19;2028-04-19;2028-04-19;2028-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-14;2028-06-14;2028-06-14;2028-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-09;2028-08-09;2028-08-09;2028-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-04;2028-10-04;2028-10-04;2028-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-29;2028-11-29;2028-11-29;2028-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-24;2029-01-24;2029-01-24;2029-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-21;2029-03-21;2029-03-21;2029-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-16;2029-05-16;2029-05-16;2029-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-11;2029-07-11;2029-07-11;2029-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-05;2029-09-05;2029-09-05;2029-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-31;2029-10-31;2029-10-31;2029-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-26;2029-12-26;2029-12-26;2029-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-20;2030-02-20;2030-02-20;2030-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-17;2030-04-17;2030-04-17;2030-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-12;2030-06-12;2030-06-12;2030-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-07;2030-08-07;2030-08-07;2030-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-02;2030-10-02;2030-10-02;2030-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-27;2030-11-27;2030-11-27;2030-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-22;2031-01-22;2031-01-22;2031-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-19;2031-03-19;2031-03-19;2031-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-14;2031-05-14;2031-05-14;2031-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-09;2031-07-09;2031-07-09;2031-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-03;2031-09-03;2031-09-03;2031-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-29;2031-10-29;2031-10-29;2031-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-24;2031-12-24;2031-12-24;2031-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-18;2032-02-18;2032-02-18;2032-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-14;2032-04-14;2032-04-14;2032-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-09;2032-06-09;2032-06-09;2032-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-04;2032-08-04;2032-08-04;2032-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-29;2032-09-29;2032-09-29;2032-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-24;2032-11-24;2032-11-24;2032-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-19;2033-01-19;2033-01-19;2033-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-16;2033-03-16;2033-03-16;2033-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-11;2033-05-11;2033-05-11;2033-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-06;2033-07-06;2033-07-06;2033-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-31;2033-08-31;2033-08-31;2033-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-26;2033-10-26;2033-10-26;2033-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-21;2033-12-21;2033-12-21;2033-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-15;2034-02-15;2034-02-15;2034-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-12;2034-04-12;2034-04-12;2034-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-07;2034-06-07;2034-06-07;2034-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-02;2034-08-02;2034-08-02;2034-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-27;2034-09-27;2034-09-27;2034-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-22;2034-11-22;2034-11-22;2034-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-17;2035-01-17;2035-01-17;2035-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-14;2035-03-14;2035-03-14;2035-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-09;2035-05-09;2035-05-09;2035-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"COV";"Site Closure";"";"Closure Visit";"";2035-05-09;2035-05-09;2035-05-09;2035-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-04;2035-07-04;2035-07-04;2035-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-29;2035-08-29;2035-08-29;2035-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-24;2035-10-24;2035-10-24;2035-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-19;2035-12-19;2035-12-19;2035-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-13;2036-02-13;2036-02-13;2036-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-09;2036-04-09;2036-04-09;2036-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-04;2036-06-04;2036-06-04;2036-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-30;2036-07-30;2036-07-30;2036-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10022";"DD5-CN10022";"Hong";"Chen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-24;2036-09-24;2036-09-24;2036-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-29;2026-03-29;2026-03-29;2026-03-29;2025-12-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-24;2026-05-24;2026-05-24;2026-05-24;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-19;2026-07-19;2026-07-19;2026-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-13;2026-09-13;2026-09-13;2026-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-08;2026-11-08;2026-11-08;2026-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-03;2027-01-03;2027-01-03;2027-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-28;2027-02-28;2027-02-28;2027-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-25;2027-04-25;2027-04-25;2027-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-20;2027-06-20;2027-06-20;2027-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-15;2027-08-15;2027-08-15;2027-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-10;2027-10-10;2027-10-10;2027-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-05;2027-12-05;2027-12-05;2027-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-30;2028-01-30;2028-01-30;2028-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-26;2028-03-26;2028-03-26;2028-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-21;2028-05-21;2028-05-21;2028-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-16;2028-07-16;2028-07-16;2028-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-10;2028-09-10;2028-09-10;2028-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-05;2028-11-05;2028-11-05;2028-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-31;2028-12-31;2028-12-31;2028-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-25;2029-02-25;2029-02-25;2029-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-22;2029-04-22;2029-04-22;2029-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-17;2029-06-17;2029-06-17;2029-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-12;2029-08-12;2029-08-12;2029-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-07;2029-10-07;2029-10-07;2029-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-02;2029-12-02;2029-12-02;2029-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-27;2030-01-27;2030-01-27;2030-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-24;2030-03-24;2030-03-24;2030-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-19;2030-05-19;2030-05-19;2030-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-14;2030-07-14;2030-07-14;2030-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-08;2030-09-08;2030-09-08;2030-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-03;2030-11-03;2030-11-03;2030-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-29;2030-12-29;2030-12-29;2030-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-23;2031-02-23;2031-02-23;2031-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-20;2031-04-20;2031-04-20;2031-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-15;2031-06-15;2031-06-15;2031-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-10;2031-08-10;2031-08-10;2031-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-05;2031-10-05;2031-10-05;2031-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-30;2031-11-30;2031-11-30;2031-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-25;2032-01-25;2032-01-25;2032-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-21;2032-03-21;2032-03-21;2032-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-16;2032-05-16;2032-05-16;2032-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-11;2032-07-11;2032-07-11;2032-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-05;2032-09-05;2032-09-05;2032-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-31;2032-10-31;2032-10-31;2032-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-26;2032-12-26;2032-12-26;2032-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-20;2033-02-20;2033-02-20;2033-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-17;2033-04-17;2033-04-17;2033-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-12;2033-06-12;2033-06-12;2033-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-07;2033-08-07;2033-08-07;2033-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-02;2033-10-02;2033-10-02;2033-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-27;2033-11-27;2033-11-27;2033-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-22;2034-01-22;2034-01-22;2034-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-19;2034-03-19;2034-03-19;2034-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-14;2034-05-14;2034-05-14;2034-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-09;2034-07-09;2034-07-09;2034-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-03;2034-09-03;2034-09-03;2034-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-29;2034-10-29;2034-10-29;2034-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-24;2034-12-24;2034-12-24;2034-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-18;2035-02-18;2035-02-18;2035-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-15;2035-04-15;2035-04-15;2035-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-10;2035-06-10;2035-06-10;2035-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-05;2035-08-05;2035-08-05;2035-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"COV";"Site Closure";"";"Closure Visit";"";2035-08-05;2035-08-05;2035-08-05;2035-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-30;2035-09-30;2035-09-30;2035-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-25;2035-11-25;2035-11-25;2035-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-20;2036-01-20;2036-01-20;2036-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-16;2036-03-16;2036-03-16;2036-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-11;2036-05-11;2036-05-11;2036-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-06;2036-07-06;2036-07-06;2036-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-31;2036-08-31;2036-08-31;2036-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-26;2036-10-26;2036-10-26;2036-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10023";"DD5-CN10023";"Zhongwei";"Pan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-21;2036-12-21;2036-12-21;2036-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"COV";"Site Closure";"";"Closure Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10024";"DD5-CN10024";"Ye";"Zong";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-21;2036-10-21;2036-10-21;2036-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-31;2025-05-15;2025-05-31;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-25;2026-02-25;2026-02-25;2026-02-25;2025-12-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-22;2026-04-22;2026-04-22;2026-04-22;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-06-17;2026-06-17;2026-06-17;2026-06-17;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-12;2026-08-12;2026-08-12;2026-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-07;2026-10-07;2026-10-07;2026-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-02;2026-12-02;2026-12-02;2026-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-27;2027-01-27;2027-01-27;2027-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-24;2027-03-24;2027-03-24;2027-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-19;2027-05-19;2027-05-19;2027-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-14;2027-07-14;2027-07-14;2027-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-08;2027-09-08;2027-09-08;2027-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-03;2027-11-03;2027-11-03;2027-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-29;2027-12-29;2027-12-29;2027-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-23;2028-02-23;2028-02-23;2028-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-19;2028-04-19;2028-04-19;2028-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-14;2028-06-14;2028-06-14;2028-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-09;2028-08-09;2028-08-09;2028-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-04;2028-10-04;2028-10-04;2028-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-29;2028-11-29;2028-11-29;2028-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-24;2029-01-24;2029-01-24;2029-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-21;2029-03-21;2029-03-21;2029-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-16;2029-05-16;2029-05-16;2029-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-11;2029-07-11;2029-07-11;2029-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-05;2029-09-05;2029-09-05;2029-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-31;2029-10-31;2029-10-31;2029-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-26;2029-12-26;2029-12-26;2029-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-20;2030-02-20;2030-02-20;2030-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-17;2030-04-17;2030-04-17;2030-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-12;2030-06-12;2030-06-12;2030-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-07;2030-08-07;2030-08-07;2030-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-02;2030-10-02;2030-10-02;2030-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-27;2030-11-27;2030-11-27;2030-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-22;2031-01-22;2031-01-22;2031-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-19;2031-03-19;2031-03-19;2031-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-14;2031-05-14;2031-05-14;2031-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-09;2031-07-09;2031-07-09;2031-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-03;2031-09-03;2031-09-03;2031-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-29;2031-10-29;2031-10-29;2031-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-24;2031-12-24;2031-12-24;2031-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-18;2032-02-18;2032-02-18;2032-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-14;2032-04-14;2032-04-14;2032-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-09;2032-06-09;2032-06-09;2032-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-04;2032-08-04;2032-08-04;2032-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-29;2032-09-29;2032-09-29;2032-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-24;2032-11-24;2032-11-24;2032-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-19;2033-01-19;2033-01-19;2033-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-16;2033-03-16;2033-03-16;2033-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-11;2033-05-11;2033-05-11;2033-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-06;2033-07-06;2033-07-06;2033-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-31;2033-08-31;2033-08-31;2033-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-26;2033-10-26;2033-10-26;2033-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-21;2033-12-21;2033-12-21;2033-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-15;2034-02-15;2034-02-15;2034-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-12;2034-04-12;2034-04-12;2034-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-07;2034-06-07;2034-06-07;2034-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-02;2034-08-02;2034-08-02;2034-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-27;2034-09-27;2034-09-27;2034-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-22;2034-11-22;2034-11-22;2034-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-17;2035-01-17;2035-01-17;2035-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-14;2035-03-14;2035-03-14;2035-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-09;2035-05-09;2035-05-09;2035-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-04;2035-07-04;2035-07-04;2035-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"COV";"Site Closure";"";"Closure Visit";"";2035-07-04;2035-07-04;2035-07-04;2035-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-29;2035-08-29;2035-08-29;2035-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-24;2035-10-24;2035-10-24;2035-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-19;2035-12-19;2035-12-19;2035-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-13;2036-02-13;2036-02-13;2036-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-09;2036-04-09;2036-04-09;2036-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-04;2036-06-04;2036-06-04;2036-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-30;2036-07-30;2036-07-30;2036-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-24;2036-09-24;2036-09-24;2036-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10025";"DD5-CN10025";"Xiaomei";"Sun";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-19;2036-11-19;2036-11-19;2036-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-21;2026-02-21;2026-02-21;2026-02-21;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-18;2026-04-18;2026-04-18;2026-04-18;2026-03-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-13;2026-06-13;2026-06-13;2026-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-08;2026-08-08;2026-08-08;2026-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-03;2026-10-03;2026-10-03;2026-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-28;2026-11-28;2026-11-28;2026-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-23;2027-01-23;2027-01-23;2027-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-20;2027-03-20;2027-03-20;2027-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-15;2027-05-15;2027-05-15;2027-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-10;2027-07-10;2027-07-10;2027-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-04;2027-09-04;2027-09-04;2027-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-30;2027-10-30;2027-10-30;2027-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-25;2027-12-25;2027-12-25;2027-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-19;2028-02-19;2028-02-19;2028-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-15;2028-04-15;2028-04-15;2028-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-10;2028-06-10;2028-06-10;2028-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-05;2028-08-05;2028-08-05;2028-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-30;2028-09-30;2028-09-30;2028-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-25;2028-11-25;2028-11-25;2028-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-20;2029-01-20;2029-01-20;2029-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-17;2029-03-17;2029-03-17;2029-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-12;2029-05-12;2029-05-12;2029-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-07;2029-07-07;2029-07-07;2029-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-01;2029-09-01;2029-09-01;2029-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-27;2029-10-27;2029-10-27;2029-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-22;2029-12-22;2029-12-22;2029-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-16;2030-02-16;2030-02-16;2030-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-13;2030-04-13;2030-04-13;2030-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-08;2030-06-08;2030-06-08;2030-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-03;2030-08-03;2030-08-03;2030-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-28;2030-09-28;2030-09-28;2030-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-23;2030-11-23;2030-11-23;2030-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-18;2031-01-18;2031-01-18;2031-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-15;2031-03-15;2031-03-15;2031-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-10;2031-05-10;2031-05-10;2031-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-05;2031-07-05;2031-07-05;2031-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-30;2031-08-30;2031-08-30;2031-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-25;2031-10-25;2031-10-25;2031-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-20;2031-12-20;2031-12-20;2031-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-14;2032-02-14;2032-02-14;2032-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-10;2032-04-10;2032-04-10;2032-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-05;2032-06-05;2032-06-05;2032-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-31;2032-07-31;2032-07-31;2032-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-25;2032-09-25;2032-09-25;2032-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-20;2032-11-20;2032-11-20;2032-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-15;2033-01-15;2033-01-15;2033-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-12;2033-03-12;2033-03-12;2033-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-07;2033-05-07;2033-05-07;2033-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-02;2033-07-02;2033-07-02;2033-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-27;2033-08-27;2033-08-27;2033-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-22;2033-10-22;2033-10-22;2033-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-17;2033-12-17;2033-12-17;2033-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-11;2034-02-11;2034-02-11;2034-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-08;2034-04-08;2034-04-08;2034-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-03;2034-06-03;2034-06-03;2034-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-29;2034-07-29;2034-07-29;2034-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-23;2034-09-23;2034-09-23;2034-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-18;2034-11-18;2034-11-18;2034-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-13;2035-01-13;2035-01-13;2035-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-10;2035-03-10;2035-03-10;2035-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-05;2035-05-05;2035-05-05;2035-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"COV";"Site Closure";"";"Closure Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-25;2035-08-25;2035-08-25;2035-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-20;2035-10-20;2035-10-20;2035-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-15;2035-12-15;2035-12-15;2035-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-09;2036-02-09;2036-02-09;2036-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-05;2036-04-05;2036-04-05;2036-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-31;2036-05-31;2036-05-31;2036-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-26;2036-07-26;2036-07-26;2036-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-20;2036-09-20;2036-09-20;2036-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10026";"DD5-CN10026";"Xiang";"Gao";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-15;2036-11-15;2036-11-15;2036-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"COV";"Site Closure";"";"Closure Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10027";"DD5-CN10027";"Zhaotao";"Li";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-05;2036-12-05;2036-12-05;2036-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-19;"Jingyi";"";"Zhu" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-06;2026-01-06;2026-01-06;2026-01-06;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"COV";"Site Closure";"";"Closure Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10028";"DD5-CN10028";"Yan";"Tan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-01;2026-03-01;2026-03-01;2026-03-01;2026-01-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-26;2026-04-26;2026-04-26;2026-04-26;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-21;2026-06-21;2026-06-21;2026-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-16;2026-08-16;2026-08-16;2026-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-11;2026-10-11;2026-10-11;2026-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-06;2026-12-06;2026-12-06;2026-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-31;2027-01-31;2027-01-31;2027-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-28;2027-03-28;2027-03-28;2027-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-23;2027-05-23;2027-05-23;2027-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-18;2027-07-18;2027-07-18;2027-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-12;2027-09-12;2027-09-12;2027-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-07;2027-11-07;2027-11-07;2027-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-02;2028-01-02;2028-01-02;2028-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-27;2028-02-27;2028-02-27;2028-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-23;2028-04-23;2028-04-23;2028-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-18;2028-06-18;2028-06-18;2028-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-13;2028-08-13;2028-08-13;2028-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-08;2028-10-08;2028-10-08;2028-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-03;2028-12-03;2028-12-03;2028-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-28;2029-01-28;2029-01-28;2029-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-25;2029-03-25;2029-03-25;2029-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-20;2029-05-20;2029-05-20;2029-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-15;2029-07-15;2029-07-15;2029-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-09;2029-09-09;2029-09-09;2029-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-04;2029-11-04;2029-11-04;2029-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-30;2029-12-30;2029-12-30;2029-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-24;2030-02-24;2030-02-24;2030-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-21;2030-04-21;2030-04-21;2030-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-16;2030-06-16;2030-06-16;2030-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-11;2030-08-11;2030-08-11;2030-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-06;2030-10-06;2030-10-06;2030-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-01;2030-12-01;2030-12-01;2030-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-26;2031-01-26;2031-01-26;2031-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-23;2031-03-23;2031-03-23;2031-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-18;2031-05-18;2031-05-18;2031-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-13;2031-07-13;2031-07-13;2031-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-07;2031-09-07;2031-09-07;2031-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-02;2031-11-02;2031-11-02;2031-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-28;2031-12-28;2031-12-28;2031-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-22;2032-02-22;2032-02-22;2032-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-18;2032-04-18;2032-04-18;2032-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-13;2032-06-13;2032-06-13;2032-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-08;2032-08-08;2032-08-08;2032-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-03;2032-10-03;2032-10-03;2032-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-28;2032-11-28;2032-11-28;2032-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-23;2033-01-23;2033-01-23;2033-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-20;2033-03-20;2033-03-20;2033-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-15;2033-05-15;2033-05-15;2033-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-10;2033-07-10;2033-07-10;2033-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-04;2033-09-04;2033-09-04;2033-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-30;2033-10-30;2033-10-30;2033-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-25;2033-12-25;2033-12-25;2033-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-19;2034-02-19;2034-02-19;2034-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-16;2034-04-16;2034-04-16;2034-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-11;2034-06-11;2034-06-11;2034-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-06;2034-08-06;2034-08-06;2034-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-01;2034-10-01;2034-10-01;2034-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-26;2034-11-26;2034-11-26;2034-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-21;2035-01-21;2035-01-21;2035-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-18;2035-03-18;2035-03-18;2035-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-13;2035-05-13;2035-05-13;2035-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-08;2035-07-08;2035-07-08;2035-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"COV";"Site Closure";"";"Closure Visit";"";2035-07-08;2035-07-08;2035-07-08;2035-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-02;2035-09-02;2035-09-02;2035-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-28;2035-10-28;2035-10-28;2035-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-23;2035-12-23;2035-12-23;2035-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-17;2036-02-17;2036-02-17;2036-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-13;2036-04-13;2036-04-13;2036-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-08;2036-06-08;2036-06-08;2036-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-03;2036-08-03;2036-08-03;2036-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-28;2036-09-28;2036-09-28;2036-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10029";"DD5-CN10029";"Jie";"Chen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-23;2036-11-23;2036-11-23;2036-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-04-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"COV";"Site Closure";"";"Closure Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10030";"DD5-CN10030";"Mingming";"Deng";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-30;2036-10-30;2036-10-30;2036-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2025-12-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"COV";"Site Closure";"";"Closure Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10031";"DD5-CN10031";"Xiangrong";"Chen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-16;2036-10-16;2036-10-16;2036-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-03;2026-02-03;2026-02-03;2026-02-03;2026-01-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-31;2026-03-31;2026-03-31;2026-03-31;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-26;2026-05-26;2026-05-26;2026-05-26;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10032";"DD5-CN10032";"Xiaolan";"Zhang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-28;2036-10-28;2036-10-28;2036-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2025-12-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10033";"DD5-CN10033";"Xiaodi";"Wang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-21;2036-10-21;2036-10-21;2036-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-07;2026-03-07;2026-03-07;2026-03-07;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-02;2026-05-02;2026-05-02;2026-05-02;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-27;2026-06-27;2026-06-27;2026-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-22;2026-08-22;2026-08-22;2026-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-17;2026-10-17;2026-10-17;2026-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-12;2026-12-12;2026-12-12;2026-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-06;2027-02-06;2027-02-06;2027-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-03;2027-04-03;2027-04-03;2027-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-29;2027-05-29;2027-05-29;2027-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-24;2027-07-24;2027-07-24;2027-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-18;2027-09-18;2027-09-18;2027-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-13;2027-11-13;2027-11-13;2027-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-08;2028-01-08;2028-01-08;2028-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-04;2028-03-04;2028-03-04;2028-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-29;2028-04-29;2028-04-29;2028-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-24;2028-06-24;2028-06-24;2028-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-19;2028-08-19;2028-08-19;2028-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-14;2028-10-14;2028-10-14;2028-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-09;2028-12-09;2028-12-09;2028-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-03;2029-02-03;2029-02-03;2029-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-31;2029-03-31;2029-03-31;2029-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-26;2029-05-26;2029-05-26;2029-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-21;2029-07-21;2029-07-21;2029-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-15;2029-09-15;2029-09-15;2029-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-10;2029-11-10;2029-11-10;2029-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-05;2030-01-05;2030-01-05;2030-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-02;2030-03-02;2030-03-02;2030-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-27;2030-04-27;2030-04-27;2030-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-22;2030-06-22;2030-06-22;2030-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-17;2030-08-17;2030-08-17;2030-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-12;2030-10-12;2030-10-12;2030-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-07;2030-12-07;2030-12-07;2030-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-01;2031-02-01;2031-02-01;2031-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-29;2031-03-29;2031-03-29;2031-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-24;2031-05-24;2031-05-24;2031-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-19;2031-07-19;2031-07-19;2031-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-13;2031-09-13;2031-09-13;2031-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-08;2031-11-08;2031-11-08;2031-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-03;2032-01-03;2032-01-03;2032-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-28;2032-02-28;2032-02-28;2032-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-24;2032-04-24;2032-04-24;2032-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-19;2032-06-19;2032-06-19;2032-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-14;2032-08-14;2032-08-14;2032-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-09;2032-10-09;2032-10-09;2032-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-04;2032-12-04;2032-12-04;2032-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-29;2033-01-29;2033-01-29;2033-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-26;2033-03-26;2033-03-26;2033-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-21;2033-05-21;2033-05-21;2033-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-16;2033-07-16;2033-07-16;2033-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-10;2033-09-10;2033-09-10;2033-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-05;2033-11-05;2033-11-05;2033-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-31;2033-12-31;2033-12-31;2033-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-25;2034-02-25;2034-02-25;2034-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-22;2034-04-22;2034-04-22;2034-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-17;2034-06-17;2034-06-17;2034-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-12;2034-08-12;2034-08-12;2034-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-07;2034-10-07;2034-10-07;2034-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-02;2034-12-02;2034-12-02;2034-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-27;2035-01-27;2035-01-27;2035-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-24;2035-03-24;2035-03-24;2035-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-19;2035-05-19;2035-05-19;2035-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-14;2035-07-14;2035-07-14;2035-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"COV";"Site Closure";"";"Closure Visit";"";2035-07-14;2035-07-14;2035-07-14;2035-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-08;2035-09-08;2035-09-08;2035-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-03;2035-11-03;2035-11-03;2035-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-29;2035-12-29;2035-12-29;2035-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-23;2036-02-23;2036-02-23;2036-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-19;2036-04-19;2036-04-19;2036-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-14;2036-06-14;2036-06-14;2036-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-09;2036-08-09;2036-08-09;2036-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-04;2036-10-04;2036-10-04;2036-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10034";"DD5-CN10034";"Chundi";"Xu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-29;2036-11-29;2036-11-29;2036-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"COV";"Site Closure";"";"Closure Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10035";"DD5-CN10035";"Haipeng";"Yuan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-03;2036-12-03;2036-12-03;2036-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-25;2026-01-25;2026-01-25;2026-01-25;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-22;2026-03-22;2026-03-22;2026-03-22;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-17;2026-05-17;2026-05-17;2026-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-12;2026-07-12;2026-07-12;2026-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-06;2026-09-06;2026-09-06;2026-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-01;2026-11-01;2026-11-01;2026-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-27;2026-12-27;2026-12-27;2026-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-21;2027-02-21;2027-02-21;2027-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-18;2027-04-18;2027-04-18;2027-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-13;2027-06-13;2027-06-13;2027-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-08;2027-08-08;2027-08-08;2027-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-03;2027-10-03;2027-10-03;2027-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-28;2027-11-28;2027-11-28;2027-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-23;2028-01-23;2028-01-23;2028-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-19;2028-03-19;2028-03-19;2028-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-14;2028-05-14;2028-05-14;2028-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-09;2028-07-09;2028-07-09;2028-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-03;2028-09-03;2028-09-03;2028-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-29;2028-10-29;2028-10-29;2028-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-24;2028-12-24;2028-12-24;2028-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-18;2029-02-18;2029-02-18;2029-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-15;2029-04-15;2029-04-15;2029-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-10;2029-06-10;2029-06-10;2029-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-05;2029-08-05;2029-08-05;2029-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-30;2029-09-30;2029-09-30;2029-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-25;2029-11-25;2029-11-25;2029-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-20;2030-01-20;2030-01-20;2030-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-17;2030-03-17;2030-03-17;2030-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-12;2030-05-12;2030-05-12;2030-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-07;2030-07-07;2030-07-07;2030-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-01;2030-09-01;2030-09-01;2030-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-27;2030-10-27;2030-10-27;2030-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-22;2030-12-22;2030-12-22;2030-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-16;2031-02-16;2031-02-16;2031-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-13;2031-04-13;2031-04-13;2031-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-08;2031-06-08;2031-06-08;2031-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-03;2031-08-03;2031-08-03;2031-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-28;2031-09-28;2031-09-28;2031-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-23;2031-11-23;2031-11-23;2031-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-18;2032-01-18;2032-01-18;2032-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-14;2032-03-14;2032-03-14;2032-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-09;2032-05-09;2032-05-09;2032-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-04;2032-07-04;2032-07-04;2032-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-29;2032-08-29;2032-08-29;2032-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-24;2032-10-24;2032-10-24;2032-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-19;2032-12-19;2032-12-19;2032-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-13;2033-02-13;2033-02-13;2033-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-10;2033-04-10;2033-04-10;2033-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-05;2033-06-05;2033-06-05;2033-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-31;2033-07-31;2033-07-31;2033-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-25;2033-09-25;2033-09-25;2033-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-20;2033-11-20;2033-11-20;2033-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-15;2034-01-15;2034-01-15;2034-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-12;2034-03-12;2034-03-12;2034-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-07;2034-05-07;2034-05-07;2034-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-02;2034-07-02;2034-07-02;2034-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-27;2034-08-27;2034-08-27;2034-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-22;2034-10-22;2034-10-22;2034-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-17;2034-12-17;2034-12-17;2034-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-11;2035-02-11;2035-02-11;2035-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-08;2035-04-08;2035-04-08;2035-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-03;2035-06-03;2035-06-03;2035-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"COV";"Site Closure";"";"Closure Visit";"";2035-06-03;2035-06-03;2035-06-03;2035-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-29;2035-07-29;2035-07-29;2035-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-23;2035-09-23;2035-09-23;2035-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-18;2035-11-18;2035-11-18;2035-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-13;2036-01-13;2036-01-13;2036-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-09;2036-03-09;2036-03-09;2036-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-04;2036-05-04;2036-05-04;2036-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-29;2036-06-29;2036-06-29;2036-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-24;2036-08-24;2036-08-24;2036-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10036";"DD5-CN10036";"Wenjia";"Liu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-19;2036-10-19;2036-10-19;2036-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-02-21;2026-02-21;2026-02-21;2026-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-18;2026-04-18;2026-04-18;2026-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-13;2026-06-13;2026-06-13;2026-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-08;2026-08-08;2026-08-08;2026-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-03;2026-10-03;2026-10-03;2026-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-28;2026-11-28;2026-11-28;2026-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-23;2027-01-23;2027-01-23;2027-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-20;2027-03-20;2027-03-20;2027-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-15;2027-05-15;2027-05-15;2027-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-10;2027-07-10;2027-07-10;2027-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-04;2027-09-04;2027-09-04;2027-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-30;2027-10-30;2027-10-30;2027-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-25;2027-12-25;2027-12-25;2027-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-19;2028-02-19;2028-02-19;2028-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-15;2028-04-15;2028-04-15;2028-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-10;2028-06-10;2028-06-10;2028-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-05;2028-08-05;2028-08-05;2028-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-30;2028-09-30;2028-09-30;2028-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-25;2028-11-25;2028-11-25;2028-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-20;2029-01-20;2029-01-20;2029-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-17;2029-03-17;2029-03-17;2029-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-12;2029-05-12;2029-05-12;2029-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-07;2029-07-07;2029-07-07;2029-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-01;2029-09-01;2029-09-01;2029-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-27;2029-10-27;2029-10-27;2029-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-22;2029-12-22;2029-12-22;2029-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-16;2030-02-16;2030-02-16;2030-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-13;2030-04-13;2030-04-13;2030-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-08;2030-06-08;2030-06-08;2030-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-03;2030-08-03;2030-08-03;2030-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-28;2030-09-28;2030-09-28;2030-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-23;2030-11-23;2030-11-23;2030-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-18;2031-01-18;2031-01-18;2031-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-15;2031-03-15;2031-03-15;2031-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-10;2031-05-10;2031-05-10;2031-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-05;2031-07-05;2031-07-05;2031-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-30;2031-08-30;2031-08-30;2031-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-25;2031-10-25;2031-10-25;2031-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-20;2031-12-20;2031-12-20;2031-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-14;2032-02-14;2032-02-14;2032-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-10;2032-04-10;2032-04-10;2032-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-05;2032-06-05;2032-06-05;2032-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-31;2032-07-31;2032-07-31;2032-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-25;2032-09-25;2032-09-25;2032-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-20;2032-11-20;2032-11-20;2032-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-15;2033-01-15;2033-01-15;2033-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-12;2033-03-12;2033-03-12;2033-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-07;2033-05-07;2033-05-07;2033-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-02;2033-07-02;2033-07-02;2033-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-27;2033-08-27;2033-08-27;2033-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-22;2033-10-22;2033-10-22;2033-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-17;2033-12-17;2033-12-17;2033-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-11;2034-02-11;2034-02-11;2034-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-08;2034-04-08;2034-04-08;2034-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-03;2034-06-03;2034-06-03;2034-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-29;2034-07-29;2034-07-29;2034-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-23;2034-09-23;2034-09-23;2034-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-18;2034-11-18;2034-11-18;2034-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-13;2035-01-13;2035-01-13;2035-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-10;2035-03-10;2035-03-10;2035-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-05;2035-05-05;2035-05-05;2035-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"COV";"Site Closure";"";"Closure Visit";"";2035-06-30;2035-06-30;2035-06-30;2035-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-25;2035-08-25;2035-08-25;2035-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-20;2035-10-20;2035-10-20;2035-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-15;2035-12-15;2035-12-15;2035-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-09;2036-02-09;2036-02-09;2036-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-05;2036-04-05;2036-04-05;2036-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-31;2036-05-31;2036-05-31;2036-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-26;2036-07-26;2036-07-26;2036-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-20;2036-09-20;2036-09-20;2036-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10037";"DD5-CN10037";"Jingnan";"Li";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-15;2036-11-15;2036-11-15;2036-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-24;2026-01-24;2026-01-24;2026-02-13;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-03-21;2026-03-21;2026-03-21;2026-03-21;2026-04-20;"William";"";"Wang" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-16;2026-05-16;2026-05-16;2026-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-11;2026-07-11;2026-07-11;2026-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-05;2026-09-05;2026-09-05;2026-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-31;2026-10-31;2026-10-31;2026-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-26;2026-12-26;2026-12-26;2026-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-20;2027-02-20;2027-02-20;2027-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-17;2027-04-17;2027-04-17;2027-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-12;2027-06-12;2027-06-12;2027-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-07;2027-08-07;2027-08-07;2027-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-02;2027-10-02;2027-10-02;2027-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-27;2027-11-27;2027-11-27;2027-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-22;2028-01-22;2028-01-22;2028-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-18;2028-03-18;2028-03-18;2028-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-13;2028-05-13;2028-05-13;2028-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-08;2028-07-08;2028-07-08;2028-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-02;2028-09-02;2028-09-02;2028-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-28;2028-10-28;2028-10-28;2028-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-23;2028-12-23;2028-12-23;2028-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-17;2029-02-17;2029-02-17;2029-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-14;2029-04-14;2029-04-14;2029-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-09;2029-06-09;2029-06-09;2029-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-04;2029-08-04;2029-08-04;2029-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-29;2029-09-29;2029-09-29;2029-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-24;2029-11-24;2029-11-24;2029-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-19;2030-01-19;2030-01-19;2030-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-16;2030-03-16;2030-03-16;2030-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-11;2030-05-11;2030-05-11;2030-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-06;2030-07-06;2030-07-06;2030-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-31;2030-08-31;2030-08-31;2030-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-26;2030-10-26;2030-10-26;2030-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-21;2030-12-21;2030-12-21;2030-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-15;2031-02-15;2031-02-15;2031-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-12;2031-04-12;2031-04-12;2031-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-07;2031-06-07;2031-06-07;2031-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-02;2031-08-02;2031-08-02;2031-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-27;2031-09-27;2031-09-27;2031-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-22;2031-11-22;2031-11-22;2031-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-17;2032-01-17;2032-01-17;2032-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-13;2032-03-13;2032-03-13;2032-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-08;2032-05-08;2032-05-08;2032-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-03;2032-07-03;2032-07-03;2032-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-28;2032-08-28;2032-08-28;2032-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-23;2032-10-23;2032-10-23;2032-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-18;2032-12-18;2032-12-18;2032-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-12;2033-02-12;2033-02-12;2033-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-09;2033-04-09;2033-04-09;2033-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-04;2033-06-04;2033-06-04;2033-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-30;2033-07-30;2033-07-30;2033-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-24;2033-09-24;2033-09-24;2033-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-19;2033-11-19;2033-11-19;2033-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-14;2034-01-14;2034-01-14;2034-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-11;2034-03-11;2034-03-11;2034-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-06;2034-05-06;2034-05-06;2034-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-01;2034-07-01;2034-07-01;2034-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-26;2034-08-26;2034-08-26;2034-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-21;2034-10-21;2034-10-21;2034-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-16;2034-12-16;2034-12-16;2034-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-10;2035-02-10;2035-02-10;2035-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-07;2035-04-07;2035-04-07;2035-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-02;2035-06-02;2035-06-02;2035-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-02;2035-06-02;2035-06-02;2035-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-28;2035-07-28;2035-07-28;2035-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-22;2035-09-22;2035-09-22;2035-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-17;2035-11-17;2035-11-17;2035-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-12;2036-01-12;2036-01-12;2036-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-08;2036-03-08;2036-03-08;2036-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-03;2036-05-03;2036-05-03;2036-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-28;2036-06-28;2036-06-28;2036-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-23;2036-08-23;2036-08-23;2036-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10038";"DD5-CN10038";"Heng";"Zhang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-18;2036-10-18;2036-10-18;2036-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-23;2025-12-23;2025-12-23;2025-12-23;2025-11-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2025-12-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"COV";"Site Closure";"";"Closure Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10039";"DD5-CN10039";"Xiaoyun";"Ding";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-16;2036-09-16;2036-09-16;2036-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-28;2025-05-28;2025-05-28;2025-05-28;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-28;2026-02-28;2026-02-28;2026-02-28;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-25;2026-04-25;2026-04-25;2026-04-25;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-20;2026-06-20;2026-06-20;2026-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-15;2026-08-15;2026-08-15;2026-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-10;2026-10-10;2026-10-10;2026-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-05;2026-12-05;2026-12-05;2026-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-30;2027-01-30;2027-01-30;2027-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-27;2027-03-27;2027-03-27;2027-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-22;2027-05-22;2027-05-22;2027-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-17;2027-07-17;2027-07-17;2027-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-11;2027-09-11;2027-09-11;2027-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-06;2027-11-06;2027-11-06;2027-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-01;2028-01-01;2028-01-01;2028-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-26;2028-02-26;2028-02-26;2028-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-22;2028-04-22;2028-04-22;2028-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-17;2028-06-17;2028-06-17;2028-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-12;2028-08-12;2028-08-12;2028-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-07;2028-10-07;2028-10-07;2028-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-02;2028-12-02;2028-12-02;2028-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-27;2029-01-27;2029-01-27;2029-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-24;2029-03-24;2029-03-24;2029-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-19;2029-05-19;2029-05-19;2029-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-14;2029-07-14;2029-07-14;2029-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-08;2029-09-08;2029-09-08;2029-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-03;2029-11-03;2029-11-03;2029-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-29;2029-12-29;2029-12-29;2029-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-23;2030-02-23;2030-02-23;2030-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-20;2030-04-20;2030-04-20;2030-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-15;2030-06-15;2030-06-15;2030-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-10;2030-08-10;2030-08-10;2030-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-05;2030-10-05;2030-10-05;2030-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-30;2030-11-30;2030-11-30;2030-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-25;2031-01-25;2031-01-25;2031-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-22;2031-03-22;2031-03-22;2031-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-17;2031-05-17;2031-05-17;2031-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-12;2031-07-12;2031-07-12;2031-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-06;2031-09-06;2031-09-06;2031-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-01;2031-11-01;2031-11-01;2031-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-27;2031-12-27;2031-12-27;2031-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-21;2032-02-21;2032-02-21;2032-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-17;2032-04-17;2032-04-17;2032-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-12;2032-06-12;2032-06-12;2032-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-07;2032-08-07;2032-08-07;2032-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-02;2032-10-02;2032-10-02;2032-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-27;2032-11-27;2032-11-27;2032-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-22;2033-01-22;2033-01-22;2033-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-19;2033-03-19;2033-03-19;2033-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-14;2033-05-14;2033-05-14;2033-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-09;2033-07-09;2033-07-09;2033-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-03;2033-09-03;2033-09-03;2033-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-29;2033-10-29;2033-10-29;2033-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-24;2033-12-24;2033-12-24;2033-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-18;2034-02-18;2034-02-18;2034-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-15;2034-04-15;2034-04-15;2034-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-10;2034-06-10;2034-06-10;2034-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-05;2034-08-05;2034-08-05;2034-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-30;2034-09-30;2034-09-30;2034-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-25;2034-11-25;2034-11-25;2034-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-20;2035-01-20;2035-01-20;2035-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-17;2035-03-17;2035-03-17;2035-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-12;2035-05-12;2035-05-12;2035-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"COV";"Site Closure";"";"Closure Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-01;2035-09-01;2035-09-01;2035-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-22;2035-12-22;2035-12-22;2035-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-16;2036-02-16;2036-02-16;2036-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-12;2036-04-12;2036-04-12;2036-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-07;2036-06-07;2036-06-07;2036-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-02;2036-08-02;2036-08-02;2036-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-27;2036-09-27;2036-09-27;2036-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CN10040";"DD5-CN10040";"Morong";"Liu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-22;2036-11-22;2036-11-22;2036-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-12-22;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10001";"DD5-CZ10001";"Matej";"Falc";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10002";"DD5-CZ10002";"Tomas";"Vanasek";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2025-12-05;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10003";"DD5-CZ10003";"Leksa";"Vaclav";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10004";"DD5-CZ10004";"Zuzana";"Serclova";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10005";"DD5-CZ10005";"Ondrej";"Jelinek";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-27;"Vladimíra";"";"Cetkovská" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-12;"Daniel";"";"Maxa" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10006";"DD5-CZ10006";"Michal";"Konecny";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10007";"DD5-CZ10007";"Jan";"Ulbrych";"SQV";"Qualification Visit";"";"Qualification Visit";"Within the plan";2025-05-03;2025-05-30;2025-05-03;2025-05-30;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10008";"DD5-CZ10008";"Pavel";"Svoboda";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-23;"Daniel";"";"Maxa" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-21;"Vladimíra";"";"Cetkovská" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-02-09;2026-02-09;2026-02-09;2026-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10009";"DD5-CZ10009";"Jiri";"Pumprla";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-26;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Outside the plan";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10010";"DD5-CZ10010";"Nabil";"El Lababidi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10011";"DD5-CZ10011";"Jan";"Kral";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-19;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-01-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-26;2026-03-26;2026-03-26;2026-03-26;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"COV";"Site Closure";"";"Closure Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10012";"DD5-CZ10012";"Stefan";"Konecny";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-23;2036-10-23;2036-10-23;2036-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-01-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"COV";"Site Closure";"";"Closure Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10013";"DD5-CZ10013";"David";"Stepek";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-14;2036-10-14;2036-10-14;2036-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10014";"DD5-CZ10014";"Vlastimil";"Woznica";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-21;"Helena";"";"Klempererova" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2025-12-18;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-12;2026-02-12;2026-02-12;2026-02-12;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"COV";"Site Closure";"";"Closure Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10015";"DD5-CZ10015";"Jan";"Matous";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10016";"DD5-CZ10016";"Robert";"Mudr";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10017";"DD5-CZ10017";"Helena";"Hlavova";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10018";"DD5-CZ10018";"Anna";"Jungwirthova";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-20;"Vladimir";"";"Buzalka" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10019";"DD5-CZ10019";"Astrida";"Sulakova";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"COV";"Site Closure";"";"Closure Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10020";"DD5-CZ10020";"Lucie";"Gonsorcikova";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-14;2036-10-14;2036-10-14;2036-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-03-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10021";"DD5-CZ10021";"Martin";"Bortlik";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-30;"Daniel";"";"Maxa" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-07;2026-05-07;2026-05-07;2026-05-07;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-07-02;2026-07-02;2026-07-02;2026-07-02;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10022";"DD5-CZ10022";"Petr";"Hrabak";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10023";"DD5-CZ10023";"Petra";"Minarikova";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-26;"Helena";"";"Klempererova" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10024";"DD5-CZ10024";"Milan";"Lukas";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-26;"Daniel";"";"Maxa" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10025";"DD5-CZ10025";"Pavel";"Drastich";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-27;"Daniel";"";"Maxa" +"77242113UCO3001";"77242113UCO3001";"DD5-CZ10026";"DD5-CZ10026";"Vladimir";"Vaculin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-31;2025-05-31;2025-05-31;2025-05-31;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2026-03-17;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10001";"DD5-DE10001";"Raja";"Atreya";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-04;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2025-12-04;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2026-02-13;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10002";"DD5-DE10002";"Carsten";"Buening";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10005";"DD5-DE10005";"Elisabeth";"Schnoy";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-06-10;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2026-02-09;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10006";"DD5-DE10006";"Stefan";"Schreiber";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"Within the plan";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10010";"DD5-DE10010";"Ursula";"Seidler";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10011";"DD5-DE10011";"Tanja";"Kuehbacher";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-06-10;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV2";"Monitoring Visit 2";"Planned";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10015";"DD5-DE10015";"Ingolf";"Schiefke";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-06;2025-10-06;2025-10-06;2025-10-06;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"COV";"Site Closure";"";"Closure Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10016";"DD5-DE10016";"Christian";"Maaser";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-11;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-06;2025-10-06;2025-10-06;2025-10-06;2026-02-06;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"COV";"Site Closure";"";"Closure Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10021";"DD5-DE10021";"Lars";"Fechner";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-29;2025-06-05;2025-04-29;2025-06-05;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-29;2025-10-29;2025-10-29;2025-10-29;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-24;2025-12-24;2025-12-24;2025-12-24;2026-02-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-18;2026-02-18;2026-02-18;2026-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"COV";"Site Closure";"";"Closure Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10022";"DD5-DE10022";"Jochen";"Klaus";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-06;2025-10-06;2025-10-06;2025-10-06;2025-12-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"COV";"Site Closure";"";"Closure Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10023";"DD5-DE10023";"Wilfred";"Landry";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10024";"DD5-DE10024";"Wolfgang";"Reindl";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-06-04;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-06;2025-10-06;2025-10-06;2025-10-06;2026-01-07;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2026-02-11;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-03-10;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;2026-04-09;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"Simone";"";"Reipschlaeger" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"COV";"Site Closure";"";"Closure Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10025";"DD5-DE10025";"Johannes";"Reiner";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-06-10;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-06;2025-10-06;2025-10-06;2025-10-06;2025-12-18;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2026-02-18;"Isaac";"";"Sipo" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"Thomas";"";"Giese" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"COV";"Site Closure";"";"Closure Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10026";"DD5-DE10026";"Joerg";"Schulze";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-07-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-29;2025-10-29;2025-10-29;2025-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-24;2025-12-24;2025-12-24;2025-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-18;2026-02-18;2026-02-18;2026-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"COV";"Site Closure";"";"Closure Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10031";"DD5-DE10031";"Stephan";"Gehring";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10032";"DD5-DE10032";"Kai";"Hensel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10033";"DD5-DE10033";"Andre";"Hoerning";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-29;2025-10-29;2025-10-29;2025-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-24;2025-12-24;2025-12-24;2025-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-18;2026-02-18;2026-02-18;2026-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"COV";"Site Closure";"";"Closure Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10034";"DD5-DE10034";"Jochen";"Kittel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10035";"DD5-DE10035";"Tobias";"Schwerd";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-29;2025-10-29;2025-10-29;2025-10-29;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2025-12-24;2025-12-24;2025-12-24;2025-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-18;2026-02-18;2026-02-18;2026-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"COV";"Site Closure";"";"Closure Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10036";"DD5-DE10036";"Tobias";"Wenzl";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-DE10037";"DD5-DE10037";"Lena";"Woelfle";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10001";"DD5-ES10001";"Victor";"Merino Murgui";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10002";"DD5-ES10002";"Jordi";"Guardiola Capon";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-09;2026-02-09;2026-02-09;2026-02-09;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-06;2026-04-06;2026-04-06;2026-04-06;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-06-01;2026-06-01;2026-06-01;2026-06-01;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10003";"DD5-ES10003";"Angel";"Ponferrada Diaz";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-10;2025-11-10;2025-11-10;2025-11-10;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-05;2026-01-05;2026-01-05;2026-01-05;2026-01-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-02;2026-03-02;2026-03-02;2026-03-02;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-27;2026-04-27;2026-04-27;2026-04-27;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"COV";"Site Closure";"";"Closure Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10004";"DD5-ES10004";"Maria Isabel";"Iborra Colomino";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10005";"DD5-ES10005";"Manuel";"Barreiro";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-19;2026-01-19;2026-01-19;2025-12-12;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"COV";"Site Closure";"";"Closure Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10006";"DD5-ES10006";"Javier";"Perez Gisbert";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10007";"DD5-ES10007";"Pilar";"Varela Trastoy";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10008";"DD5-ES10008";"Pilar";"Lopez Serrano";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-27;2026-05-27;2026-05-27;2026-05-27;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"COV";"Site Closure";"";"Closure Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10009";"DD5-ES10009";"Vicent";"Hernandez Ramirez";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;2026-01-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"COV";"Site Closure";"";"Closure Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10010";"DD5-ES10010";"Ana";"Echarri Piudo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-03;2036-11-03;2036-11-03;2036-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2025-12-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-16;2026-03-16;2026-03-16;2026-03-16;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-11;2026-05-11;2026-05-11;2026-05-11;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10011";"DD5-ES10011";"Federico";"Arguelles Arias";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"COV";"Site Closure";"";"Closure Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10012";"DD5-ES10012";"Iago";"Rodriguez-Lago";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-27;2036-10-27;2036-10-27;2036-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10013";"DD5-ES10013";"Maria Dolores";"Martin Arranz";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-06-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"SIV";"Site Initiation";"Planned";"Initiation Visit";"Within the plan";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-02-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"COV";"Site Closure";"";"Closure Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10014";"DD5-ES10014";"David";"Busquets Casals";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-20;2036-10-20;2036-10-20;2036-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10015";"DD5-ES10015";"Yago";"Gonzalez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10016";"DD5-ES10016";"Daniel";"Carpio Lopez";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10017";"DD5-ES10017";"Raquel";"Vicente Lidon";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10018";"DD5-ES10018";"Ingrid";"Ordas";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10019";"DD5-ES10019";"Marta";"Velasco Rodríguez-Belvís";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"SIV";"Site Initiation";"Planned";"Initiation Visit";"Within the plan";2026-02-16;2026-02-16;2026-02-16;2026-02-16;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"COV";"Site Closure";"";"Closure Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10020";"DD5-ES10020";"Francisco Javier";"Martín de Carpi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-10;2036-11-10;2036-11-10;2036-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ES10021";"DD5-ES10021";"Margalida";"Calafat";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-16;2025-12-16;2025-12-16;2025-12-16;2025-12-17;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-10;2026-02-10;2026-02-10;2026-02-10;2026-04-20;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-07;2026-04-07;2026-04-07;2026-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-02;2026-06-02;2026-06-02;2026-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-28;2026-07-28;2026-07-28;2026-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-22;2026-09-22;2026-09-22;2026-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-17;2026-11-17;2026-11-17;2026-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-12;2027-01-12;2027-01-12;2027-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-09;2027-03-09;2027-03-09;2027-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-04;2027-05-04;2027-05-04;2027-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-29;2027-06-29;2027-06-29;2027-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-24;2027-08-24;2027-08-24;2027-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-19;2027-10-19;2027-10-19;2027-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-14;2027-12-14;2027-12-14;2027-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-08;2028-02-08;2028-02-08;2028-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-04;2028-04-04;2028-04-04;2028-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-30;2028-05-30;2028-05-30;2028-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-25;2028-07-25;2028-07-25;2028-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-19;2028-09-19;2028-09-19;2028-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-14;2028-11-14;2028-11-14;2028-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-09;2029-01-09;2029-01-09;2029-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-06;2029-03-06;2029-03-06;2029-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-01;2029-05-01;2029-05-01;2029-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-26;2029-06-26;2029-06-26;2029-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-21;2029-08-21;2029-08-21;2029-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-16;2029-10-16;2029-10-16;2029-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-11;2029-12-11;2029-12-11;2029-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-05;2030-02-05;2030-02-05;2030-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-02;2030-04-02;2030-04-02;2030-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-28;2030-05-28;2030-05-28;2030-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-23;2030-07-23;2030-07-23;2030-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-17;2030-09-17;2030-09-17;2030-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-12;2030-11-12;2030-11-12;2030-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-07;2031-01-07;2031-01-07;2031-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-04;2031-03-04;2031-03-04;2031-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-29;2031-04-29;2031-04-29;2031-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-24;2031-06-24;2031-06-24;2031-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-19;2031-08-19;2031-08-19;2031-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-14;2031-10-14;2031-10-14;2031-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-09;2031-12-09;2031-12-09;2031-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-03;2032-02-03;2032-02-03;2032-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-30;2032-03-30;2032-03-30;2032-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-25;2032-05-25;2032-05-25;2032-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-20;2032-07-20;2032-07-20;2032-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-14;2032-09-14;2032-09-14;2032-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-09;2032-11-09;2032-11-09;2032-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-04;2033-01-04;2033-01-04;2033-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-01;2033-03-01;2033-03-01;2033-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-26;2033-04-26;2033-04-26;2033-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-21;2033-06-21;2033-06-21;2033-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-16;2033-08-16;2033-08-16;2033-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-11;2033-10-11;2033-10-11;2033-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-06;2033-12-06;2033-12-06;2033-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-31;2034-01-31;2034-01-31;2034-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-28;2034-03-28;2034-03-28;2034-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-23;2034-05-23;2034-05-23;2034-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-18;2034-07-18;2034-07-18;2034-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-12;2034-09-12;2034-09-12;2034-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-07;2034-11-07;2034-11-07;2034-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-02;2035-01-02;2035-01-02;2035-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-27;2035-02-27;2035-02-27;2035-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"COV";"Site Closure";"";"Closure Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-19;2035-06-19;2035-06-19;2035-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-14;2035-08-14;2035-08-14;2035-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-09;2035-10-09;2035-10-09;2035-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-04;2035-12-04;2035-12-04;2035-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-29;2036-01-29;2036-01-29;2036-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-25;2036-03-25;2036-03-25;2036-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-20;2036-05-20;2036-05-20;2036-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-15;2036-07-15;2036-07-15;2036-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10001";"DD5-FR10001";"Xavier";"Roblin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-09;2036-09-09;2036-09-09;2036-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-14;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2025-12-04;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-01-02;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-25;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10002";"DD5-FR10002";"Stephane";"Nancey";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-07-28;"Yasmine";"";"LAMRI" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-04;2025-12-04;2025-12-04;2025-12-04;2026-01-08;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-02-10;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"COV";"Site Closure";"";"Closure Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10003";"DD5-FR10003";"Adrien";"Nicolau";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2025-12-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"COV";"Site Closure";"";"Closure Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10004";"DD5-FR10004";"Cyrielle";"Gilletta de Saint Joseph";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-04;2026-05-04;2026-05-04;2026-05-04;2026-03-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10005";"DD5-FR10005";"Benedicte";"Caron";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-20;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-16;2025-12-16;2025-12-16;2025-12-16;2025-12-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-10;2026-02-10;2026-02-10;2026-02-10;2025-12-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-07;2026-04-07;2026-04-07;2026-04-07;2026-02-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-02;2026-06-02;2026-06-02;2026-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-28;2026-07-28;2026-07-28;2026-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-22;2026-09-22;2026-09-22;2026-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-17;2026-11-17;2026-11-17;2026-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-12;2027-01-12;2027-01-12;2027-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-09;2027-03-09;2027-03-09;2027-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-04;2027-05-04;2027-05-04;2027-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-29;2027-06-29;2027-06-29;2027-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-24;2027-08-24;2027-08-24;2027-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-19;2027-10-19;2027-10-19;2027-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-14;2027-12-14;2027-12-14;2027-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-08;2028-02-08;2028-02-08;2028-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-04;2028-04-04;2028-04-04;2028-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-30;2028-05-30;2028-05-30;2028-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-25;2028-07-25;2028-07-25;2028-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-19;2028-09-19;2028-09-19;2028-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-14;2028-11-14;2028-11-14;2028-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-09;2029-01-09;2029-01-09;2029-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-06;2029-03-06;2029-03-06;2029-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-01;2029-05-01;2029-05-01;2029-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-26;2029-06-26;2029-06-26;2029-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-21;2029-08-21;2029-08-21;2029-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-16;2029-10-16;2029-10-16;2029-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-11;2029-12-11;2029-12-11;2029-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-05;2030-02-05;2030-02-05;2030-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-02;2030-04-02;2030-04-02;2030-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-28;2030-05-28;2030-05-28;2030-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-23;2030-07-23;2030-07-23;2030-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-17;2030-09-17;2030-09-17;2030-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-12;2030-11-12;2030-11-12;2030-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-07;2031-01-07;2031-01-07;2031-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-04;2031-03-04;2031-03-04;2031-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-29;2031-04-29;2031-04-29;2031-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-24;2031-06-24;2031-06-24;2031-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-19;2031-08-19;2031-08-19;2031-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-14;2031-10-14;2031-10-14;2031-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-09;2031-12-09;2031-12-09;2031-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-03;2032-02-03;2032-02-03;2032-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-30;2032-03-30;2032-03-30;2032-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-25;2032-05-25;2032-05-25;2032-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-20;2032-07-20;2032-07-20;2032-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-14;2032-09-14;2032-09-14;2032-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-09;2032-11-09;2032-11-09;2032-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-04;2033-01-04;2033-01-04;2033-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-01;2033-03-01;2033-03-01;2033-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-26;2033-04-26;2033-04-26;2033-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-21;2033-06-21;2033-06-21;2033-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-16;2033-08-16;2033-08-16;2033-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-11;2033-10-11;2033-10-11;2033-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-06;2033-12-06;2033-12-06;2033-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-31;2034-01-31;2034-01-31;2034-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-28;2034-03-28;2034-03-28;2034-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-23;2034-05-23;2034-05-23;2034-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-18;2034-07-18;2034-07-18;2034-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-12;2034-09-12;2034-09-12;2034-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-07;2034-11-07;2034-11-07;2034-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-02;2035-01-02;2035-01-02;2035-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-27;2035-02-27;2035-02-27;2035-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"COV";"Site Closure";"";"Closure Visit";"";2035-04-24;2035-04-24;2035-04-24;2035-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-19;2035-06-19;2035-06-19;2035-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-14;2035-08-14;2035-08-14;2035-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-09;2035-10-09;2035-10-09;2035-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-04;2035-12-04;2035-12-04;2035-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-29;2036-01-29;2036-01-29;2036-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-25;2036-03-25;2036-03-25;2036-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-20;2036-05-20;2036-05-20;2036-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-15;2036-07-15;2036-07-15;2036-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10006";"DD5-FR10006";"Maria";"Nachury";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-09;2036-09-09;2036-09-09;2036-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-21;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2025-12-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"COV";"Site Closure";"";"Closure Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10007";"DD5-FR10007";"Mathieu";"Uzzan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2025-12-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10008";"DD5-FR10008";"Julien";"Kirchgesner";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-11-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-02-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-04;2026-05-04;2026-05-04;2026-05-04;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-06-29;2026-06-29;2026-06-29;2026-06-29;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10009";"DD5-FR10009";"David";"Laharie";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-02-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10010";"DD5-FR10010";"Anthony";"Buisson";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-02;2025-12-02;2025-12-02;2025-12-02;2026-01-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2026-01-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"COV";"Site Closure";"";"Closure Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10011";"DD5-FR10011";"Romain";"Altwegg";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-22;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"COV";"Site Closure";"";"Closure Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10012";"DD5-FR10012";"Nicolas";"Mathieu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-13;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-08;2025-12-08;2025-12-08;2025-12-08;2025-12-12;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-01-16;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"COV";"Site Closure";"";"Closure Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10013";"DD5-FR10013";"Mathurin";"Flamant";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-07-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-12;2025-12-12;2025-12-12;2025-12-12;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"COV";"Site Closure";"";"Closure Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10014";"DD5-FR10014";"Stephane";"Nahon";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-07-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2026-02-10;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-12;2026-02-12;2026-02-12;2026-02-12;2026-04-07;"Julie";"";"Delugeard" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"COV";"Site Closure";"";"Closure Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10015";"DD5-FR10015";"Felix";"Goutorbe";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-07-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-21;2025-11-21;2025-11-21;2025-11-21;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"COV";"Site Closure";"";"Closure Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10016";"DD5-FR10016";"Sophie";"Geyl";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-09-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"COV";"Site Closure";"";"Closure Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10017";"DD5-FR10017";"Delphine";"Ley";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-07-22;"Yasmine";"";"LAMRI" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-11-19;2025-11-19;2025-11-19;2025-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-FR10018";"DD5-FR10018";"Remi";"Duclaux-Loras";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2025-12-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10001";"DD5-GB10001";"Kamal";"Patel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-28;2025-04-26;2025-04-28;2025-04-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2025-12-02;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2026-02-10;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10002";"DD5-GB10002";"Jimmy";"Limdi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-31;2025-10-31;2025-10-31;2025-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-26;2025-12-26;2025-12-26;2025-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10003";"DD5-GB10003";"Oliver";"Brain";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10004";"DD5-GB10004";"Mark";"Samaan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-04-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-03-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10005";"DD5-GB10005";"Tim";"Raine";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"COV";"Site Closure";"";"Closure Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10006";"DD5-GB10006";"Polychronis";"Pavlidis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10007";"DD5-GB10007";"Daniel";"Gaya";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2025-11-28;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-01-07;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-02-18;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;2026-04-15;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"Harriet";"";"Goddard" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10008";"DD5-GB10008";"Chris";"Watters";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-26;2025-04-26;2025-04-26;2025-04-26;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"COV";"Site Closure";"";"Closure Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10013";"DD5-GB10013";"Sami";"Hoque";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10014";"DD5-GB10014";"Peter";"Rimmer";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-27;2025-11-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-23;2026-01-23;2026-01-23;2026-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10015";"DD5-GB10015";"Wisam";"Jafar";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"COV";"Site Closure";"";"Closure Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10016";"DD5-GB10016";"Akshay";"Kapoor";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-07-09;2025-07-09;2025-07-09;2025-07-09;2025-07-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10017";"DD5-GB10017";"Richard";"Russell";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GB10018";"DD5-GB10018";"Richard";"Russell";"SQV";"Qualification Visit";"";"Qualification Visit";"";2026-02-28;2026-02-28;2026-02-28;2026-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-09;2026-01-09;2026-01-09;;2026-02-25;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-03-19;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10001";"DD5-GR10001";"George";"Bamias";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;2026-01-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-07-27;2026-07-27;2026-07-27;2026-07-27;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Within the plan";2026-09-21;2026-09-21;2026-09-21;2026-09-21;2026-04-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10002";"DD5-GR10002";"Ioannis";"Koutroubakis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2025-12-16;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-01-12;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-08;2026-04-08;2026-04-08;2026-04-08;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"COV";"Site Closure";"";"Closure Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10003";"DD5-GR10003";"Nikolaos";"Viazis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-30;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-02-13;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;2026-03-24;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10004";"DD5-GR10004";"Konstantinos";"Soufleris";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-02-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-06;2026-05-06;2026-05-06;2026-05-06;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-07-01;2026-07-01;2026-07-01;2026-07-01;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10005";"DD5-GR10005";"Maria";"Tzouvala";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-04-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-07;2026-05-07;2026-05-07;2026-05-07;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10006";"DD5-GR10006";"Spilios";"Manolakopoulos";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-13;2026-02-13;2026-02-13;2026-02-13;2026-01-28;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;2026-03-06;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-06-05;2026-06-05;2026-06-05;2026-06-05;2026-04-09;"Margarita-Ioanna";"";"Koufaki" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"COV";"Site Closure";"";"Closure Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10007";"DD5-GR10007";"Spyros";"Michopoulos";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-12;2026-05-12;2026-05-12;2026-05-12;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"COV";"Site Closure";"";"Closure Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-GR10008";"DD5-GR10008";"Spyridon";"Vrakas";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-14;2036-10-14;2036-10-14;2036-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-29;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-01-21;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;2026-02-13;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV2";"Monitoring Visit 2";"Planned";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;2026-03-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"COV";"Site Closure";"";"Closure Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10001";"DD5-HU10001";"Emese";"Mihaly";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-15;2036-10-15;2036-10-15;2036-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-01-19;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"COV";"Site Closure";"";"Closure Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10002";"DD5-HU10002";"Akos";"Ilias";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-02-11;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-03-19;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10003";"DD5-HU10003";"Robert";"Schnabel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-30;"Csaba";"";"Fulop" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-02-04;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-24;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"COV";"Site Closure";"";"Closure Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10004";"DD5-HU10004";"Agnes";"Salamon";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"Non-routine monitoring visit";"Non-routine monitoring visit";"Completed";"Monitoring Visit";"";;;;;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"Non-routine monitoring visit 2";"Non-routine monitoring visit 2";"Completed";"Monitoring Visit";"";;;;;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-27;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10005";"DD5-HU10005";"Robert";"Sike";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"Non-routine monitoring visit";"Non-routine monitoring visit";"Completed";"Monitoring Visit";"";;;;;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-02-16;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"COV";"Site Closure";"";"Closure Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10006";"DD5-HU10006";"Pal";"Miheller";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-16;2036-10-16;2036-10-16;2036-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"Non-routine monitoring visit";"Non-routine monitoring visit";"Completed";"Monitoring Visit";"";;;;;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-02;2026-03-02;2026-03-02;2026-03-02;2026-02-16;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-27;2026-04-27;2026-04-27;2026-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"COV";"Site Closure";"";"Closure Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-29;2036-09-29;2036-09-29;2036-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10007";"DD5-HU10007";"Marta";"Varga";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-24;2036-11-24;2036-11-24;2036-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-02-23;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-04-20;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10008";"DD5-HU10008";"Maria";"Papp";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-02-04;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-03-27;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10009";"DD5-HU10009";"Andras";"Kafony";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"COV";"Site Closure";"";"Closure Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10010";"DD5-HU10010";"Istvan";"Nagy";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-16;2036-10-16;2036-10-16;2036-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-19;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-03-03;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10011";"DD5-HU10011";"Gyula";"G.Kiss";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"UNS";"Unscheduled-1";"Completed";"Monitoring Visit";"";;;;;2026-04-14;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-16;2025-05-23;2025-05-16;2025-05-23;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2026-01-27;"Bernadett";"";"Fejes" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"COV";"Site Closure";"";"Closure Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-16;2036-09-16;2036-09-16;2036-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10012";"DD5-HU10012";"Tamas";"Molnar";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-11;2036-11-11;2036-11-11;2036-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10013";"DD5-HU10013";"Ildiko";"Guthy";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"COV";"Site Closure";"";"Closure Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-HU10014";"DD5-HU10014";"Csaba";"Bereczki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-23;2036-10-23;2036-10-23;2036-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-04-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-20;2025-10-20;2025-10-20;2025-10-20;2025-11-23;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-15;2025-12-15;2025-12-15;2025-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"COV";"Site Closure";"";"Closure Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10001";"DD5-IL10001";"Asaf";"Levartovsky";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-27;2025-10-27;2025-10-27;2025-10-27;2025-11-11;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2026-02-11;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"COV";"Site Closure";"";"Closure Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10002";"DD5-IL10002";"Irit";"Avni-Biron";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-23;2025-10-23;2025-10-23;2025-10-23;2025-10-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2025-12-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"Within the plan";2026-02-12;2026-02-12;2026-02-12;2026-02-12;2026-02-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10003";"DD5-IL10003";"Nathaniel";"Cohen";"COV";"Site Closure";"";"Closure Visit";"";2035-03-01;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2025-11-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-20;2026-02-20;2026-02-20;2026-02-20;2026-01-22;"Sigalit";"";"Yitzhak" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-04-17;2026-04-17;2026-04-17;2026-04-17;2026-04-20;"Sigalit";"";"Yitzhak" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10004";"DD5-IL10004";"Benjamin";"Koslowsky";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2025-11-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-29;2025-12-29;2025-12-29;2025-12-29;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-23;2026-02-23;2026-02-23;2026-02-23;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10005";"DD5-IL10005";"Roni";"Weisshof";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2025-11-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"COV";"Site Closure";"";"Closure Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10006";"DD5-IL10006";"Tova";"Rainis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-06;2025-11-06;2025-11-06;2025-11-06;2025-11-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-01;2026-01-01;2026-01-01;2026-01-01;2026-02-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-26;2026-02-26;2026-02-26;2026-02-26;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-23;2026-04-23;2026-04-23;2026-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-18;2026-06-18;2026-06-18;2026-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-13;2026-08-13;2026-08-13;2026-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-08;2026-10-08;2026-10-08;2026-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-03;2026-12-03;2026-12-03;2026-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-28;2027-01-28;2027-01-28;2027-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-25;2027-03-25;2027-03-25;2027-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-20;2027-05-20;2027-05-20;2027-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-15;2027-07-15;2027-07-15;2027-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-09;2027-09-09;2027-09-09;2027-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-04;2027-11-04;2027-11-04;2027-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-30;2027-12-30;2027-12-30;2027-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-24;2028-02-24;2028-02-24;2028-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-20;2028-04-20;2028-04-20;2028-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-15;2028-06-15;2028-06-15;2028-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-10;2028-08-10;2028-08-10;2028-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-05;2028-10-05;2028-10-05;2028-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-30;2028-11-30;2028-11-30;2028-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-25;2029-01-25;2029-01-25;2029-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-22;2029-03-22;2029-03-22;2029-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-17;2029-05-17;2029-05-17;2029-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-12;2029-07-12;2029-07-12;2029-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-06;2029-09-06;2029-09-06;2029-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-01;2029-11-01;2029-11-01;2029-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-27;2029-12-27;2029-12-27;2029-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-21;2030-02-21;2030-02-21;2030-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-18;2030-04-18;2030-04-18;2030-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-13;2030-06-13;2030-06-13;2030-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-08;2030-08-08;2030-08-08;2030-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-03;2030-10-03;2030-10-03;2030-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-28;2030-11-28;2030-11-28;2030-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-23;2031-01-23;2031-01-23;2031-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-20;2031-03-20;2031-03-20;2031-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-15;2031-05-15;2031-05-15;2031-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-10;2031-07-10;2031-07-10;2031-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-04;2031-09-04;2031-09-04;2031-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-30;2031-10-30;2031-10-30;2031-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-25;2031-12-25;2031-12-25;2031-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-19;2032-02-19;2032-02-19;2032-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-15;2032-04-15;2032-04-15;2032-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-10;2032-06-10;2032-06-10;2032-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-05;2032-08-05;2032-08-05;2032-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-30;2032-09-30;2032-09-30;2032-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-25;2032-11-25;2032-11-25;2032-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-20;2033-01-20;2033-01-20;2033-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-17;2033-03-17;2033-03-17;2033-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-12;2033-05-12;2033-05-12;2033-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-07;2033-07-07;2033-07-07;2033-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-01;2033-09-01;2033-09-01;2033-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-27;2033-10-27;2033-10-27;2033-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-22;2033-12-22;2033-12-22;2033-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-16;2034-02-16;2034-02-16;2034-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-13;2034-04-13;2034-04-13;2034-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-08;2034-06-08;2034-06-08;2034-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-03;2034-08-03;2034-08-03;2034-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-28;2034-09-28;2034-09-28;2034-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-23;2034-11-23;2034-11-23;2034-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-18;2035-01-18;2035-01-18;2035-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-15;2035-03-15;2035-03-15;2035-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"COV";"Site Closure";"";"Closure Visit";"";2035-03-15;2035-03-15;2035-03-15;2035-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-10;2035-05-10;2035-05-10;2035-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-05;2035-07-05;2035-07-05;2035-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-30;2035-08-30;2035-08-30;2035-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-25;2035-10-25;2035-10-25;2035-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-20;2035-12-20;2035-12-20;2035-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-14;2036-02-14;2036-02-14;2036-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-10;2036-04-10;2036-04-10;2036-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-05;2036-06-05;2036-06-05;2036-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10007";"DD5-IL10007";"Sbeit";"Wisam";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-31;2036-07-31;2036-07-31;2036-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2026-01-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10008";"DD5-IL10008";"Eran";"Zittan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2026-01-12;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10009";"DD5-IL10009";"Yael";"Haberman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2025-11-30;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-01-19;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;2026-02-19;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10010";"DD5-IL10010";"Dan";"Turner";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-04;2025-12-04;2025-12-04;2025-12-04;2025-11-20;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-01-29;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"COV";"Site Closure";"";"Closure Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10011";"DD5-IL10011";"Shlomi";"Cohen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-08;2025-12-08;2025-12-08;2025-12-08;2025-12-30;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-04-16;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"COV";"Site Closure";"";"Closure Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10012";"DD5-IL10012";"Dror";"Shouval";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2025-11-25;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-02-09;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10013";"DD5-IL10013";"Efrat";"Broide";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2025-12-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"COV";"Site Closure";"";"Closure Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10014";"DD5-IL10014";"Adi";"Lahat-Zok";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2025-11-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-02-09;"Doron";"";"Zinger" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10015";"DD5-IL10015";"Haim";"Shirin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-05-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-11;2026-01-11;2026-01-11;2026-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-08;2026-03-08;2026-03-08;2026-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-03;2026-05-03;2026-05-03;2026-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-28;2026-06-28;2026-06-28;2026-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-23;2026-08-23;2026-08-23;2026-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-18;2026-10-18;2026-10-18;2026-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-13;2026-12-13;2026-12-13;2026-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-07;2027-02-07;2027-02-07;2027-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-04;2027-04-04;2027-04-04;2027-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-30;2027-05-30;2027-05-30;2027-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-25;2027-07-25;2027-07-25;2027-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-19;2027-09-19;2027-09-19;2027-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-14;2027-11-14;2027-11-14;2027-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-09;2028-01-09;2028-01-09;2028-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-05;2028-03-05;2028-03-05;2028-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-30;2028-04-30;2028-04-30;2028-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-25;2028-06-25;2028-06-25;2028-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-20;2028-08-20;2028-08-20;2028-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-15;2028-10-15;2028-10-15;2028-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-10;2028-12-10;2028-12-10;2028-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-04;2029-02-04;2029-02-04;2029-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-01;2029-04-01;2029-04-01;2029-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-27;2029-05-27;2029-05-27;2029-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-22;2029-07-22;2029-07-22;2029-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-16;2029-09-16;2029-09-16;2029-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-11;2029-11-11;2029-11-11;2029-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-06;2030-01-06;2030-01-06;2030-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-03;2030-03-03;2030-03-03;2030-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-28;2030-04-28;2030-04-28;2030-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-23;2030-06-23;2030-06-23;2030-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-18;2030-08-18;2030-08-18;2030-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-13;2030-10-13;2030-10-13;2030-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-08;2030-12-08;2030-12-08;2030-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-02;2031-02-02;2031-02-02;2031-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-30;2031-03-30;2031-03-30;2031-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-25;2031-05-25;2031-05-25;2031-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-20;2031-07-20;2031-07-20;2031-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-14;2031-09-14;2031-09-14;2031-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-09;2031-11-09;2031-11-09;2031-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-04;2032-01-04;2032-01-04;2032-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-29;2032-02-29;2032-02-29;2032-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-25;2032-04-25;2032-04-25;2032-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-20;2032-06-20;2032-06-20;2032-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-15;2032-08-15;2032-08-15;2032-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-10;2032-10-10;2032-10-10;2032-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-05;2032-12-05;2032-12-05;2032-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-30;2033-01-30;2033-01-30;2033-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-27;2033-03-27;2033-03-27;2033-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-22;2033-05-22;2033-05-22;2033-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-17;2033-07-17;2033-07-17;2033-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-11;2033-09-11;2033-09-11;2033-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-06;2033-11-06;2033-11-06;2033-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-01;2034-01-01;2034-01-01;2034-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-26;2034-02-26;2034-02-26;2034-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-23;2034-04-23;2034-04-23;2034-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-18;2034-06-18;2034-06-18;2034-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-13;2034-08-13;2034-08-13;2034-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-08;2034-10-08;2034-10-08;2034-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-03;2034-12-03;2034-12-03;2034-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-28;2035-01-28;2035-01-28;2035-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-25;2035-03-25;2035-03-25;2035-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-20;2035-05-20;2035-05-20;2035-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"COV";"Site Closure";"";"Closure Visit";"";2035-05-20;2035-05-20;2035-05-20;2035-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-15;2035-07-15;2035-07-15;2035-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-09;2035-09-09;2035-09-09;2035-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-04;2035-11-04;2035-11-04;2035-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-30;2035-12-30;2035-12-30;2035-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-24;2036-02-24;2036-02-24;2036-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-20;2036-04-20;2036-04-20;2036-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-15;2036-06-15;2036-06-15;2036-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-10;2036-08-10;2036-08-10;2036-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IL10016";"DD5-IL10016";"Dan";"Keret";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-05;2036-10-05;2036-10-05;2036-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-06-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-31;"Bilal";"";"Mohammad" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"Bilal";"";"Mohammad" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"COV";"Site Closure";"";"Closure Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10001";"DD5-IN10001";"Gourdas";"Choudhuri";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-02;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-06-13;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-06-20;2026-06-20;2026-06-20;2026-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-15;2026-08-15;2026-08-15;2026-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-10;2026-10-10;2026-10-10;2026-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-05;2026-12-05;2026-12-05;2026-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-30;2027-01-30;2027-01-30;2027-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-27;2027-03-27;2027-03-27;2027-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-22;2027-05-22;2027-05-22;2027-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-17;2027-07-17;2027-07-17;2027-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-11;2027-09-11;2027-09-11;2027-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-06;2027-11-06;2027-11-06;2027-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-01;2028-01-01;2028-01-01;2028-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-26;2028-02-26;2028-02-26;2028-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-22;2028-04-22;2028-04-22;2028-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-17;2028-06-17;2028-06-17;2028-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-12;2028-08-12;2028-08-12;2028-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-07;2028-10-07;2028-10-07;2028-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-02;2028-12-02;2028-12-02;2028-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-27;2029-01-27;2029-01-27;2029-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-24;2029-03-24;2029-03-24;2029-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-19;2029-05-19;2029-05-19;2029-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-14;2029-07-14;2029-07-14;2029-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-08;2029-09-08;2029-09-08;2029-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-03;2029-11-03;2029-11-03;2029-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-12-29;2029-12-29;2029-12-29;2029-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-23;2030-02-23;2030-02-23;2030-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-20;2030-04-20;2030-04-20;2030-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-15;2030-06-15;2030-06-15;2030-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-10;2030-08-10;2030-08-10;2030-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-05;2030-10-05;2030-10-05;2030-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-30;2030-11-30;2030-11-30;2030-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-25;2031-01-25;2031-01-25;2031-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-22;2031-03-22;2031-03-22;2031-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-17;2031-05-17;2031-05-17;2031-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-12;2031-07-12;2031-07-12;2031-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-06;2031-09-06;2031-09-06;2031-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-01;2031-11-01;2031-11-01;2031-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-27;2031-12-27;2031-12-27;2031-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-21;2032-02-21;2032-02-21;2032-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-17;2032-04-17;2032-04-17;2032-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-12;2032-06-12;2032-06-12;2032-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-07;2032-08-07;2032-08-07;2032-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-02;2032-10-02;2032-10-02;2032-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-27;2032-11-27;2032-11-27;2032-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-22;2033-01-22;2033-01-22;2033-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-19;2033-03-19;2033-03-19;2033-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-14;2033-05-14;2033-05-14;2033-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-09;2033-07-09;2033-07-09;2033-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-03;2033-09-03;2033-09-03;2033-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-10-29;2033-10-29;2033-10-29;2033-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-24;2033-12-24;2033-12-24;2033-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-18;2034-02-18;2034-02-18;2034-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-15;2034-04-15;2034-04-15;2034-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-10;2034-06-10;2034-06-10;2034-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-05;2034-08-05;2034-08-05;2034-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-30;2034-09-30;2034-09-30;2034-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-25;2034-11-25;2034-11-25;2034-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-20;2035-01-20;2035-01-20;2035-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-17;2035-03-17;2035-03-17;2035-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-12;2035-05-12;2035-05-12;2035-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-01;2035-09-01;2035-09-01;2035-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"COV";"Site Closure";"";"Closure Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-22;2035-12-22;2035-12-22;2035-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-16;2036-02-16;2036-02-16;2036-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-12;2036-04-12;2036-04-12;2036-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-07;2036-06-07;2036-06-07;2036-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-02;2036-08-02;2036-08-02;2036-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-27;2036-09-27;2036-09-27;2036-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-22;2036-11-22;2036-11-22;2036-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-17;2037-01-17;2037-01-17;2037-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10002";"DD5-IN10002";"Vineet";"Ahuja";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-14;2037-03-14;2037-03-14;2037-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-14;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-04-11;2026-04-11;2026-04-11;2026-04-11;;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-06-06;2026-06-06;2026-06-06;2026-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-01;2026-08-01;2026-08-01;2026-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-26;2026-09-26;2026-09-26;2026-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-21;2026-11-21;2026-11-21;2026-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-16;2027-01-16;2027-01-16;2027-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-13;2027-03-13;2027-03-13;2027-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-08;2027-05-08;2027-05-08;2027-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-03;2027-07-03;2027-07-03;2027-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-28;2027-08-28;2027-08-28;2027-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-23;2027-10-23;2027-10-23;2027-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-18;2027-12-18;2027-12-18;2027-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-12;2028-02-12;2028-02-12;2028-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-08;2028-04-08;2028-04-08;2028-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-03;2028-06-03;2028-06-03;2028-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-29;2028-07-29;2028-07-29;2028-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-23;2028-09-23;2028-09-23;2028-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-18;2028-11-18;2028-11-18;2028-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-13;2029-01-13;2029-01-13;2029-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-10;2029-03-10;2029-03-10;2029-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-05;2029-05-05;2029-05-05;2029-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-30;2029-06-30;2029-06-30;2029-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-25;2029-08-25;2029-08-25;2029-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-20;2029-10-20;2029-10-20;2029-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-15;2029-12-15;2029-12-15;2029-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-09;2030-02-09;2030-02-09;2030-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-06;2030-04-06;2030-04-06;2030-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-01;2030-06-01;2030-06-01;2030-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-27;2030-07-27;2030-07-27;2030-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-21;2030-09-21;2030-09-21;2030-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-16;2030-11-16;2030-11-16;2030-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-11;2031-01-11;2031-01-11;2031-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-08;2031-03-08;2031-03-08;2031-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-03;2031-05-03;2031-05-03;2031-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-28;2031-06-28;2031-06-28;2031-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-23;2031-08-23;2031-08-23;2031-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-18;2031-10-18;2031-10-18;2031-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-13;2031-12-13;2031-12-13;2031-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-07;2032-02-07;2032-02-07;2032-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-03;2032-04-03;2032-04-03;2032-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-29;2032-05-29;2032-05-29;2032-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-24;2032-07-24;2032-07-24;2032-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-18;2032-09-18;2032-09-18;2032-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-13;2032-11-13;2032-11-13;2032-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-08;2033-01-08;2033-01-08;2033-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-05;2033-03-05;2033-03-05;2033-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-30;2033-04-30;2033-04-30;2033-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-25;2033-06-25;2033-06-25;2033-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-20;2033-08-20;2033-08-20;2033-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-15;2033-10-15;2033-10-15;2033-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-10;2033-12-10;2033-12-10;2033-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-04;2034-02-04;2034-02-04;2034-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-01;2034-04-01;2034-04-01;2034-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-27;2034-05-27;2034-05-27;2034-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-22;2034-07-22;2034-07-22;2034-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-16;2034-09-16;2034-09-16;2034-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-11;2034-11-11;2034-11-11;2034-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-06;2035-01-06;2035-01-06;2035-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-03;2035-03-03;2035-03-03;2035-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-28;2035-04-28;2035-04-28;2035-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-23;2035-06-23;2035-06-23;2035-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-18;2035-08-18;2035-08-18;2035-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"COV";"Site Closure";"";"Closure Visit";"";2035-08-18;2035-08-18;2035-08-18;2035-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-13;2035-10-13;2035-10-13;2035-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-08;2035-12-08;2035-12-08;2035-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-02;2036-02-02;2036-02-02;2036-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-29;2036-03-29;2036-03-29;2036-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-24;2036-05-24;2036-05-24;2036-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-19;2036-07-19;2036-07-19;2036-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-13;2036-09-13;2036-09-13;2036-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-08;2036-11-08;2036-11-08;2036-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10003";"DD5-IN10003";"Naresh";"Bansal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-03;2037-01-03;2037-01-03;2037-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-08;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-24;2026-02-24;2026-02-24;2026-02-24;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-21;2026-04-21;2026-04-21;2026-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-16;2026-06-16;2026-06-16;2026-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-11;2026-08-11;2026-08-11;2026-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-06;2026-10-06;2026-10-06;2026-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-01;2026-12-01;2026-12-01;2026-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-26;2027-01-26;2027-01-26;2027-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-23;2027-03-23;2027-03-23;2027-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-18;2027-05-18;2027-05-18;2027-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-13;2027-07-13;2027-07-13;2027-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-07;2027-09-07;2027-09-07;2027-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-02;2027-11-02;2027-11-02;2027-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-28;2027-12-28;2027-12-28;2027-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-22;2028-02-22;2028-02-22;2028-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-18;2028-04-18;2028-04-18;2028-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-13;2028-06-13;2028-06-13;2028-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-08;2028-08-08;2028-08-08;2028-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-03;2028-10-03;2028-10-03;2028-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-28;2028-11-28;2028-11-28;2028-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-23;2029-01-23;2029-01-23;2029-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-20;2029-03-20;2029-03-20;2029-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-15;2029-05-15;2029-05-15;2029-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-10;2029-07-10;2029-07-10;2029-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-04;2029-09-04;2029-09-04;2029-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-30;2029-10-30;2029-10-30;2029-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-25;2029-12-25;2029-12-25;2029-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-19;2030-02-19;2030-02-19;2030-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-16;2030-04-16;2030-04-16;2030-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-11;2030-06-11;2030-06-11;2030-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-06;2030-08-06;2030-08-06;2030-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-01;2030-10-01;2030-10-01;2030-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-26;2030-11-26;2030-11-26;2030-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-21;2031-01-21;2031-01-21;2031-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-18;2031-03-18;2031-03-18;2031-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-13;2031-05-13;2031-05-13;2031-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-08;2031-07-08;2031-07-08;2031-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-02;2031-09-02;2031-09-02;2031-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-28;2031-10-28;2031-10-28;2031-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-23;2031-12-23;2031-12-23;2031-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-17;2032-02-17;2032-02-17;2032-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-13;2032-04-13;2032-04-13;2032-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-08;2032-06-08;2032-06-08;2032-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-03;2032-08-03;2032-08-03;2032-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-28;2032-09-28;2032-09-28;2032-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-23;2032-11-23;2032-11-23;2032-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-18;2033-01-18;2033-01-18;2033-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-15;2033-03-15;2033-03-15;2033-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-10;2033-05-10;2033-05-10;2033-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-05;2033-07-05;2033-07-05;2033-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-30;2033-08-30;2033-08-30;2033-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-25;2033-10-25;2033-10-25;2033-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-20;2033-12-20;2033-12-20;2033-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-14;2034-02-14;2034-02-14;2034-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-11;2034-04-11;2034-04-11;2034-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-06;2034-06-06;2034-06-06;2034-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-01;2034-08-01;2034-08-01;2034-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-26;2034-09-26;2034-09-26;2034-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-21;2034-11-21;2034-11-21;2034-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-16;2035-01-16;2035-01-16;2035-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-08;2035-05-08;2035-05-08;2035-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-03;2035-07-03;2035-07-03;2035-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"COV";"Site Closure";"";"Closure Visit";"";2035-07-03;2035-07-03;2035-07-03;2035-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-28;2035-08-28;2035-08-28;2035-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-23;2035-10-23;2035-10-23;2035-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-18;2035-12-18;2035-12-18;2035-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-12;2036-02-12;2036-02-12;2036-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-08;2036-04-08;2036-04-08;2036-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-03;2036-06-03;2036-06-03;2036-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-29;2036-07-29;2036-07-29;2036-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-23;2036-09-23;2036-09-23;2036-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10004";"DD5-IN10004";"Uday Nagesh";"Shivaji";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-18;2036-11-18;2036-11-18;2036-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-14;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-07;2026-03-07;2026-03-07;2026-03-07;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-02;2026-05-02;2026-05-02;2026-05-02;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-27;2026-06-27;2026-06-27;2026-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-22;2026-08-22;2026-08-22;2026-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-17;2026-10-17;2026-10-17;2026-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-12;2026-12-12;2026-12-12;2026-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-06;2027-02-06;2027-02-06;2027-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-03;2027-04-03;2027-04-03;2027-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-29;2027-05-29;2027-05-29;2027-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-24;2027-07-24;2027-07-24;2027-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-18;2027-09-18;2027-09-18;2027-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-13;2027-11-13;2027-11-13;2027-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-08;2028-01-08;2028-01-08;2028-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-04;2028-03-04;2028-03-04;2028-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-29;2028-04-29;2028-04-29;2028-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-24;2028-06-24;2028-06-24;2028-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-19;2028-08-19;2028-08-19;2028-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-14;2028-10-14;2028-10-14;2028-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-09;2028-12-09;2028-12-09;2028-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-03;2029-02-03;2029-02-03;2029-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-31;2029-03-31;2029-03-31;2029-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-26;2029-05-26;2029-05-26;2029-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-21;2029-07-21;2029-07-21;2029-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-15;2029-09-15;2029-09-15;2029-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-10;2029-11-10;2029-11-10;2029-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-05;2030-01-05;2030-01-05;2030-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-02;2030-03-02;2030-03-02;2030-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-27;2030-04-27;2030-04-27;2030-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-22;2030-06-22;2030-06-22;2030-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-17;2030-08-17;2030-08-17;2030-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-12;2030-10-12;2030-10-12;2030-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-07;2030-12-07;2030-12-07;2030-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-01;2031-02-01;2031-02-01;2031-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-29;2031-03-29;2031-03-29;2031-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-24;2031-05-24;2031-05-24;2031-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-19;2031-07-19;2031-07-19;2031-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-13;2031-09-13;2031-09-13;2031-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-08;2031-11-08;2031-11-08;2031-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-03;2032-01-03;2032-01-03;2032-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-28;2032-02-28;2032-02-28;2032-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-24;2032-04-24;2032-04-24;2032-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-19;2032-06-19;2032-06-19;2032-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-14;2032-08-14;2032-08-14;2032-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-09;2032-10-09;2032-10-09;2032-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-04;2032-12-04;2032-12-04;2032-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-29;2033-01-29;2033-01-29;2033-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-26;2033-03-26;2033-03-26;2033-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-21;2033-05-21;2033-05-21;2033-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-16;2033-07-16;2033-07-16;2033-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-10;2033-09-10;2033-09-10;2033-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-05;2033-11-05;2033-11-05;2033-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-31;2033-12-31;2033-12-31;2033-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-25;2034-02-25;2034-02-25;2034-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-22;2034-04-22;2034-04-22;2034-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-17;2034-06-17;2034-06-17;2034-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-12;2034-08-12;2034-08-12;2034-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-07;2034-10-07;2034-10-07;2034-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-02;2034-12-02;2034-12-02;2034-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-27;2035-01-27;2035-01-27;2035-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-24;2035-03-24;2035-03-24;2035-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-19;2035-05-19;2035-05-19;2035-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-14;2035-07-14;2035-07-14;2035-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"COV";"Site Closure";"";"Closure Visit";"";2035-07-14;2035-07-14;2035-07-14;2035-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-08;2035-09-08;2035-09-08;2035-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-03;2035-11-03;2035-11-03;2035-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-29;2035-12-29;2035-12-29;2035-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-23;2036-02-23;2036-02-23;2036-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-19;2036-04-19;2036-04-19;2036-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-14;2036-06-14;2036-06-14;2036-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-09;2036-08-09;2036-08-09;2036-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-04;2036-10-04;2036-10-04;2036-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10005";"DD5-IN10005";"Yogesh";"Batra";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-29;2036-11-29;2036-11-29;2036-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-06-09;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-02-16;"Suraj";"";"Mishra" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-03-20;"Suraj";"";"Mishra" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10006";"DD5-IN10006";"Mayank Vasantlal";"Kabrawala";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-06-09;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-03-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"COV";"Site Closure";"";"Closure Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10007";"DD5-IN10007";"Mukesh ";"Kalla";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-06-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"COV";"Site Closure";"";"Closure Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10008";"DD5-IN10008";"Rupa";"Banerjee";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-05;2036-11-05;2036-11-05;2036-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-08;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"COV";"Site Closure";"";"Closure Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-03;2036-12-03;2036-12-03;2036-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10009";"DD5-IN10009";"Umadevi";"Malladi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-28;2037-01-28;2037-01-28;2037-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-08;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"COV";"Site Closure";"";"Closure Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-16;2036-09-16;2036-09-16;2036-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10010";"DD5-IN10010";"Ravi";"Bagepally";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-11;2036-11-11;2036-11-11;2036-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10011";"DD5-IN10011";"Venugopal";"H G";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-08;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-23;2026-02-23;2026-02-23;2026-02-23;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"COV";"Site Closure";"";"Closure Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-22;2036-09-22;2036-09-22;2036-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10012";"DD5-IN10012";"Kiran Kumar";"Peddi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-17;2036-11-17;2036-11-17;2036-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10013";"DD5-IN10013";"Saurabh";"Kedia";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-15;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-19;2026-02-19;2026-02-19;2026-02-19;2026-03-02;"Suraj";"";"Mishra" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-16;2026-04-16;2026-04-16;2026-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-11;2026-06-11;2026-06-11;2026-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-06;2026-08-06;2026-08-06;2026-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-01;2026-10-01;2026-10-01;2026-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-26;2026-11-26;2026-11-26;2026-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-21;2027-01-21;2027-01-21;2027-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-18;2027-03-18;2027-03-18;2027-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-13;2027-05-13;2027-05-13;2027-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-08;2027-07-08;2027-07-08;2027-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-02;2027-09-02;2027-09-02;2027-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-28;2027-10-28;2027-10-28;2027-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-23;2027-12-23;2027-12-23;2027-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-17;2028-02-17;2028-02-17;2028-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-13;2028-04-13;2028-04-13;2028-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-08;2028-06-08;2028-06-08;2028-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-03;2028-08-03;2028-08-03;2028-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-28;2028-09-28;2028-09-28;2028-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-23;2028-11-23;2028-11-23;2028-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-18;2029-01-18;2029-01-18;2029-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-15;2029-03-15;2029-03-15;2029-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-10;2029-05-10;2029-05-10;2029-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-05;2029-07-05;2029-07-05;2029-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-30;2029-08-30;2029-08-30;2029-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-25;2029-10-25;2029-10-25;2029-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-20;2029-12-20;2029-12-20;2029-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-14;2030-02-14;2030-02-14;2030-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-11;2030-04-11;2030-04-11;2030-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-06;2030-06-06;2030-06-06;2030-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-01;2030-08-01;2030-08-01;2030-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-26;2030-09-26;2030-09-26;2030-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-21;2030-11-21;2030-11-21;2030-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-16;2031-01-16;2031-01-16;2031-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-13;2031-03-13;2031-03-13;2031-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-08;2031-05-08;2031-05-08;2031-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-03;2031-07-03;2031-07-03;2031-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-28;2031-08-28;2031-08-28;2031-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-23;2031-10-23;2031-10-23;2031-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-18;2031-12-18;2031-12-18;2031-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-12;2032-02-12;2032-02-12;2032-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-08;2032-04-08;2032-04-08;2032-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-03;2032-06-03;2032-06-03;2032-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-29;2032-07-29;2032-07-29;2032-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-23;2032-09-23;2032-09-23;2032-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-18;2032-11-18;2032-11-18;2032-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-13;2033-01-13;2033-01-13;2033-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-10;2033-03-10;2033-03-10;2033-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-05;2033-05-05;2033-05-05;2033-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-30;2033-06-30;2033-06-30;2033-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-25;2033-08-25;2033-08-25;2033-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-20;2033-10-20;2033-10-20;2033-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-15;2033-12-15;2033-12-15;2033-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-09;2034-02-09;2034-02-09;2034-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-06;2034-04-06;2034-04-06;2034-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-01;2034-06-01;2034-06-01;2034-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-27;2034-07-27;2034-07-27;2034-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-21;2034-09-21;2034-09-21;2034-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-16;2034-11-16;2034-11-16;2034-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-11;2035-01-11;2035-01-11;2035-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-08;2035-03-08;2035-03-08;2035-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-03;2035-05-03;2035-05-03;2035-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-28;2035-06-28;2035-06-28;2035-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"COV";"Site Closure";"";"Closure Visit";"";2035-06-28;2035-06-28;2035-06-28;2035-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-23;2035-08-23;2035-08-23;2035-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-18;2035-10-18;2035-10-18;2035-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-13;2035-12-13;2035-12-13;2035-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-07;2036-02-07;2036-02-07;2036-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-03;2036-04-03;2036-04-03;2036-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-29;2036-05-29;2036-05-29;2036-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-24;2036-07-24;2036-07-24;2036-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-18;2036-09-18;2036-09-18;2036-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10014";"DD5-IN10014";"Saumin";"Shah";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-13;2036-11-13;2036-11-13;2036-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-30;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-23;2026-03-23;2026-03-23;2026-03-23;2026-03-12;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;2026-04-10;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"COV";"Site Closure";"";"Closure Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-20;2036-10-20;2036-10-20;2036-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10015";"DD5-IN10015";"Devendra";"Desai";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-15;2036-12-15;2036-12-15;2036-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;2025-05-29;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"COV";"Site Closure";"";"Closure Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10016";"DD5-IN10016";"Kayal";"Vizhi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-02;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10017";"DD5-IN10017";"Awanish";"Tewari";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-28;2025-05-28;2025-05-28;2025-05-28;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-03-23;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"COV";"Site Closure";"";"Closure Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10018";"DD5-IN10018";"Ayaskanta";"Singh";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-28;2036-11-28;2036-11-28;2036-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10019";"DD5-IN10019";"Make Naveen";"Chand";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-28;2025-05-28;2025-05-28;2025-05-28;2025-05-30;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-06-03;2025-06-03;2025-06-03;2025-06-03;2025-06-04;"Chetana";"";"Beldar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;2026-03-11;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"COV";"Site Closure";"";"Closure Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-07;2036-11-07;2036-11-07;2036-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10020";"DD5-IN10020";"Mathew";"Philip";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-02;2037-01-02;2037-01-02;2037-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10021";"DD5-IN10021";"Sumit";"Bhatia";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-03;2025-06-03;2025-06-03;2025-06-03;2025-06-04;"Devyani";"";"Yesade" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-06-05;2025-06-05;2025-06-05;2025-06-05;2025-06-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-05-05;2026-05-05;2026-05-05;2026-05-05;2026-03-06;"Bilal";"";"Mohammad" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"Bilal";"";"Mohammad" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"COV";"Site Closure";"";"Closure Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-02;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10022";"DD5-IN10022";"Nitin";"Behl";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-27;2037-01-27;2037-01-27;2037-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-06-05;2025-06-05;2025-06-05;2025-06-05;2025-06-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-04-22;2026-04-22;2026-04-22;2026-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-06-17;2026-06-17;2026-06-17;2026-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-08-12;2026-08-12;2026-08-12;2026-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-07;2026-10-07;2026-10-07;2026-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-02;2026-12-02;2026-12-02;2026-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-27;2027-01-27;2027-01-27;2027-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-24;2027-03-24;2027-03-24;2027-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-19;2027-05-19;2027-05-19;2027-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-14;2027-07-14;2027-07-14;2027-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-09-08;2027-09-08;2027-09-08;2027-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-03;2027-11-03;2027-11-03;2027-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-29;2027-12-29;2027-12-29;2027-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-23;2028-02-23;2028-02-23;2028-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-19;2028-04-19;2028-04-19;2028-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-14;2028-06-14;2028-06-14;2028-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-08-09;2028-08-09;2028-08-09;2028-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-04;2028-10-04;2028-10-04;2028-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-29;2028-11-29;2028-11-29;2028-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-24;2029-01-24;2029-01-24;2029-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-21;2029-03-21;2029-03-21;2029-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-16;2029-05-16;2029-05-16;2029-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-07-11;2029-07-11;2029-07-11;2029-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-05;2029-09-05;2029-09-05;2029-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-31;2029-10-31;2029-10-31;2029-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-26;2029-12-26;2029-12-26;2029-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-20;2030-02-20;2030-02-20;2030-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-17;2030-04-17;2030-04-17;2030-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-06-12;2030-06-12;2030-06-12;2030-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-07;2030-08-07;2030-08-07;2030-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-02;2030-10-02;2030-10-02;2030-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-27;2030-11-27;2030-11-27;2030-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-22;2031-01-22;2031-01-22;2031-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-19;2031-03-19;2031-03-19;2031-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-14;2031-05-14;2031-05-14;2031-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-07-09;2031-07-09;2031-07-09;2031-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-03;2031-09-03;2031-09-03;2031-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-29;2031-10-29;2031-10-29;2031-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-24;2031-12-24;2031-12-24;2031-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-18;2032-02-18;2032-02-18;2032-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-14;2032-04-14;2032-04-14;2032-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-06-09;2032-06-09;2032-06-09;2032-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-04;2032-08-04;2032-08-04;2032-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-29;2032-09-29;2032-09-29;2032-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-24;2032-11-24;2032-11-24;2032-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-19;2033-01-19;2033-01-19;2033-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-16;2033-03-16;2033-03-16;2033-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-05-11;2033-05-11;2033-05-11;2033-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-06;2033-07-06;2033-07-06;2033-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-31;2033-08-31;2033-08-31;2033-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-26;2033-10-26;2033-10-26;2033-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-21;2033-12-21;2033-12-21;2033-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-15;2034-02-15;2034-02-15;2034-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-04-12;2034-04-12;2034-04-12;2034-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-07;2034-06-07;2034-06-07;2034-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-02;2034-08-02;2034-08-02;2034-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-27;2034-09-27;2034-09-27;2034-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-22;2034-11-22;2034-11-22;2034-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-17;2035-01-17;2035-01-17;2035-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-14;2035-03-14;2035-03-14;2035-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-05-09;2035-05-09;2035-05-09;2035-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-04;2035-07-04;2035-07-04;2035-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-29;2035-08-29;2035-08-29;2035-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"COV";"Site Closure";"";"Closure Visit";"";2035-08-29;2035-08-29;2035-08-29;2035-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-24;2035-10-24;2035-10-24;2035-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-19;2035-12-19;2035-12-19;2035-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-02-13;2036-02-13;2036-02-13;2036-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-04-09;2036-04-09;2036-04-09;2036-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-04;2036-06-04;2036-06-04;2036-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-30;2036-07-30;2036-07-30;2036-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-24;2036-09-24;2036-09-24;2036-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-19;2036-11-19;2036-11-19;2036-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10023";"DD5-IN10023";"Ashok";"Dalal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-14;2037-01-14;2037-01-14;2037-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-05;2025-06-05;2025-06-05;2025-06-05;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-06-20;2026-06-20;2026-06-20;2026-06-20;;"Girish";"";"Kondalkar" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-15;2026-08-15;2026-08-15;2026-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-10;2026-10-10;2026-10-10;2026-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-05;2026-12-05;2026-12-05;2026-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-01-30;2027-01-30;2027-01-30;2027-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-27;2027-03-27;2027-03-27;2027-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-22;2027-05-22;2027-05-22;2027-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-17;2027-07-17;2027-07-17;2027-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-11;2027-09-11;2027-09-11;2027-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-06;2027-11-06;2027-11-06;2027-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-01;2028-01-01;2028-01-01;2028-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-26;2028-02-26;2028-02-26;2028-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-22;2028-04-22;2028-04-22;2028-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-17;2028-06-17;2028-06-17;2028-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-12;2028-08-12;2028-08-12;2028-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-07;2028-10-07;2028-10-07;2028-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-02;2028-12-02;2028-12-02;2028-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-27;2029-01-27;2029-01-27;2029-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-24;2029-03-24;2029-03-24;2029-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-19;2029-05-19;2029-05-19;2029-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-14;2029-07-14;2029-07-14;2029-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-08;2029-09-08;2029-09-08;2029-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-03;2029-11-03;2029-11-03;2029-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-12-29;2029-12-29;2029-12-29;2029-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-23;2030-02-23;2030-02-23;2030-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-20;2030-04-20;2030-04-20;2030-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-15;2030-06-15;2030-06-15;2030-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-10;2030-08-10;2030-08-10;2030-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-05;2030-10-05;2030-10-05;2030-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-11-30;2030-11-30;2030-11-30;2030-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-25;2031-01-25;2031-01-25;2031-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-22;2031-03-22;2031-03-22;2031-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-17;2031-05-17;2031-05-17;2031-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-12;2031-07-12;2031-07-12;2031-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-06;2031-09-06;2031-09-06;2031-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-01;2031-11-01;2031-11-01;2031-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-27;2031-12-27;2031-12-27;2031-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-21;2032-02-21;2032-02-21;2032-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-17;2032-04-17;2032-04-17;2032-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-12;2032-06-12;2032-06-12;2032-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-07;2032-08-07;2032-08-07;2032-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-02;2032-10-02;2032-10-02;2032-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-27;2032-11-27;2032-11-27;2032-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-22;2033-01-22;2033-01-22;2033-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-19;2033-03-19;2033-03-19;2033-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-14;2033-05-14;2033-05-14;2033-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-09;2033-07-09;2033-07-09;2033-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-03;2033-09-03;2033-09-03;2033-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-10-29;2033-10-29;2033-10-29;2033-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-24;2033-12-24;2033-12-24;2033-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-18;2034-02-18;2034-02-18;2034-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-15;2034-04-15;2034-04-15;2034-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-10;2034-06-10;2034-06-10;2034-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-05;2034-08-05;2034-08-05;2034-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-09-30;2034-09-30;2034-09-30;2034-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-25;2034-11-25;2034-11-25;2034-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-20;2035-01-20;2035-01-20;2035-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-17;2035-03-17;2035-03-17;2035-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-12;2035-05-12;2035-05-12;2035-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-01;2035-09-01;2035-09-01;2035-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"COV";"Site Closure";"";"Closure Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-22;2035-12-22;2035-12-22;2035-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-16;2036-02-16;2036-02-16;2036-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-12;2036-04-12;2036-04-12;2036-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-07;2036-06-07;2036-06-07;2036-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-02;2036-08-02;2036-08-02;2036-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-27;2036-09-27;2036-09-27;2036-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-22;2036-11-22;2036-11-22;2036-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-17;2037-01-17;2037-01-17;2037-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10024";"DD5-IN10024";"Sudhir";"Kumar";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-14;2037-03-14;2037-03-14;2037-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-06-10;2025-06-10;2025-06-10;2025-06-10;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-04-09;2026-04-09;2026-04-09;2026-04-09;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"COV";"Site Closure";"";"Closure Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-11-06;2036-11-06;2036-11-06;2036-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IN10025";"DD5-IN10025";"Vandana";"Midha";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-01-01;2037-01-01;2037-01-01;2037-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"COV";"Site Closure";"";"Closure Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10001";"DD5-IT10001";"Alessandro";"Armuzzi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2026-01-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-12;2026-02-12;2026-02-12;2026-02-12;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"COV";"Site Closure";"";"Closure Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10002";"DD5-IT10002";"Fabrizio";"Bossa";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10003";"DD5-IT10003";"Flavio";"Caprioli";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-02-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;2026-03-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"COV";"Site Closure";"";"Closure Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10004";"DD5-IT10004";"Silvio";"Danese";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-04-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10005";"DD5-IT10005";"Antonio";"Gasbarrini";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-03-03;2026-03-03;2026-03-03;2026-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-28;2026-04-28;2026-04-28;2026-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"COV";"Site Closure";"";"Closure Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10006";"DD5-IT10006";"Mauro";"Mastronardi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10007";"DD5-IT10007";"Giovanni";"Monteleone";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-25;"Valentina";"";"Riganti" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"COV";"Site Closure";"";"Closure Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10008";"DD5-IT10008";"Lorenzo";"Norsa";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-02;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10009";"DD5-IT10009";"Edoardo Vincenzo";"Savarino";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10010";"DD5-IT10010";"Chiara";"Vigano";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"COV";"Site Closure";"";"Closure Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10011";"DD5-IT10011";"Rita";"Monterubbianesi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10012";"DD5-IT10012";"Davide";"Ribaldone";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-12;2026-02-12;2026-02-12;2026-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"COV";"Site Closure";"";"Closure Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10013";"DD5-IT10013";"Gabriele";"Dragoni";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10014";"DD5-IT10014";"Michele";"Cicala";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10015";"DD5-IT10015";"Giammarco";"Mocci";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-02-18;2026-02-18;2026-02-18;2026-02-18;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-15;2026-04-15;2026-04-15;2026-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-10;2026-06-10;2026-06-10;2026-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-05;2026-08-05;2026-08-05;2026-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-30;2026-09-30;2026-09-30;2026-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-25;2026-11-25;2026-11-25;2026-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-20;2027-01-20;2027-01-20;2027-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-17;2027-03-17;2027-03-17;2027-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-12;2027-05-12;2027-05-12;2027-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-07;2027-07-07;2027-07-07;2027-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-01;2027-09-01;2027-09-01;2027-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-27;2027-10-27;2027-10-27;2027-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-22;2027-12-22;2027-12-22;2027-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-16;2028-02-16;2028-02-16;2028-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-12;2028-04-12;2028-04-12;2028-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-07;2028-06-07;2028-06-07;2028-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-02;2028-08-02;2028-08-02;2028-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-27;2028-09-27;2028-09-27;2028-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-22;2028-11-22;2028-11-22;2028-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-17;2029-01-17;2029-01-17;2029-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-14;2029-03-14;2029-03-14;2029-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-09;2029-05-09;2029-05-09;2029-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-04;2029-07-04;2029-07-04;2029-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-29;2029-08-29;2029-08-29;2029-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-24;2029-10-24;2029-10-24;2029-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-19;2029-12-19;2029-12-19;2029-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-13;2030-02-13;2030-02-13;2030-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-10;2030-04-10;2030-04-10;2030-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-05;2030-06-05;2030-06-05;2030-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-31;2030-07-31;2030-07-31;2030-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-25;2030-09-25;2030-09-25;2030-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-20;2030-11-20;2030-11-20;2030-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-15;2031-01-15;2031-01-15;2031-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-12;2031-03-12;2031-03-12;2031-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-07;2031-05-07;2031-05-07;2031-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-02;2031-07-02;2031-07-02;2031-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-27;2031-08-27;2031-08-27;2031-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-22;2031-10-22;2031-10-22;2031-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-17;2031-12-17;2031-12-17;2031-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-11;2032-02-11;2032-02-11;2032-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-07;2032-04-07;2032-04-07;2032-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-02;2032-06-02;2032-06-02;2032-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-28;2032-07-28;2032-07-28;2032-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-22;2032-09-22;2032-09-22;2032-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-17;2032-11-17;2032-11-17;2032-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-12;2033-01-12;2033-01-12;2033-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-09;2033-03-09;2033-03-09;2033-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-04;2033-05-04;2033-05-04;2033-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-29;2033-06-29;2033-06-29;2033-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-24;2033-08-24;2033-08-24;2033-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-19;2033-10-19;2033-10-19;2033-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-14;2033-12-14;2033-12-14;2033-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-08;2034-02-08;2034-02-08;2034-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-05;2034-04-05;2034-04-05;2034-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-31;2034-05-31;2034-05-31;2034-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-26;2034-07-26;2034-07-26;2034-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-20;2034-09-20;2034-09-20;2034-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-15;2034-11-15;2034-11-15;2034-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-10;2035-01-10;2035-01-10;2035-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-07;2035-03-07;2035-03-07;2035-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-02;2035-05-02;2035-05-02;2035-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"COV";"Site Closure";"";"Closure Visit";"";2035-06-27;2035-06-27;2035-06-27;2035-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-22;2035-08-22;2035-08-22;2035-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-17;2035-10-17;2035-10-17;2035-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-12;2035-12-12;2035-12-12;2035-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-06;2036-02-06;2036-02-06;2036-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-02;2036-04-02;2036-04-02;2036-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-28;2036-05-28;2036-05-28;2036-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-23;2036-07-23;2036-07-23;2036-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-17;2036-09-17;2036-09-17;2036-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10016";"DD5-IT10016";"Fernando";"Rizzello";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-12;2036-11-12;2036-11-12;2036-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-26;2026-03-26;2026-03-26;2026-03-26;2026-02-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-21;2026-05-21;2026-05-21;2026-05-21;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"COV";"Site Closure";"";"Closure Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-IT10017";"DD5-IT10017";"Angela";"Variola";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-23;2036-10-23;2036-10-23;2036-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10001";"DD5-JP10001";"Noriyuki";"Horiki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-06;2026-01-06;2026-01-06;2026-01-06;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2026-02-18;"Takuya";"";"Shirane" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV7";"Monitoring Visit 7";"Completed";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"COV";"Site Closure";"";"Closure Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10002";"DD5-JP10002";"Reiko";"Kunisaki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-08;2025-05-08;2025-05-08;2025-05-08;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-09-25;2025-09-25;2025-09-25;2025-09-25;2025-10-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2025-12-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2025-12-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;2026-02-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"COV";"Site Closure";"";"Closure Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10003";"DD5-JP10003";"Yohei";"Furumoto";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Outside the plan";2025-09-30;2025-09-30;2025-09-30;2025-09-30;2025-11-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2025-12-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;2026-03-11;"Yoshiya";"";"Takaki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;2026-03-27;"Yoshiya";"";"Takaki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"COV";"Site Closure";"";"Closure Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10004";"DD5-JP10004";"Satoshi";"Tanida";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-27;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-30;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-11-26;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2025-12-10;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-01-22;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-02-10;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Within the plan";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-03-19;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10005";"DD5-JP10005";"Yoshifumi";"Ohnishi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-09-22;2025-09-22;2025-09-22;2025-09-22;2025-10-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-10-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;2026-02-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"COV";"Site Closure";"";"Closure Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10006";"DD5-JP10006";"Yohei";"Ono";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10007";"DD5-JP10007";"Katsuyoshi";"Matsuoka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Outside the plan";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Outside the plan";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV5";"Monitoring Visit 5";"Scheduled";"Monitoring Visit";"Within the plan";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10008";"DD5-JP10008";"Ken";"Takeuchi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-23;2025-10-23;2025-10-23;2025-10-23;2025-11-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2025-12-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-12;2026-02-12;2026-02-12;2026-02-12;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;2026-02-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"COV";"Site Closure";"Completed";"Closure Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10009";"DD5-JP10009";"Hiroaki";"Ito";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-11-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2025-11-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2025-12-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-01-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-02-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV7";"Monitoring Visit 7";"Scheduled";"Monitoring Visit";"Within the plan";2026-10-29;2026-10-29;2026-10-29;2026-10-29;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10010";"DD5-JP10010";"Nobuo";"Aoyama";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-11-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2025-12-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-01-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10012";"DD5-JP10012";"Souken";"Sai";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-09-30;2025-09-30;2025-09-30;2025-09-30;2025-10-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2025-11-25;2025-11-20;2025-11-25;2025-11-20;2025-10-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-20;2026-01-14;2026-01-15;2026-01-14;2026-01-14;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-12;2026-03-12;2026-03-12;2026-02-27;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-05-12;2026-05-07;2026-05-07;2026-05-07;2026-03-10;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Outside the plan";2026-07-07;2026-07-02;2026-07-02;2026-07-02;2026-03-26;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-01;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-27;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-22;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-16;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-13;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-08;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-03;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-28;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-23;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-18;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-14;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-09;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-04;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-29;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-24;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-19;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-13;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-10;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-05;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-31;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-25;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-20;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-15;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-12;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-07;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-02;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-27;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-22;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-17;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-11;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-08;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-03;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-29;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-23;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-18;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-13;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-09;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-04;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-29;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-24;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-19;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-14;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-08;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-05;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-31;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-26;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-20;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-15;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-10;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-07;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-02;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-27;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-22;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-17;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-12;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-06;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-03;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-29;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-24;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-18;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-13;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-08;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-04;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-29;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-24;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10013";"DD5-JP10013";"Hiroyuki";"Marusawa";"COV";"Site Closure";"";"Closure Visit";"";2035-02-06;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-27;"Tetsuya";"";"Suzuki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-24;2036-12-24;2036-12-24;2036-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10014";"DD5-JP10014";"Ken";"Sugimoto";"COV";"Site Closure";"";"Closure Visit";"";2037-02-18;2037-02-18;2037-02-18;2037-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-15;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-11;2025-11-11;2025-11-11;2025-11-11;2025-12-15;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-06;2026-01-06;2026-01-06;2026-01-06;2025-12-29;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2026-02-02;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-03-06;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-03-19;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"COV";"Site Closure";"";"Closure Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10015";"DD5-JP10015";"Daisuke";"Watanabe";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-01;2025-10-01;2025-10-01;2025-10-01;2025-10-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-26;2025-11-26;2025-11-26;2025-11-26;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-01-30;"Yoshiya";"";"Takaki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;2026-02-27;"Yoshiya";"";"Takaki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;2026-03-26;"Yoshiya";"";"Takaki" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"COV";"Site Closure";"";"Closure Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10016";"DD5-JP10016";"Toshifumi";"Ashida";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-06-03;2025-06-03;"Risa";"";"Shiraishi" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-04;2025-11-04;2025-11-04;2025-11-04;2025-11-28;"Risa";"";"Shiraishi" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-30;2025-12-30;2025-12-30;2025-12-30;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-24;2026-02-24;2026-02-24;2026-02-24;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-21;2026-04-21;2026-04-21;2026-04-21;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-16;2026-06-16;2026-06-16;2026-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-11;2026-08-11;2026-08-11;2026-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-06;2026-10-06;2026-10-06;2026-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-01;2026-12-01;2026-12-01;2026-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-26;2027-01-26;2027-01-26;2027-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-23;2027-03-23;2027-03-23;2027-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-18;2027-05-18;2027-05-18;2027-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-13;2027-07-13;2027-07-13;2027-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-07;2027-09-07;2027-09-07;2027-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-02;2027-11-02;2027-11-02;2027-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-28;2027-12-28;2027-12-28;2027-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-22;2028-02-22;2028-02-22;2028-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-18;2028-04-18;2028-04-18;2028-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-13;2028-06-13;2028-06-13;2028-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-08;2028-08-08;2028-08-08;2028-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-03;2028-10-03;2028-10-03;2028-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-28;2028-11-28;2028-11-28;2028-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-23;2029-01-23;2029-01-23;2029-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-20;2029-03-20;2029-03-20;2029-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-15;2029-05-15;2029-05-15;2029-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-10;2029-07-10;2029-07-10;2029-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-04;2029-09-04;2029-09-04;2029-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-30;2029-10-30;2029-10-30;2029-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-25;2029-12-25;2029-12-25;2029-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-19;2030-02-19;2030-02-19;2030-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-16;2030-04-16;2030-04-16;2030-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-11;2030-06-11;2030-06-11;2030-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-06;2030-08-06;2030-08-06;2030-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-01;2030-10-01;2030-10-01;2030-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-26;2030-11-26;2030-11-26;2030-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-21;2031-01-21;2031-01-21;2031-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-18;2031-03-18;2031-03-18;2031-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-13;2031-05-13;2031-05-13;2031-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-08;2031-07-08;2031-07-08;2031-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-02;2031-09-02;2031-09-02;2031-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-28;2031-10-28;2031-10-28;2031-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-23;2031-12-23;2031-12-23;2031-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-17;2032-02-17;2032-02-17;2032-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-13;2032-04-13;2032-04-13;2032-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-08;2032-06-08;2032-06-08;2032-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-03;2032-08-03;2032-08-03;2032-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-28;2032-09-28;2032-09-28;2032-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-23;2032-11-23;2032-11-23;2032-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-18;2033-01-18;2033-01-18;2033-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-15;2033-03-15;2033-03-15;2033-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-10;2033-05-10;2033-05-10;2033-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-05;2033-07-05;2033-07-05;2033-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-30;2033-08-30;2033-08-30;2033-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-25;2033-10-25;2033-10-25;2033-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-20;2033-12-20;2033-12-20;2033-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-14;2034-02-14;2034-02-14;2034-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-11;2034-04-11;2034-04-11;2034-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-06;2034-06-06;2034-06-06;2034-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-01;2034-08-01;2034-08-01;2034-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-26;2034-09-26;2034-09-26;2034-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-21;2034-11-21;2034-11-21;2034-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-16;2035-01-16;2035-01-16;2035-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"COV";"Site Closure";"";"Closure Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-08;2035-05-08;2035-05-08;2035-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-03;2035-07-03;2035-07-03;2035-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-28;2035-08-28;2035-08-28;2035-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-23;2035-10-23;2035-10-23;2035-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-18;2035-12-18;2035-12-18;2035-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-12;2036-02-12;2036-02-12;2036-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-08;2036-04-08;2036-04-08;2036-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-03;2036-06-03;2036-06-03;2036-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10018";"DD5-JP10018";"Taro";"Osada";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-29;2036-07-29;2036-07-29;2036-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10019";"DD5-JP10019";"Shuhei";"Hosomi";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2025-11-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2025-12-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-02-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10020";"DD5-JP10020";"Satoshi";"Motoya";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-07;2025-10-07;2025-10-07;2025-10-07;2025-10-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-02;2025-12-02;2025-12-02;2025-12-02;2025-11-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2025-12-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Outside the plan";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;2026-04-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"COV";"Site Closure";"";"Closure Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10021";"DD5-JP10021";"Sho";"Takagi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-03;2025-10-03;2025-10-03;2025-10-03;2025-10-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-04-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10022";"DD5-JP10022";"Osamu";"Zaha";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10023";"DD5-JP10023";"Yuichiro";"Kojima";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-06-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-09-30;2025-09-30;2025-09-30;2025-09-30;2025-10-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Outside the plan";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2025-11-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Outside the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-17;2026-03-17;2026-03-17;2026-03-17;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"COV";"Site Closure";"";"Closure Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10024";"DD5-JP10024";"Yasuo";"Suzuki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-27;2026-02-27;2026-02-27;2026-02-27;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"COV";"Site Closure";"";"Closure Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10025";"DD5-JP10025";"Yoichi";"Kakuta";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-26;2036-09-26;2036-09-26;2036-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-09-16;2025-09-16;2025-09-16;2025-09-16;2025-09-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-11;2025-11-11;2025-11-11;2025-11-11;2025-10-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-06;2026-01-06;2026-01-06;2026-01-06;2025-11-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV7";"Monitoring Visit 7";"Completed";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV8";"Monitoring Visit 8";"Completed";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV9";"Monitoring Visit 9";"Completed";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;2026-04-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV10";"Monitoring Visit 10";"Completed";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"COV";"Site Closure";"";"Closure Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10026";"DD5-JP10026";"Yugo";"Takaki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10027";"DD5-JP10027";"Motohiro";"Esaki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-09;2025-12-09;2025-12-09;2025-12-09;2026-01-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2026-02-03;2026-02-03;2026-02-03;2026-02-03;2026-02-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-31;2026-03-31;2026-03-31;2026-03-31;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-26;2026-05-26;2026-05-26;2026-05-26;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"COV";"Site Closure";"";"Closure Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10028";"DD5-JP10028";"Yoki";"Furuta";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-03;2025-10-03;2025-10-03;2025-10-03;2025-10-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2025-11-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2025-12-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-05-15;2026-05-15;2026-05-15;2026-05-15;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Within the plan";2026-07-10;2026-07-10;2026-07-10;2026-07-10;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"Within the plan";2026-09-04;2026-09-04;2026-09-04;2026-09-04;2026-03-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV7";"Monitoring Visit 7";"Completed";"Monitoring Visit";"Within the plan";2026-10-30;2026-10-30;2026-10-30;2026-10-30;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10029";"DD5-JP10029";"Masaki";"Yamashita";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-14;2025-11-14;2025-11-14;2025-11-14;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2026-02-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"COV";"Site Closure";"";"Closure Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10030";"DD5-JP10030";"Shinichiro";"Shinzaki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-04;2025-11-04;2025-11-04;2025-11-04;2025-11-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-30;2025-12-30;2025-12-30;2025-12-30;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-24;2026-02-24;2026-02-24;2026-02-24;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-21;2026-04-21;2026-04-21;2026-04-21;2026-02-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-16;2026-06-16;2026-06-16;2026-06-16;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-08-11;2026-08-11;2026-08-11;2026-08-11;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-06;2026-10-06;2026-10-06;2026-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-01;2026-12-01;2026-12-01;2026-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-26;2027-01-26;2027-01-26;2027-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-23;2027-03-23;2027-03-23;2027-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-18;2027-05-18;2027-05-18;2027-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-13;2027-07-13;2027-07-13;2027-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-07;2027-09-07;2027-09-07;2027-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-02;2027-11-02;2027-11-02;2027-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-28;2027-12-28;2027-12-28;2027-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-22;2028-02-22;2028-02-22;2028-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-18;2028-04-18;2028-04-18;2028-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-13;2028-06-13;2028-06-13;2028-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-08;2028-08-08;2028-08-08;2028-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-03;2028-10-03;2028-10-03;2028-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-28;2028-11-28;2028-11-28;2028-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-23;2029-01-23;2029-01-23;2029-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-20;2029-03-20;2029-03-20;2029-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-15;2029-05-15;2029-05-15;2029-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-10;2029-07-10;2029-07-10;2029-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-04;2029-09-04;2029-09-04;2029-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-30;2029-10-30;2029-10-30;2029-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-25;2029-12-25;2029-12-25;2029-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-19;2030-02-19;2030-02-19;2030-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-16;2030-04-16;2030-04-16;2030-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-11;2030-06-11;2030-06-11;2030-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-06;2030-08-06;2030-08-06;2030-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-01;2030-10-01;2030-10-01;2030-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-26;2030-11-26;2030-11-26;2030-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-21;2031-01-21;2031-01-21;2031-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-18;2031-03-18;2031-03-18;2031-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-13;2031-05-13;2031-05-13;2031-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-08;2031-07-08;2031-07-08;2031-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-02;2031-09-02;2031-09-02;2031-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-28;2031-10-28;2031-10-28;2031-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-23;2031-12-23;2031-12-23;2031-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-17;2032-02-17;2032-02-17;2032-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-13;2032-04-13;2032-04-13;2032-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-08;2032-06-08;2032-06-08;2032-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-03;2032-08-03;2032-08-03;2032-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-28;2032-09-28;2032-09-28;2032-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-23;2032-11-23;2032-11-23;2032-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-18;2033-01-18;2033-01-18;2033-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-15;2033-03-15;2033-03-15;2033-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-10;2033-05-10;2033-05-10;2033-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-05;2033-07-05;2033-07-05;2033-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-30;2033-08-30;2033-08-30;2033-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-25;2033-10-25;2033-10-25;2033-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-20;2033-12-20;2033-12-20;2033-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-14;2034-02-14;2034-02-14;2034-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-11;2034-04-11;2034-04-11;2034-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-06;2034-06-06;2034-06-06;2034-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-01;2034-08-01;2034-08-01;2034-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-26;2034-09-26;2034-09-26;2034-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-21;2034-11-21;2034-11-21;2034-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-16;2035-01-16;2035-01-16;2035-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"COV";"Site Closure";"";"Closure Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-08;2035-05-08;2035-05-08;2035-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-03;2035-07-03;2035-07-03;2035-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-28;2035-08-28;2035-08-28;2035-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-23;2035-10-23;2035-10-23;2035-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-18;2035-12-18;2035-12-18;2035-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-12;2036-02-12;2036-02-12;2036-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-08;2036-04-08;2036-04-08;2036-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-03;2036-06-03;2036-06-03;2036-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10031";"DD5-JP10031";"Yoh";"Ishiguro";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-29;2036-07-29;2036-07-29;2036-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-28;2025-10-28;2025-10-28;2025-10-28;2025-11-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-23;2025-12-23;2025-12-23;2025-12-23;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-14;2026-04-14;2026-04-14;2026-04-14;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-09;2026-06-09;2026-06-09;2026-06-09;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-08-04;2026-08-04;2026-08-04;2026-08-04;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"COV";"Site Closure";"";"Closure Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10032";"DD5-JP10032";"Hiroyasu";"Ishida";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10033";"DD5-JP10033";"Toshiro";"Kamoshida";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2025-11-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-29;2025-12-29;2025-12-29;2025-12-29;2025-12-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Outside the plan";2026-02-23;2026-02-23;2026-02-23;2026-02-23;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;2026-02-20;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-06-15;2026-06-15;2026-06-15;2026-06-15;2026-03-25;"Eri";"";"Ujiie" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10034";"DD5-JP10034";"Kenkei";"Hasatani";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10035";"DD5-JP10035";"Shingo";"Kato";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10036";"DD5-JP10036";"Hiroki";"Tanaka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-21;2025-11-21;2025-11-21;2025-11-21;2025-12-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-09-26;2025-11-29;2025-09-26;2025-11-29;2025-10-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-16;2026-02-28;2026-01-16;2026-02-28;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"COV";"Site Closure";"";"Closure Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10037";"DD5-JP10037";"Tetsuya";"Ueo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10038";"DD5-JP10038";"Takayoshi";"Suzuki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10039";"DD5-JP10039";"Junichi";"Akiyama";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10040";"DD5-JP10040";"Masayuki";"Fukata";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10041";"DD5-JP10041";"Kenji";"Hosoi";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10042";"DD5-JP10042";"Kunio";"Asonuma";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-12;2025-12-12;2025-12-12;2025-12-12;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"COV";"Site Closure";"";"Closure Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10043";"DD5-JP10043";"Tadakazu";"Hisamatsu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10044";"DD5-JP10044";"Koichi";"Nakajima";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10045";"DD5-JP10045";"Ken";"Yamashita";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-03;"Risa";"";"Shiraishi" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-09-30;2025-09-30;2025-09-30;2025-09-30;2025-10-21;"Risa";"";"Shiraishi" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-20;2026-01-20;2026-01-20;2026-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-17;2026-03-17;2026-03-17;2026-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"COV";"Site Closure";"";"Closure Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10046";"DD5-JP10046";"Takashi";"Kagaya";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10047";"DD5-JP10047";"Makoto";"Naganuma";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-28;2025-10-28;2025-10-28;2025-10-28;2025-11-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-23;2025-12-23;2025-12-23;2025-12-23;2025-12-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-17;2026-02-17;2026-02-17;2026-02-17;2026-01-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-04-14;2026-04-14;2026-04-14;2026-04-14;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-06-09;2026-06-09;2026-06-09;2026-06-09;2026-03-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Within the plan";2026-08-04;2026-08-04;2026-08-04;2026-08-04;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-29;2026-09-29;2026-09-29;2026-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-24;2026-11-24;2026-11-24;2026-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-19;2027-01-19;2027-01-19;2027-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-16;2027-03-16;2027-03-16;2027-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-11;2027-05-11;2027-05-11;2027-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-06;2027-07-06;2027-07-06;2027-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-31;2027-08-31;2027-08-31;2027-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-26;2027-10-26;2027-10-26;2027-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-21;2027-12-21;2027-12-21;2027-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-15;2028-02-15;2028-02-15;2028-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-11;2028-04-11;2028-04-11;2028-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-06;2028-06-06;2028-06-06;2028-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-01;2028-08-01;2028-08-01;2028-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-26;2028-09-26;2028-09-26;2028-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-21;2028-11-21;2028-11-21;2028-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-16;2029-01-16;2029-01-16;2029-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-13;2029-03-13;2029-03-13;2029-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-08;2029-05-08;2029-05-08;2029-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-03;2029-07-03;2029-07-03;2029-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-28;2029-08-28;2029-08-28;2029-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-23;2029-10-23;2029-10-23;2029-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-18;2029-12-18;2029-12-18;2029-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-12;2030-02-12;2030-02-12;2030-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-09;2030-04-09;2030-04-09;2030-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-04;2030-06-04;2030-06-04;2030-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-30;2030-07-30;2030-07-30;2030-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-24;2030-09-24;2030-09-24;2030-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-19;2030-11-19;2030-11-19;2030-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-14;2031-01-14;2031-01-14;2031-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-11;2031-03-11;2031-03-11;2031-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-06;2031-05-06;2031-05-06;2031-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-01;2031-07-01;2031-07-01;2031-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-26;2031-08-26;2031-08-26;2031-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-21;2031-10-21;2031-10-21;2031-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-16;2031-12-16;2031-12-16;2031-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-10;2032-02-10;2032-02-10;2032-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-06;2032-04-06;2032-04-06;2032-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-01;2032-06-01;2032-06-01;2032-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-27;2032-07-27;2032-07-27;2032-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-21;2032-09-21;2032-09-21;2032-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-16;2032-11-16;2032-11-16;2032-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-11;2033-01-11;2033-01-11;2033-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-08;2033-03-08;2033-03-08;2033-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-03;2033-05-03;2033-05-03;2033-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-28;2033-06-28;2033-06-28;2033-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-23;2033-08-23;2033-08-23;2033-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-18;2033-10-18;2033-10-18;2033-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-13;2033-12-13;2033-12-13;2033-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-07;2034-02-07;2034-02-07;2034-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-04;2034-04-04;2034-04-04;2034-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-30;2034-05-30;2034-05-30;2034-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-25;2034-07-25;2034-07-25;2034-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-19;2034-09-19;2034-09-19;2034-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-14;2034-11-14;2034-11-14;2034-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-09;2035-01-09;2035-01-09;2035-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"COV";"Site Closure";"";"Closure Visit";"";2035-03-06;2035-03-06;2035-03-06;2035-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-01;2035-05-01;2035-05-01;2035-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-26;2035-06-26;2035-06-26;2035-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-21;2035-08-21;2035-08-21;2035-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-16;2035-10-16;2035-10-16;2035-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-11;2035-12-11;2035-12-11;2035-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-05;2036-02-05;2036-02-05;2036-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-01;2036-04-01;2036-04-01;2036-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-27;2036-05-27;2036-05-27;2036-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10048";"DD5-JP10048";"Yuko";"Sakakibara";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-22;2036-07-22;2036-07-22;2036-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-30;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-26;2025-11-26;2025-11-26;2025-11-26;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;2026-02-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"COV";"Site Closure";"";"Closure Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10049";"DD5-JP10049";"Hirofumi";"Okafuji";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-28;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-24;2025-12-26;2025-11-24;2026-01-09;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10050";"DD5-JP10050";"Tatsuyuki";"Watanabe";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-23;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Outside the plan";2025-12-01;2025-12-01;2025-12-01;2025-12-01;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-01-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10051";"DD5-JP10051";"Shinichiro";"Yoshioka";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-23;"Takuya";"";"Nishino" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-03;2025-10-03;2025-10-03;2025-10-03;2025-11-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-01-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10052";"DD5-JP10052";"Toshiaki";"Ochiai";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2025-12-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;2026-02-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;2026-03-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10053";"DD5-JP10053";"Shota";"Takano";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10054";"DD5-JP10054";"Kayoko";"Matsushima";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-12-06;2025-12-06;2025-12-06;2025-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10055";"DD5-JP10055";"Tomoki";"Inaba";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-12-06;2025-12-06;2025-12-06;2025-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-JP10056";"DD5-JP10056";"Koichiro";"Matsuda";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-08;2026-01-13;2026-01-08;2026-01-13;2026-01-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-05;2026-03-10;2026-03-10;2026-03-10;2026-02-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-30;2026-05-05;2026-05-05;2026-05-05;2026-03-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-06-25;2026-06-30;2026-06-30;2026-06-30;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-08-20;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-15;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-10;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-04;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-01;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-27;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-22;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-16;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-11;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-06;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-02;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-27;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-22;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-17;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-12;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-07;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-01;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-29;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-24;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-19;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-13;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-08;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-03;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-28;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-25;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-20;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-15;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-10;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-05;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-30;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-27;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-22;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-17;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-11;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-06;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-01;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-26;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-22;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-17;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-12;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-07;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-02;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-27;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-24;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-19;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-14;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-08;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-03;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-29;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-23;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-20;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-15;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-10;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-05;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-30;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-25;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-22;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-17;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-12;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-06;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-01;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-27;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-21;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-17;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-12;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-07;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-02;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10001";"DD5-KR10001";"YoungHo";"Kim";"COV";"Site Closure";"";"Closure Visit";"";2035-05-17;2036-12-02;2036-12-02;2036-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-14;2026-01-23;2026-01-14;2026-01-23;2026-01-23;"Heujin";"";"Kim" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-11;2026-03-20;2026-03-20;2026-03-20;2026-02-23;"Heujin";"";"Kim" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-06;2026-05-15;2026-05-15;2026-05-15;2026-03-27;"Heujin";"";"Kim" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10002";"DD5-KR10002";"Dong Il";"Park";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2036-12-12;2036-12-12;2036-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-22;2026-01-30;2026-01-22;2026-01-30;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-27;2026-03-27;2026-03-27;2026-02-25;"Sohyeon";"";"Kim" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-22;2026-05-22;2026-05-22;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-09;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-03;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-29;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-24;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-18;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-15;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-10;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-05;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-30;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-25;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-20;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-16;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-11;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-06;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-31;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-26;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-21;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-15;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-12;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-07;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-02;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-27;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-22;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-17;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-14;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-09;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-04;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-29;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-24;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-19;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-13;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-10;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-05;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-31;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-25;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-20;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-15;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-11;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-06;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-01;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-26;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-21;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-16;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-10;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-07;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-02;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-28;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-22;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-17;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-12;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-09;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-04;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-29;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-24;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-19;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-14;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-08;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-05;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-31;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-26;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-20;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-15;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-10;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-06;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-01;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-26;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-21;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-16;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10003";"DD5-KR10003";"Kang Moon";"Lee";"COV";"Site Closure";"";"Closure Visit";"";2035-05-31;2036-12-19;2036-12-19;2036-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-30;2026-02-09;2026-01-30;2026-02-09;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-03-27;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-11-03;2036-11-03;2036-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10004";"DD5-KR10004";"Sang-Bum";"Kang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2036-12-29;2036-12-29;2036-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-16;2026-02-06;2026-01-16;2026-02-06;2026-02-06;"Heujin";"";"Kim" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"COV";"Site Closure";"";"Closure Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10005";"DD5-KR10005";"Byung Ik";"Jang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-25;2026-03-25;2026-03-25;2026-03-25;2026-04-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"COV";"Site Closure";"";"Closure Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10006";"DD5-KR10006";"Changkyun";"Lee";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-22;2036-10-22;2036-10-22;2036-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-30;2026-03-30;2026-03-30;2026-03-30;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-25;2026-05-25;2026-05-25;2026-05-25;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"COV";"Site Closure";"";"Closure Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10007";"DD5-KR10007";"JaeHee";"Cheon";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-27;2036-10-27;2036-10-27;2036-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-01-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-02-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-27;2026-05-27;2026-05-27;2026-05-27;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-07-22;2026-07-22;2026-07-22;2026-07-22;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"COV";"Site Closure";"";"Closure Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10008";"DD5-KR10008";"Jaeyoung";"Chun";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-06;2026-01-06;2026-01-06;2026-01-06;2026-01-21;"Hakyung";"";"Choi" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2026-03-03;2026-03-03;2026-03-03;2026-03-03;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-04-28;2026-04-28;2026-04-28;2026-04-28;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-06-23;2026-06-23;2026-06-23;2026-06-23;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"COV";"Site Closure";"";"Closure Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10009";"DD5-KR10009";"ByongDuk";"Ye";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2026-03-18;2026-03-18;2026-03-18;2026-03-18;2026-02-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;2026-03-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"COV";"Site Closure";"";"Closure Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10010";"DD5-KR10010";"Seongjoon";"Koh";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-15;2036-10-15;2036-10-15;2036-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-03-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"COV";"Site Closure";"";"Closure Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-KR10011";"DD5-KR10011";"Taeoh";"Kim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-09;2036-10-09;2036-10-09;2036-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2025-12-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-02-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"COV";"Site Closure";"";"Closure Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10001";"DD5-MY10001";"Ida Normiha";"Hilmi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-15;2025-10-15;2025-10-15;;2025-10-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2025-11-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10002";"DD5-MY10002";"Rosaida";"Hj. Md. Said";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10003";"DD5-MY10003";"Rasnaizam";"Rasdi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-10-22;2025-10-22;2025-10-22;2025-10-22;2025-10-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2025-12-17;2025-12-17;2025-12-17;2025-12-17;2026-02-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;2026-04-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"COV";"Site Closure";"";"Closure Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10004";"DD5-MY10004";"Zalwani";"Zainuddin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10005";"DD5-MY10005";"Nik Arsyad";"Nik Muhamad Affendi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-11-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-01-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10006";"DD5-MY10006";"Nik Razima";"Wan Ibrahim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-15;2025-10-15;2025-10-15;2025-10-15;2025-10-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2025-11-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"COV";"Site Closure";"";"Closure Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10007";"DD5-MY10007";"Mohd Fairul";"Limun";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-30;2025-10-30;2025-10-30;2025-10-30;2025-11-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-25;2025-12-25;2025-12-25;2025-12-25;2026-02-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-19;2026-02-19;2026-02-19;2026-02-19;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-16;2026-04-16;2026-04-16;2026-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-11;2026-06-11;2026-06-11;2026-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-06;2026-08-06;2026-08-06;2026-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-01;2026-10-01;2026-10-01;2026-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-26;2026-11-26;2026-11-26;2026-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-21;2027-01-21;2027-01-21;2027-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-18;2027-03-18;2027-03-18;2027-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-13;2027-05-13;2027-05-13;2027-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-08;2027-07-08;2027-07-08;2027-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-02;2027-09-02;2027-09-02;2027-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-28;2027-10-28;2027-10-28;2027-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-23;2027-12-23;2027-12-23;2027-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-17;2028-02-17;2028-02-17;2028-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-13;2028-04-13;2028-04-13;2028-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-08;2028-06-08;2028-06-08;2028-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-03;2028-08-03;2028-08-03;2028-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-28;2028-09-28;2028-09-28;2028-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-23;2028-11-23;2028-11-23;2028-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-18;2029-01-18;2029-01-18;2029-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-15;2029-03-15;2029-03-15;2029-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-10;2029-05-10;2029-05-10;2029-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-05;2029-07-05;2029-07-05;2029-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-30;2029-08-30;2029-08-30;2029-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-25;2029-10-25;2029-10-25;2029-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-20;2029-12-20;2029-12-20;2029-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-14;2030-02-14;2030-02-14;2030-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-11;2030-04-11;2030-04-11;2030-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-06;2030-06-06;2030-06-06;2030-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-01;2030-08-01;2030-08-01;2030-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-26;2030-09-26;2030-09-26;2030-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-21;2030-11-21;2030-11-21;2030-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-16;2031-01-16;2031-01-16;2031-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-13;2031-03-13;2031-03-13;2031-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-08;2031-05-08;2031-05-08;2031-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-03;2031-07-03;2031-07-03;2031-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-28;2031-08-28;2031-08-28;2031-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-23;2031-10-23;2031-10-23;2031-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-18;2031-12-18;2031-12-18;2031-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-12;2032-02-12;2032-02-12;2032-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-08;2032-04-08;2032-04-08;2032-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-03;2032-06-03;2032-06-03;2032-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-29;2032-07-29;2032-07-29;2032-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-23;2032-09-23;2032-09-23;2032-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-18;2032-11-18;2032-11-18;2032-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-13;2033-01-13;2033-01-13;2033-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-10;2033-03-10;2033-03-10;2033-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-05;2033-05-05;2033-05-05;2033-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-30;2033-06-30;2033-06-30;2033-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-25;2033-08-25;2033-08-25;2033-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-20;2033-10-20;2033-10-20;2033-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-15;2033-12-15;2033-12-15;2033-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-09;2034-02-09;2034-02-09;2034-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-06;2034-04-06;2034-04-06;2034-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-01;2034-06-01;2034-06-01;2034-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-27;2034-07-27;2034-07-27;2034-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-21;2034-09-21;2034-09-21;2034-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-16;2034-11-16;2034-11-16;2034-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-11;2035-01-11;2035-01-11;2035-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-08;2035-03-08;2035-03-08;2035-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"COV";"Site Closure";"";"Closure Visit";"";2035-03-08;2035-03-08;2035-03-08;2035-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-03;2035-05-03;2035-05-03;2035-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-28;2035-06-28;2035-06-28;2035-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-23;2035-08-23;2035-08-23;2035-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-18;2035-10-18;2035-10-18;2035-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-13;2035-12-13;2035-12-13;2035-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-07;2036-02-07;2036-02-07;2036-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-03;2036-04-03;2036-04-03;2036-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-29;2036-05-29;2036-05-29;2036-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10008";"DD5-MY10008";"Selva Yuwaraj";"Vadioaloo";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-24;2036-07-24;2036-07-24;2036-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10009";"DD5-MY10009";"Mohd Fairul";"Limun";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10010";"DD5-MY10010";"Mahendra Raj";"Sundramoorthy";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-MY10011";"DD5-MY10011";"Choy Chen";"Kam";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10001";"DD5-NL10001";"Robert";"Laheij";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"SIV";"Site Initiation";"";"Initiation Visit";"Within the plan";2026-01-26;2026-01-26;2026-01-26;2026-01-26;2026-01-21;"Julie";"";"Pinoy" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"COV";"Site Closure";"";"Closure Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10002";"DD5-NL10002";"Steven";"Jeuring";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-20;2036-10-20;2036-10-20;2036-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10003";"DD5-NL10003";"Meike";"Hirdes";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"COV";"Site Closure";"";"Closure Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10004";"DD5-NL10004";"Geert";"D'Haens";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"SIV";"Site Initiation";"Planned";"Initiation Visit";"";2026-01-07;2026-01-28;2026-01-07;2026-01-28;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-04-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-29;2026-04-29;2026-04-29;2026-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"COV";"Site Closure";"";"Closure Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10005";"DD5-NL10005";"Marjolijn";"Duijvestein";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-01;2036-10-01;2036-10-01;2036-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10006";"DD5-NL10006";"Herma";"Fidder";"SQV";"Qualification Visit";"Not applicable";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-21;2025-06-21;2025-06-21;2025-06-21;2025-06-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"COV";"Site Closure";"";"Closure Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NL10007";"DD5-NL10007";"Geert";"D'Haens";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10001";"DD5-NO10001";"Øistein";"Hovde";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-05-22;2025-04-15;2025-05-22;2025-05-22;"Mira";"";"Holopainen" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10002";"DD5-NO10002";"Petr";"Ricanek";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10003";"DD5-NO10003";"Marte Lie";"Hoivik";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10004";"DD5-NO10004";"Kim";"Nylund";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10005";"DD5-NO10005";"Tore Bjorn";"Grimstad";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10006";"DD5-NO10006";"Lina";"Helle";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10007";"DD5-NO10007";"Rasmus";"Goll";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10008";"DD5-NO10008";"Ann Elisabeth";"Ostvik";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NO10009";"DD5-NO10009";"Stephan";"Brackmann";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-16;2025-05-20;2025-04-16;2025-05-20;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10001";"DD5-NZ10001";"David";"Rowbotham";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10002";"DD5-NZ10002";"Michael";"Schultz";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10003";"DD5-NZ10003";"Melissa";"Haines";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10004";"DD5-NZ10004";"Paul";"Hamilton";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10005";"DD5-NZ10005";"Vivek";"Tharayil";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-NZ10006";"DD5-NZ10006";"Stephen";"Inns";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-06;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-07;2025-11-07;2025-11-07;2025-11-07;2025-12-30;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2026-02-03;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-27;2026-02-27;2026-02-27;2026-02-27;2026-03-02;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-04-24;2026-04-24;2026-04-24;2026-04-24;2026-04-09;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"COV";"Site Closure";"";"Closure Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10001";"DD5-PL10001";"Jaroslaw";"Kierkus";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-07;2025-11-07;2025-11-07;2025-11-07;2025-12-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-27;2026-02-27;2026-02-27;2026-02-27;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"COV";"Site Closure";"";"Closure Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10002";"DD5-PL10002";"Maria";"Klopocka";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10003";"DD5-PL10003";"Jaroslaw";"Leszczyszyn";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-06;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-10;2025-11-10;2025-11-10;2025-11-10;2026-01-21;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-05;2026-01-05;2026-01-05;2026-01-05;2026-04-07;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-02;2026-03-02;2026-03-02;2026-03-02;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-04-27;2026-04-27;2026-04-27;2026-04-27;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"COV";"Site Closure";"";"Closure Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10004";"DD5-PL10004";"Rafal";"Filip";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-12;2025-11-12;2025-11-12;2025-11-12;2026-01-12;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-07;2026-01-07;2026-01-07;2026-01-07;2026-02-04;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-04-02;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-04-29;2026-04-29;2026-04-29;2026-04-29;2026-04-24;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"COV";"Site Closure";"";"Closure Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10005";"DD5-PL10005";"Marcin";"Zmudzinski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-05;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-12;2025-11-12;2025-11-12;2025-11-12;2025-12-15;"Martyna";"";"Bogacz" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-07;2026-01-07;2026-01-07;2026-01-07;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-29;2026-04-29;2026-04-29;2026-04-29;2026-02-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"COV";"Site Closure";"";"Closure Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10006";"DD5-PL10006";"Monika";"Augustyn";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-11;"Magdalena";"";"Bednarowicz" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-12;2025-11-12;2025-11-12;2025-11-12;2025-12-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-07;2026-01-07;2026-01-07;2026-01-07;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-04;2026-03-04;2026-03-04;2026-03-04;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-04-29;2026-04-29;2026-04-29;2026-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV4";"Monitoring Visit 4";"Planned";"Monitoring Visit";"";2026-06-24;2026-06-24;2026-06-24;2026-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-19;2026-08-19;2026-08-19;2026-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-14;2026-10-14;2026-10-14;2026-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-09;2026-12-09;2026-12-09;2026-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-03;2027-02-03;2027-02-03;2027-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-31;2027-03-31;2027-03-31;2027-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-26;2027-05-26;2027-05-26;2027-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-21;2027-07-21;2027-07-21;2027-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-15;2027-09-15;2027-09-15;2027-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-10;2027-11-10;2027-11-10;2027-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-05;2028-01-05;2028-01-05;2028-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-01;2028-03-01;2028-03-01;2028-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-26;2028-04-26;2028-04-26;2028-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-21;2028-06-21;2028-06-21;2028-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-16;2028-08-16;2028-08-16;2028-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-11;2028-10-11;2028-10-11;2028-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-06;2028-12-06;2028-12-06;2028-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-31;2029-01-31;2029-01-31;2029-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-28;2029-03-28;2029-03-28;2029-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-23;2029-05-23;2029-05-23;2029-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-18;2029-07-18;2029-07-18;2029-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-12;2029-09-12;2029-09-12;2029-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-07;2029-11-07;2029-11-07;2029-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-02;2030-01-02;2030-01-02;2030-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-27;2030-02-27;2030-02-27;2030-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-24;2030-04-24;2030-04-24;2030-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-19;2030-06-19;2030-06-19;2030-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-14;2030-08-14;2030-08-14;2030-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-09;2030-10-09;2030-10-09;2030-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-04;2030-12-04;2030-12-04;2030-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-29;2031-01-29;2031-01-29;2031-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-26;2031-03-26;2031-03-26;2031-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-21;2031-05-21;2031-05-21;2031-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-16;2031-07-16;2031-07-16;2031-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-10;2031-09-10;2031-09-10;2031-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-05;2031-11-05;2031-11-05;2031-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-31;2031-12-31;2031-12-31;2031-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-25;2032-02-25;2032-02-25;2032-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-21;2032-04-21;2032-04-21;2032-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-16;2032-06-16;2032-06-16;2032-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-11;2032-08-11;2032-08-11;2032-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-06;2032-10-06;2032-10-06;2032-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-01;2032-12-01;2032-12-01;2032-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-26;2033-01-26;2033-01-26;2033-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-23;2033-03-23;2033-03-23;2033-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-18;2033-05-18;2033-05-18;2033-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-13;2033-07-13;2033-07-13;2033-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-07;2033-09-07;2033-09-07;2033-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-02;2033-11-02;2033-11-02;2033-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-28;2033-12-28;2033-12-28;2033-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-22;2034-02-22;2034-02-22;2034-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-19;2034-04-19;2034-04-19;2034-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-14;2034-06-14;2034-06-14;2034-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-09;2034-08-09;2034-08-09;2034-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-04;2034-10-04;2034-10-04;2034-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-29;2034-11-29;2034-11-29;2034-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-24;2035-01-24;2035-01-24;2035-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"COV";"Site Closure";"";"Closure Visit";"";2035-03-21;2035-03-21;2035-03-21;2035-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-16;2035-05-16;2035-05-16;2035-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-11;2035-07-11;2035-07-11;2035-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-05;2035-09-05;2035-09-05;2035-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-31;2035-10-31;2035-10-31;2035-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-26;2035-12-26;2035-12-26;2035-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-20;2036-02-20;2036-02-20;2036-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-16;2036-04-16;2036-04-16;2036-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-11;2036-06-11;2036-06-11;2036-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10007";"DD5-PL10007";"Radoslaw";"Kempinski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-06;2036-08-06;2036-08-06;2036-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-11;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-13;2025-11-13;2025-11-13;2025-11-13;2025-12-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-08;2026-01-08;2026-01-08;2026-01-08;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-05;2026-03-05;2026-03-05;2026-03-05;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-30;2026-04-30;2026-04-30;2026-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-25;2026-06-25;2026-06-25;2026-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-20;2026-08-20;2026-08-20;2026-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-15;2026-10-15;2026-10-15;2026-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-10;2026-12-10;2026-12-10;2026-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-04;2027-02-04;2027-02-04;2027-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-01;2027-04-01;2027-04-01;2027-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-27;2027-05-27;2027-05-27;2027-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-22;2027-07-22;2027-07-22;2027-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-16;2027-09-16;2027-09-16;2027-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-11;2027-11-11;2027-11-11;2027-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-06;2028-01-06;2028-01-06;2028-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-02;2028-03-02;2028-03-02;2028-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-27;2028-04-27;2028-04-27;2028-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-22;2028-06-22;2028-06-22;2028-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-17;2028-08-17;2028-08-17;2028-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-12;2028-10-12;2028-10-12;2028-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-07;2028-12-07;2028-12-07;2028-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-01;2029-02-01;2029-02-01;2029-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-29;2029-03-29;2029-03-29;2029-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-24;2029-05-24;2029-05-24;2029-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-19;2029-07-19;2029-07-19;2029-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-13;2029-09-13;2029-09-13;2029-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-08;2029-11-08;2029-11-08;2029-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-03;2030-01-03;2030-01-03;2030-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-28;2030-02-28;2030-02-28;2030-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-25;2030-04-25;2030-04-25;2030-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-20;2030-06-20;2030-06-20;2030-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-15;2030-08-15;2030-08-15;2030-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-10;2030-10-10;2030-10-10;2030-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-05;2030-12-05;2030-12-05;2030-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-30;2031-01-30;2031-01-30;2031-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-27;2031-03-27;2031-03-27;2031-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-22;2031-05-22;2031-05-22;2031-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-17;2031-07-17;2031-07-17;2031-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-11;2031-09-11;2031-09-11;2031-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-06;2031-11-06;2031-11-06;2031-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-01;2032-01-01;2032-01-01;2032-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-26;2032-02-26;2032-02-26;2032-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-22;2032-04-22;2032-04-22;2032-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-17;2032-06-17;2032-06-17;2032-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-12;2032-08-12;2032-08-12;2032-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-07;2032-10-07;2032-10-07;2032-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-02;2032-12-02;2032-12-02;2032-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-27;2033-01-27;2033-01-27;2033-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-24;2033-03-24;2033-03-24;2033-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-19;2033-05-19;2033-05-19;2033-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-14;2033-07-14;2033-07-14;2033-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-08;2033-09-08;2033-09-08;2033-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-03;2033-11-03;2033-11-03;2033-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-29;2033-12-29;2033-12-29;2033-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-23;2034-02-23;2034-02-23;2034-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-20;2034-04-20;2034-04-20;2034-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-15;2034-06-15;2034-06-15;2034-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-10;2034-08-10;2034-08-10;2034-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-05;2034-10-05;2034-10-05;2034-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-30;2034-11-30;2034-11-30;2034-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-25;2035-01-25;2035-01-25;2035-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-22;2035-03-22;2035-03-22;2035-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"COV";"Site Closure";"";"Closure Visit";"";2035-03-22;2035-03-22;2035-03-22;2035-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-17;2035-05-17;2035-05-17;2035-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-12;2035-07-12;2035-07-12;2035-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-06;2035-09-06;2035-09-06;2035-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-01;2035-11-01;2035-11-01;2035-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-27;2035-12-27;2035-12-27;2035-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-21;2036-02-21;2036-02-21;2036-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-17;2036-04-17;2036-04-17;2036-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-12;2036-06-12;2036-06-12;2036-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10008";"DD5-PL10008";"Anna";"Wiechowska-Kozlowska";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-07;2036-08-07;2036-08-07;2036-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-12;"Magdalena";"";"Bednarowicz" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-13;2025-11-13;2025-11-13;2025-11-13;2026-01-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-08;2026-01-08;2026-01-08;2026-01-08;2026-02-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-05;2026-03-05;2026-03-05;2026-03-05;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-04-30;2026-04-30;2026-04-30;2026-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-25;2026-06-25;2026-06-25;2026-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-20;2026-08-20;2026-08-20;2026-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-15;2026-10-15;2026-10-15;2026-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-10;2026-12-10;2026-12-10;2026-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-04;2027-02-04;2027-02-04;2027-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-01;2027-04-01;2027-04-01;2027-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-27;2027-05-27;2027-05-27;2027-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-22;2027-07-22;2027-07-22;2027-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-16;2027-09-16;2027-09-16;2027-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-11;2027-11-11;2027-11-11;2027-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-06;2028-01-06;2028-01-06;2028-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-02;2028-03-02;2028-03-02;2028-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-27;2028-04-27;2028-04-27;2028-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-22;2028-06-22;2028-06-22;2028-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-17;2028-08-17;2028-08-17;2028-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-12;2028-10-12;2028-10-12;2028-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-07;2028-12-07;2028-12-07;2028-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-01;2029-02-01;2029-02-01;2029-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-29;2029-03-29;2029-03-29;2029-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-24;2029-05-24;2029-05-24;2029-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-19;2029-07-19;2029-07-19;2029-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-13;2029-09-13;2029-09-13;2029-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-08;2029-11-08;2029-11-08;2029-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-03;2030-01-03;2030-01-03;2030-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-28;2030-02-28;2030-02-28;2030-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-25;2030-04-25;2030-04-25;2030-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-20;2030-06-20;2030-06-20;2030-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-15;2030-08-15;2030-08-15;2030-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-10;2030-10-10;2030-10-10;2030-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-05;2030-12-05;2030-12-05;2030-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-30;2031-01-30;2031-01-30;2031-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-27;2031-03-27;2031-03-27;2031-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-22;2031-05-22;2031-05-22;2031-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-17;2031-07-17;2031-07-17;2031-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-11;2031-09-11;2031-09-11;2031-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-06;2031-11-06;2031-11-06;2031-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-01;2032-01-01;2032-01-01;2032-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-26;2032-02-26;2032-02-26;2032-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-22;2032-04-22;2032-04-22;2032-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-17;2032-06-17;2032-06-17;2032-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-12;2032-08-12;2032-08-12;2032-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-07;2032-10-07;2032-10-07;2032-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-02;2032-12-02;2032-12-02;2032-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-27;2033-01-27;2033-01-27;2033-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-24;2033-03-24;2033-03-24;2033-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-19;2033-05-19;2033-05-19;2033-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-14;2033-07-14;2033-07-14;2033-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-08;2033-09-08;2033-09-08;2033-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-03;2033-11-03;2033-11-03;2033-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-29;2033-12-29;2033-12-29;2033-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-23;2034-02-23;2034-02-23;2034-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-20;2034-04-20;2034-04-20;2034-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-15;2034-06-15;2034-06-15;2034-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-10;2034-08-10;2034-08-10;2034-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-05;2034-10-05;2034-10-05;2034-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-30;2034-11-30;2034-11-30;2034-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-25;2035-01-25;2035-01-25;2035-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-22;2035-03-22;2035-03-22;2035-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"COV";"Site Closure";"";"Closure Visit";"";2035-03-22;2035-03-22;2035-03-22;2035-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-17;2035-05-17;2035-05-17;2035-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-12;2035-07-12;2035-07-12;2035-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-06;2035-09-06;2035-09-06;2035-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-01;2035-11-01;2035-11-01;2035-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-27;2035-12-27;2035-12-27;2035-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-21;2036-02-21;2036-02-21;2036-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-17;2036-04-17;2036-04-17;2036-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-12;2036-06-12;2036-06-12;2036-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10009";"DD5-PL10009";"Patryk";"Smolinski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-07;2036-08-07;2036-08-07;2036-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-06;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-14;2025-11-14;2025-11-14;2025-11-14;2025-12-29;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2026-01-30;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-03-20;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"COV";"Site Closure";"";"Closure Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10010";"DD5-PL10010";"Piotr";"Gietka";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10011";"DD5-PL10011";"Bartosz";"Korczowski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-16;"Magdalena";"";"Bednarowicz" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-14;2025-11-14;2025-11-14;2025-11-14;2026-01-14;"Magdalena";"";"Santorska" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-04-14;"Magdalena";"";"Santorska" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"COV";"Site Closure";"";"Closure Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10012";"DD5-PL10012";"Katarzyna";"Wojcik";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10013";"DD5-PL10013";"Beata";"Gawdis-Wojnarska";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-05;2026-05-05;2026-05-05;2026-05-05;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10014";"DD5-PL10014";"Bozena";"Prokopiuk";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-10;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2026-01-20;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-03-11;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"Within the plan";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10015";"DD5-PL10015";"Danuta";"Owczarek";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-11;"Magdalena";"";"Bednarowicz" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-06;2026-05-06;2026-05-06;2026-05-06;2026-03-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-07-01;2026-07-01;2026-07-01;2026-07-01;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV5";"Monitoring Visit 5";"Scheduled";"Monitoring Visit";"Within the plan";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10016";"DD5-PL10016";"Dariusz";"Kleczkowski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2026-02-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV4";"Monitoring Visit 4";"Planned";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10017";"DD5-PL10017";"Bernardeta";"Frysna";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2026-02-18;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-01-14;2026-01-14;2026-01-14;2026-01-14;;"Tomasz";"";"Kaizik" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10018";"DD5-PL10018";"Zbigniew";"Wylegala";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-12;2026-03-12;2026-03-12;2026-03-12;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"COV";"Site Closure";"";"Closure Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10019";"DD5-PL10019";"Przemyslaw";"Ramos";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-06-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-21;2025-11-21;2025-11-21;2025-11-21;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"COV";"Site Closure";"";"Closure Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10020";"DD5-PL10020";"Piotr";"Eder";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2025-12-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10021";"DD5-PL10021";"Oleg";"Tyszkiwski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-06-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-17;2026-03-17;2026-03-17;2026-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"COV";"Site Closure";"";"Closure Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10022";"DD5-PL10022";"Mikolaj";"Krzyzanowski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-26;2025-11-26;2025-11-26;2025-11-26;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"COV";"Site Closure";"";"Closure Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10023";"DD5-PL10023";"Michal";"Lodyga";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-26;2025-11-26;2025-11-26;2025-11-26;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"COV";"Site Closure";"";"Closure Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10024";"DD5-PL10024";"Michal";"Lawinski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2026-01-23;"Magdalena";"";"Santorska" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-03-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"COV";"Site Closure";"";"Closure Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10025";"DD5-PL10025";"Michal";"Krogulecki";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-21;2036-08-21;2036-08-21;2036-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-03-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10026";"DD5-PL10026";"Marzena";"Kwinto";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-06-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10027";"DD5-PL10027";"Magdalena";"Andrzejewska";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-27;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-02;2025-12-02;2025-12-02;2025-12-02;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2026-01-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-24;2026-03-24;2026-03-24;2026-03-24;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"COV";"Site Closure";"";"Closure Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10028";"DD5-PL10028";"Anna";"Bochenek Mularczyk";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-06-13;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-03;2025-12-03;2025-12-03;2025-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-28;2026-01-28;2026-01-28;2026-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-25;2026-03-25;2026-03-25;2026-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"COV";"Site Closure";"";"Closure Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10029";"DD5-PL10029";"Maciej";"Kowalski";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-29;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-04;2025-12-04;2025-12-04;2025-12-04;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"COV";"Site Closure";"";"Closure Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10030";"DD5-PL10030";"Anna";"Wos-Zaniewska";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10031";"DD5-PL10031";"Wojciech";"Piotrowski";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-08;2025-12-08;2025-12-08;2025-12-08;2026-01-16;"Magdalena";"";"Santorska" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-02-02;2026-02-02;2026-02-02;2026-02-02;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"COV";"Site Closure";"";"Closure Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10032";"DD5-PL10032";"Michal";"Walczak";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10033";"DD5-PL10033";"Katarzyna";"Ostrowska";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10034";"DD5-PL10034";"Dariusz";"Solowiej";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-23;2025-05-23;2025-05-23;2025-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-23;2025-05-23;2025-05-23;2025-05-23;2025-05-23;"Olga";"";"Broniecka" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-09;2025-12-09;2025-12-09;2025-12-09;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-03;2026-02-03;2026-02-03;2026-02-03;2026-02-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-31;2026-03-31;2026-03-31;2026-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-26;2026-05-26;2026-05-26;2026-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"COV";"Site Closure";"";"Closure Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10035";"DD5-PL10035";"Edyta";"Kawalkowska";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-07-03;2025-07-03;2025-07-03;2025-07-03;2025-07-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-09;2025-12-09;2025-12-09;2025-12-09;2025-12-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-03;2026-02-03;2026-02-03;2026-02-03;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-31;2026-03-31;2026-03-31;2026-03-31;2026-02-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-05-26;2026-05-26;2026-05-26;2026-05-26;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-07-21;2026-07-21;2026-07-21;2026-07-21;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"COV";"Site Closure";"";"Closure Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PL10036";"DD5-PL10036";"Wit";"Danilkiewicz";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-04-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-05;2025-12-05;2025-12-05;2025-12-05;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-02-18;"Vanessa";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-04-06;"Vanessa";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"Vanessa";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"COV";"Site Closure";"";"Closure Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10001";"DD5-PT10001";"Samuel";"Fernandes";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-03;2025-12-03;2025-12-03;2025-12-03;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-25;2026-03-25;2026-03-25;2026-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"COV";"Site Closure";"";"Closure Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10002";"DD5-PT10002";"Bruno";"Arroja";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-23;2025-04-23;2025-04-23;2025-04-23;2025-05-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-10;2025-12-10;2025-12-10;2025-12-10;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Outside the plan";2026-02-04;2026-02-04;2026-02-04;2026-02-04;2026-04-24;"Vanessa";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"UNSCH 1";"Unscheduled Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2026-04-24;2026-04-24;;;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"COV";"Site Closure";"";"Closure Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10003";"DD5-PT10003";"Daniela";"Ferreira";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-04-15;"Vanessa";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10004";"DD5-PT10004";"Joana";"Torres";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10005";"DD5-PT10005";"Francisco";"Portela";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-29;2025-04-29;2025-04-29;2025-04-29;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10006";"DD5-PT10006";"Ana Isabel";"Vieira";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-20;2025-11-20;2025-11-20;2025-11-20;2026-02-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-15;2026-01-15;2026-01-15;2026-01-15;2026-04-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-12;2026-03-12;2026-03-12;2026-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-07;2026-05-07;2026-05-07;2026-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-02;2026-07-02;2026-07-02;2026-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-27;2026-08-27;2026-08-27;2026-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-22;2026-10-22;2026-10-22;2026-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-17;2026-12-17;2026-12-17;2026-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-11;2027-02-11;2027-02-11;2027-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-08;2027-04-08;2027-04-08;2027-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-03;2027-06-03;2027-06-03;2027-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-29;2027-07-29;2027-07-29;2027-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-23;2027-09-23;2027-09-23;2027-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-18;2027-11-18;2027-11-18;2027-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-13;2028-01-13;2028-01-13;2028-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-09;2028-03-09;2028-03-09;2028-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-04;2028-05-04;2028-05-04;2028-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-29;2028-06-29;2028-06-29;2028-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-24;2028-08-24;2028-08-24;2028-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-19;2028-10-19;2028-10-19;2028-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-14;2028-12-14;2028-12-14;2028-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-08;2029-02-08;2029-02-08;2029-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-05;2029-04-05;2029-04-05;2029-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-31;2029-05-31;2029-05-31;2029-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-26;2029-07-26;2029-07-26;2029-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-20;2029-09-20;2029-09-20;2029-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-15;2029-11-15;2029-11-15;2029-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-10;2030-01-10;2030-01-10;2030-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-07;2030-03-07;2030-03-07;2030-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-02;2030-05-02;2030-05-02;2030-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-27;2030-06-27;2030-06-27;2030-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-22;2030-08-22;2030-08-22;2030-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-17;2030-10-17;2030-10-17;2030-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-12;2030-12-12;2030-12-12;2030-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-06;2031-02-06;2031-02-06;2031-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-03;2031-04-03;2031-04-03;2031-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-29;2031-05-29;2031-05-29;2031-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-24;2031-07-24;2031-07-24;2031-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-18;2031-09-18;2031-09-18;2031-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-13;2031-11-13;2031-11-13;2031-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-08;2032-01-08;2032-01-08;2032-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-04;2032-03-04;2032-03-04;2032-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-29;2032-04-29;2032-04-29;2032-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-24;2032-06-24;2032-06-24;2032-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-19;2032-08-19;2032-08-19;2032-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-14;2032-10-14;2032-10-14;2032-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-09;2032-12-09;2032-12-09;2032-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-03;2033-02-03;2033-02-03;2033-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-31;2033-03-31;2033-03-31;2033-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-26;2033-05-26;2033-05-26;2033-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-21;2033-07-21;2033-07-21;2033-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-15;2033-09-15;2033-09-15;2033-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-10;2033-11-10;2033-11-10;2033-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-05;2034-01-05;2034-01-05;2034-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-02;2034-03-02;2034-03-02;2034-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-27;2034-04-27;2034-04-27;2034-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-22;2034-06-22;2034-06-22;2034-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-17;2034-08-17;2034-08-17;2034-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-12;2034-10-12;2034-10-12;2034-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-07;2034-12-07;2034-12-07;2034-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-01;2035-02-01;2035-02-01;2035-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"COV";"Site Closure";"";"Closure Visit";"";2035-03-29;2035-03-29;2035-03-29;2035-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-24;2035-05-24;2035-05-24;2035-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-19;2035-07-19;2035-07-19;2035-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-13;2035-09-13;2035-09-13;2035-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-08;2035-11-08;2035-11-08;2035-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-03;2036-01-03;2036-01-03;2036-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-28;2036-02-28;2036-02-28;2036-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-24;2036-04-24;2036-04-24;2036-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-19;2036-06-19;2036-06-19;2036-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10007";"DD5-PT10007";"Tiago";"Goncalves";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-14;2036-08-14;2036-08-14;2036-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10008";"DD5-PT10008";"Sonia";"Bernardo";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-PT10009";"DD5-PT10009";"Helena";"Ribeiro";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-04-28;"Patricia";"";"Acris-Badea" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-02-03;"Raluca";"";"Avadani" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-25;2026-03-25;2026-03-25;2026-03-25;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-20;2026-05-20;2026-05-20;2026-05-20;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"COV";"Site Closure";"";"Closure Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10001";"DD5-RO10001";"Cristina";"Pojoga";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-22;2036-10-22;2036-10-22;2036-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10002";"DD5-RO10002";"Adrian";"Saftoiu";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-14;"Ruxandra";"";"Stefan" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-05;"Patricia";"";"Acris-Badea" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-16;2026-01-16;2026-01-16;2026-01-16;2026-01-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-13;2026-03-13;2026-03-13;2026-03-13;2026-02-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-05-08;2026-05-08;2026-05-08;2026-05-08;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"COV";"Site Closure";"";"Closure Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10003";"DD5-RO10003";"Radu Bogdan";"Mateescu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-10;2036-10-10;2036-10-10;2036-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-23;"Patricia";"";"Acris-Badea" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-01-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"UNSCH1";"Unscheduled visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-04-20;2026-04-20;;;2026-04-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"COV";"Site Closure";"";"Closure Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10004";"DD5-RO10004";"Florin-George";"Musat";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10005";"DD5-RO10005";"Andrada";"Seicean";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-16;"Raluca";"";"Lazar" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-01-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-02;2026-04-02;2026-04-02;2026-04-02;2026-02-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"COV";"Site Closure";"";"Closure Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10006";"DD5-RO10006";"Camelia";"Chioncel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-04-30;2025-04-30;2025-04-30;2025-04-30;2025-05-20;"Ruxandra";"";"Stefan" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-01-30;"Ramona";"";"Bucura" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"UNSCH";"Unscheduled Visit";"Completed";"Monitoring Visit";"Outside the plan";2026-02-05;2026-02-05;;;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-17;2026-03-17;2026-03-17;2026-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"Unscheduled visit";"Unscheduled visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-03-30;2026-03-30;;2026-03-30;2026-03-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"COV";"Site Closure";"";"Closure Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10007";"DD5-RO10007";"Adrian Gheorghe";"Boicean";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-14;2036-10-14;2036-10-14;2036-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10008";"DD5-RO10008";"Petru Bogdan";"Miutescu";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-30;2025-04-30;2025-04-30;2025-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10009";"DD5-RO10009";"Vasile Marcel";"Tantau";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-19;"Raluca";"";"Lazar" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-20;"Patricia";"";"Acris-Badea" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-01-27;2026-01-27;2026-01-27;2026-01-27;2026-02-24;"Ramona";"";"Bucura" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"COV";"Site Closure";"";"Closure Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10010";"DD5-RO10010";"Dan Ionut";"Gheonea";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-21;2036-10-21;2036-10-21;2036-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-16;"Raluca";"";"Lazar" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"SQV";"Qualification Visit_1";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;;;2026-02-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-09;2025-12-09;2025-12-09;2025-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-03;2026-02-03;2026-02-03;2026-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-31;2026-03-31;2026-03-31;2026-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-26;2026-05-26;2026-05-26;2026-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"COV";"Site Closure";"";"Closure Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10011";"DD5-RO10011";"Eugeniu";"Craciun";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-03-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-06-23;2026-06-23;2026-06-23;2026-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-08-18;2026-08-18;2026-08-18;2026-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-10-13;2026-10-13;2026-10-13;2026-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-12-08;2026-12-08;2026-12-08;2026-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-02-02;2027-02-02;2027-02-02;2027-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-03-30;2027-03-30;2027-03-30;2027-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-05-25;2027-05-25;2027-05-25;2027-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-07-20;2027-07-20;2027-07-20;2027-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-09-14;2027-09-14;2027-09-14;2027-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-11-09;2027-11-09;2027-11-09;2027-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-01-04;2028-01-04;2028-01-04;2028-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-02-29;2028-02-29;2028-02-29;2028-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-04-25;2028-04-25;2028-04-25;2028-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-06-20;2028-06-20;2028-06-20;2028-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-08-15;2028-08-15;2028-08-15;2028-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-10-10;2028-10-10;2028-10-10;2028-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-12-05;2028-12-05;2028-12-05;2028-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-01-30;2029-01-30;2029-01-30;2029-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-03-27;2029-03-27;2029-03-27;2029-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-05-22;2029-05-22;2029-05-22;2029-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-07-17;2029-07-17;2029-07-17;2029-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-09-11;2029-09-11;2029-09-11;2029-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-11-06;2029-11-06;2029-11-06;2029-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-01-01;2030-01-01;2030-01-01;2030-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-02-26;2030-02-26;2030-02-26;2030-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-04-23;2030-04-23;2030-04-23;2030-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-06-18;2030-06-18;2030-06-18;2030-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-08-13;2030-08-13;2030-08-13;2030-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-10-08;2030-10-08;2030-10-08;2030-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-12-03;2030-12-03;2030-12-03;2030-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-01-28;2031-01-28;2031-01-28;2031-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-03-25;2031-03-25;2031-03-25;2031-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-05-20;2031-05-20;2031-05-20;2031-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-07-15;2031-07-15;2031-07-15;2031-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-09-09;2031-09-09;2031-09-09;2031-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-11-04;2031-11-04;2031-11-04;2031-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-12-30;2031-12-30;2031-12-30;2031-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-02-24;2032-02-24;2032-02-24;2032-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-04-20;2032-04-20;2032-04-20;2032-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-06-15;2032-06-15;2032-06-15;2032-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-08-10;2032-08-10;2032-08-10;2032-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-10-05;2032-10-05;2032-10-05;2032-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-11-30;2032-11-30;2032-11-30;2032-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-01-25;2033-01-25;2033-01-25;2033-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-03-22;2033-03-22;2033-03-22;2033-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-05-17;2033-05-17;2033-05-17;2033-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-07-12;2033-07-12;2033-07-12;2033-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-09-06;2033-09-06;2033-09-06;2033-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-11-01;2033-11-01;2033-11-01;2033-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-12-27;2033-12-27;2033-12-27;2033-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-02-21;2034-02-21;2034-02-21;2034-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-04-18;2034-04-18;2034-04-18;2034-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-06-13;2034-06-13;2034-06-13;2034-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-08-08;2034-08-08;2034-08-08;2034-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-10-03;2034-10-03;2034-10-03;2034-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-11-28;2034-11-28;2034-11-28;2034-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-01-23;2035-01-23;2035-01-23;2035-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-03-20;2035-03-20;2035-03-20;2035-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-05-15;2035-05-15;2035-05-15;2035-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-07-10;2035-07-10;2035-07-10;2035-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-09-04;2035-09-04;2035-09-04;2035-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-10-30;2035-10-30;2035-10-30;2035-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-12-25;2035-12-25;2035-12-25;2035-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-02-19;2036-02-19;2036-02-19;2036-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-04-15;2036-04-15;2036-04-15;2036-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-06-10;2036-06-10;2036-06-10;2036-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-08-05;2036-08-05;2036-08-05;2036-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-09-30;2036-09-30;2036-09-30;2036-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-11-25;2036-11-25;2036-11-25;2036-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-01-20;2037-01-20;2037-01-20;2037-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-03-17;2037-03-17;2037-03-17;2037-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-RO10012";"DD5-RO10012";"Cristian";"Tieranu";"COV";"Site Closure";"";"Closure Visit";"";2037-05-12;2037-05-12;2037-05-12;2037-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;2025-12-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;2026-04-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"COV";"Site Closure";"";"Closure Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10001";"DD5-SE10001";"Perjohan";"Lindfors";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-08;2036-10-08;2036-10-08;2036-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;2026-03-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10002";"DD5-SE10002";"Charlotte";"Hedin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10003";"DD5-SE10003";"Mikael";"Lordal";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2026-01-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10004";"DD5-SE10004";"Daniel";"Bergemalm";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-08;2025-12-08;2025-12-08;2025-12-08;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-02;2026-02-02;2026-02-02;2026-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-30;2026-03-30;2026-03-30;2026-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-25;2026-05-25;2026-05-25;2026-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-20;2026-07-20;2026-07-20;2026-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-14;2026-09-14;2026-09-14;2026-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-09;2026-11-09;2026-11-09;2026-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-04;2027-01-04;2027-01-04;2027-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-01;2027-03-01;2027-03-01;2027-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-26;2027-04-26;2027-04-26;2027-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-21;2027-06-21;2027-06-21;2027-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-16;2027-08-16;2027-08-16;2027-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-11;2027-10-11;2027-10-11;2027-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-06;2027-12-06;2027-12-06;2027-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-31;2028-01-31;2028-01-31;2028-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-27;2028-03-27;2028-03-27;2028-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-22;2028-05-22;2028-05-22;2028-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-17;2028-07-17;2028-07-17;2028-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-11;2028-09-11;2028-09-11;2028-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-06;2028-11-06;2028-11-06;2028-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-01;2029-01-01;2029-01-01;2029-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-26;2029-02-26;2029-02-26;2029-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-23;2029-04-23;2029-04-23;2029-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-18;2029-06-18;2029-06-18;2029-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-13;2029-08-13;2029-08-13;2029-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-08;2029-10-08;2029-10-08;2029-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-03;2029-12-03;2029-12-03;2029-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-28;2030-01-28;2030-01-28;2030-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-25;2030-03-25;2030-03-25;2030-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-20;2030-05-20;2030-05-20;2030-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-15;2030-07-15;2030-07-15;2030-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-09;2030-09-09;2030-09-09;2030-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-04;2030-11-04;2030-11-04;2030-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-30;2030-12-30;2030-12-30;2030-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-24;2031-02-24;2031-02-24;2031-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-21;2031-04-21;2031-04-21;2031-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-16;2031-06-16;2031-06-16;2031-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-11;2031-08-11;2031-08-11;2031-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-06;2031-10-06;2031-10-06;2031-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-01;2031-12-01;2031-12-01;2031-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-26;2032-01-26;2032-01-26;2032-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-22;2032-03-22;2032-03-22;2032-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-17;2032-05-17;2032-05-17;2032-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-12;2032-07-12;2032-07-12;2032-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-06;2032-09-06;2032-09-06;2032-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-01;2032-11-01;2032-11-01;2032-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-27;2032-12-27;2032-12-27;2032-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-21;2033-02-21;2033-02-21;2033-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-18;2033-04-18;2033-04-18;2033-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-13;2033-06-13;2033-06-13;2033-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-08;2033-08-08;2033-08-08;2033-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-03;2033-10-03;2033-10-03;2033-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-28;2033-11-28;2033-11-28;2033-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-23;2034-01-23;2034-01-23;2034-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-20;2034-03-20;2034-03-20;2034-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-15;2034-05-15;2034-05-15;2034-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-10;2034-07-10;2034-07-10;2034-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-04;2034-09-04;2034-09-04;2034-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-30;2034-10-30;2034-10-30;2034-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-25;2034-12-25;2034-12-25;2034-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-19;2035-02-19;2035-02-19;2035-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"COV";"Site Closure";"";"Closure Visit";"";2035-04-16;2035-04-16;2035-04-16;2035-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-11;2035-06-11;2035-06-11;2035-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-06;2035-08-06;2035-08-06;2035-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-01;2035-10-01;2035-10-01;2035-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-26;2035-11-26;2035-11-26;2035-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-21;2036-01-21;2036-01-21;2036-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-17;2036-03-17;2036-03-17;2036-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-12;2036-05-12;2036-05-12;2036-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-07;2036-07-07;2036-07-07;2036-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10005";"DD5-SE10005";"Henrik";"Hjortswang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-01;2036-09-01;2036-09-01;2036-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10006";"DD5-SE10006";"Robert";"Kunz";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"SIV";"Site Initiation";"";"Initiation Visit";"Within the plan";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"COV";"Site Closure";"";"Closure Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10007";"DD5-SE10007";"Jenny";"Gunnarsson";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-15;2036-10-15;2036-10-15;2036-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10008";"DD5-SE10008";"Johanna";"Holmgren";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2026-02-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"COV";"Site Closure";"";"Closure Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10009";"DD5-SE10009";"Ulf";"Eriksson";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-04;2036-09-04;2036-09-04;2036-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-15;2025-04-15;2025-04-15;2025-04-15;2025-05-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-18;2025-12-18;2025-12-18;2025-12-18;2026-01-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-12;2026-02-12;2026-02-12;2026-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-09;2026-04-09;2026-04-09;2026-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-04;2026-06-04;2026-06-04;2026-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-30;2026-07-30;2026-07-30;2026-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-24;2026-09-24;2026-09-24;2026-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-19;2026-11-19;2026-11-19;2026-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-14;2027-01-14;2027-01-14;2027-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-11;2027-03-11;2027-03-11;2027-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-06;2027-05-06;2027-05-06;2027-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-01;2027-07-01;2027-07-01;2027-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-26;2027-08-26;2027-08-26;2027-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-21;2027-10-21;2027-10-21;2027-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-16;2027-12-16;2027-12-16;2027-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-10;2028-02-10;2028-02-10;2028-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-06;2028-04-06;2028-04-06;2028-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-01;2028-06-01;2028-06-01;2028-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-27;2028-07-27;2028-07-27;2028-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-21;2028-09-21;2028-09-21;2028-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-16;2028-11-16;2028-11-16;2028-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-11;2029-01-11;2029-01-11;2029-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-08;2029-03-08;2029-03-08;2029-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-03;2029-05-03;2029-05-03;2029-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-28;2029-06-28;2029-06-28;2029-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-23;2029-08-23;2029-08-23;2029-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-18;2029-10-18;2029-10-18;2029-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-13;2029-12-13;2029-12-13;2029-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-07;2030-02-07;2030-02-07;2030-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-04;2030-04-04;2030-04-04;2030-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-30;2030-05-30;2030-05-30;2030-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-25;2030-07-25;2030-07-25;2030-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-19;2030-09-19;2030-09-19;2030-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-14;2030-11-14;2030-11-14;2030-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-09;2031-01-09;2031-01-09;2031-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-06;2031-03-06;2031-03-06;2031-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-01;2031-05-01;2031-05-01;2031-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-26;2031-06-26;2031-06-26;2031-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-21;2031-08-21;2031-08-21;2031-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-16;2031-10-16;2031-10-16;2031-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-11;2031-12-11;2031-12-11;2031-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-05;2032-02-05;2032-02-05;2032-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-01;2032-04-01;2032-04-01;2032-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-27;2032-05-27;2032-05-27;2032-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-22;2032-07-22;2032-07-22;2032-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-16;2032-09-16;2032-09-16;2032-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-11;2032-11-11;2032-11-11;2032-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-06;2033-01-06;2033-01-06;2033-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-03;2033-03-03;2033-03-03;2033-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-28;2033-04-28;2033-04-28;2033-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-23;2033-06-23;2033-06-23;2033-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-18;2033-08-18;2033-08-18;2033-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-13;2033-10-13;2033-10-13;2033-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-08;2033-12-08;2033-12-08;2033-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-02;2034-02-02;2034-02-02;2034-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-30;2034-03-30;2034-03-30;2034-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-25;2034-05-25;2034-05-25;2034-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-20;2034-07-20;2034-07-20;2034-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-14;2034-09-14;2034-09-14;2034-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-09;2034-11-09;2034-11-09;2034-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-04;2035-01-04;2035-01-04;2035-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-01;2035-03-01;2035-03-01;2035-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"COV";"Site Closure";"";"Closure Visit";"";2035-04-26;2035-04-26;2035-04-26;2035-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-21;2035-06-21;2035-06-21;2035-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-16;2035-08-16;2035-08-16;2035-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-11;2035-10-11;2035-10-11;2035-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-06;2035-12-06;2035-12-06;2035-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-31;2036-01-31;2036-01-31;2036-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-27;2036-03-27;2036-03-27;2036-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-22;2036-05-22;2036-05-22;2036-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-17;2036-07-17;2036-07-17;2036-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10010";"DD5-SE10010";"Maria";"Ling Lundstrom";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-11;2036-09-11;2036-09-11;2036-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-SE10011";"DD5-SE10011";"Bonnie";"Bengtsson";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-10;2025-11-10;2025-11-10;2025-11-10;2025-12-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"";2026-01-05;2026-01-05;2026-01-05;2026-01-05;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-02;2026-03-02;2026-03-02;2026-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-27;2026-04-27;2026-04-27;2026-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"COV";"Site Closure";"";"Closure Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10001";"DD5-TR10001";"Nalan";"Unal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2026-01-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2026-03-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV2";"Monitoring Visit 2";"Planned";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"COV";"Site Closure";"";"Closure Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10002";"DD5-TR10002";"Engin";"Altintas";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"SIV";"Site Initiation";"Planned";"Initiation Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-01-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-03-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-04-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"COV";"Site Closure";"";"Closure Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10003";"DD5-TR10003";"Aykut Ferhat";"Celik";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-25;2025-11-25;2025-11-25;2025-11-25;2026-01-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-20;2026-01-20;2026-01-20;2026-01-20;2026-03-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-17;2026-03-17;2026-03-17;2026-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-12;2026-05-12;2026-05-12;2026-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-07;2026-07-07;2026-07-07;2026-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-01;2026-09-01;2026-09-01;2026-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-27;2026-10-27;2026-10-27;2026-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-22;2026-12-22;2026-12-22;2026-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-16;2027-02-16;2027-02-16;2027-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-13;2027-04-13;2027-04-13;2027-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-08;2027-06-08;2027-06-08;2027-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-03;2027-08-03;2027-08-03;2027-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-28;2027-09-28;2027-09-28;2027-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-23;2027-11-23;2027-11-23;2027-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-18;2028-01-18;2028-01-18;2028-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-14;2028-03-14;2028-03-14;2028-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-09;2028-05-09;2028-05-09;2028-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-04;2028-07-04;2028-07-04;2028-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-29;2028-08-29;2028-08-29;2028-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-24;2028-10-24;2028-10-24;2028-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-19;2028-12-19;2028-12-19;2028-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-13;2029-02-13;2029-02-13;2029-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-10;2029-04-10;2029-04-10;2029-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-05;2029-06-05;2029-06-05;2029-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-31;2029-07-31;2029-07-31;2029-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-25;2029-09-25;2029-09-25;2029-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-20;2029-11-20;2029-11-20;2029-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-15;2030-01-15;2030-01-15;2030-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-12;2030-03-12;2030-03-12;2030-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-07;2030-05-07;2030-05-07;2030-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-02;2030-07-02;2030-07-02;2030-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-27;2030-08-27;2030-08-27;2030-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-22;2030-10-22;2030-10-22;2030-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-17;2030-12-17;2030-12-17;2030-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-11;2031-02-11;2031-02-11;2031-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-08;2031-04-08;2031-04-08;2031-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-03;2031-06-03;2031-06-03;2031-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-29;2031-07-29;2031-07-29;2031-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-23;2031-09-23;2031-09-23;2031-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-18;2031-11-18;2031-11-18;2031-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-13;2032-01-13;2032-01-13;2032-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-09;2032-03-09;2032-03-09;2032-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-04;2032-05-04;2032-05-04;2032-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-29;2032-06-29;2032-06-29;2032-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-24;2032-08-24;2032-08-24;2032-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-19;2032-10-19;2032-10-19;2032-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-14;2032-12-14;2032-12-14;2032-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-08;2033-02-08;2033-02-08;2033-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-05;2033-04-05;2033-04-05;2033-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-31;2033-05-31;2033-05-31;2033-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-26;2033-07-26;2033-07-26;2033-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-20;2033-09-20;2033-09-20;2033-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-15;2033-11-15;2033-11-15;2033-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-10;2034-01-10;2034-01-10;2034-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-07;2034-03-07;2034-03-07;2034-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-02;2034-05-02;2034-05-02;2034-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-27;2034-06-27;2034-06-27;2034-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-22;2034-08-22;2034-08-22;2034-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-17;2034-10-17;2034-10-17;2034-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-12;2034-12-12;2034-12-12;2034-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-06;2035-02-06;2035-02-06;2035-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"COV";"Site Closure";"";"Closure Visit";"";2035-04-03;2035-04-03;2035-04-03;2035-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-29;2035-05-29;2035-05-29;2035-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-24;2035-07-24;2035-07-24;2035-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-18;2035-09-18;2035-09-18;2035-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-13;2035-11-13;2035-11-13;2035-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-08;2036-01-08;2036-01-08;2036-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-04;2036-03-04;2036-03-04;2036-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-29;2036-04-29;2036-04-29;2036-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-24;2036-06-24;2036-06-24;2036-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10004";"DD5-TR10004";"Tarkan";"Karakan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-19;2036-08-19;2036-08-19;2036-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-01;2025-05-01;2025-05-01;2025-05-01;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-11-07;2025-11-07;2025-11-07;2025-11-07;2026-01-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2026-03-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-27;2026-02-27;2026-02-27;2026-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"COV";"Site Closure";"";"Closure Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10005";"DD5-TR10005";"Hasan";"Yilmaz";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-04;2025-12-04;2025-12-04;2025-12-04;2026-01-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"COV";"Site Closure";"";"Closure Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10006";"DD5-TR10006";"Ayhan Hilmi";"Cekin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-28;2036-08-28;2036-08-28;2036-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-09;2025-12-09;2025-12-09;2025-12-09;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2026-02-03;2026-02-03;2026-02-03;2026-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-31;2026-03-31;2026-03-31;2026-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-26;2026-05-26;2026-05-26;2026-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"COV";"Site Closure";"";"Closure Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10007";"DD5-TR10007";"Ilhami";"Yuksel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-02;2036-09-02;2036-09-02;2036-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-11-21;2025-11-21;2025-11-21;2025-11-21;2026-01-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"Within the plan";2026-01-16;2026-01-16;2026-01-16;2026-01-16;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"COV";"Site Closure";"";"Closure Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10008";"DD5-TR10008";"Taylan";"Kav";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-05;2026-01-05;2026-01-05;2026-01-05;2026-01-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-03-02;2026-03-02;2026-03-02;2026-03-02;2026-01-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-27;2026-04-27;2026-04-27;2026-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"COV";"Site Closure";"";"Closure Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10009";"DD5-TR10009";"Odul";"Egritas Gurkan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-29;2036-09-29;2036-09-29;2036-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"SQV";"Qualification Visit";"Planned";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2026-01-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"COV";"Site Closure";"";"Closure Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10010";"DD5-TR10010";"Yesim";"Ozen Alahdab";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;2026-01-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV1";"Monitoring Visit 1";"Planned";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"COV";"Site Closure";"";"Closure Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10011";"DD5-TR10011";"Deniz";"Ertem";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TR10012";"DD5-TR10012";"Gozde";"Dervis Hakim";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-19;2025-04-19;2025-04-19;2025-04-19;2025-05-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-01-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"COV";"Site Closure";"";"Closure Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10001";"DD5-TW10001";"Horng-Yuan";"Wang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-17;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-22;2025-04-22;2025-04-22;2025-04-22;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-15;2025-12-15;2025-12-15;2025-12-15;2025-11-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-09;2026-02-09;2026-02-09;2026-02-09;2026-01-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-06;2026-04-06;2026-04-06;2026-04-06;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"COV";"Site Closure";"";"Closure Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10002";"DD5-TW10002";"Puo- hsien";"Le";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-07;2025-11-07;2025-11-07;2025-11-07;2025-11-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2025-12-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-27;2026-02-27;2026-02-27;2026-02-27;2026-01-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"COV";"Site Closure";"";"Closure Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10003";"DD5-TW10003";"Shu-Chen";"Wei";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-12-03;2025-12-03;2025-12-03;2025-12-03;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-28;2026-01-28;2026-01-28;2026-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-25;2026-03-25;2026-03-25;2026-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"COV";"Site Closure";"";"Closure Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10004";"DD5-TW10004";"Hsu-Heng";"Yen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-24;2025-04-24;2025-04-24;2025-04-24;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-22;2025-12-22;2025-12-22;2025-12-22;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-16;2026-02-16;2026-02-16;2026-02-16;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"COV";"Site Closure";"";"Closure Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10005";"DD5-TW10005";"Wei Chen";"Tai";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-15;2036-09-15;2036-09-15;2036-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-TW10006";"DD5-TW10006";"Feng Fan";"Chiang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-04-25;2025-04-25;2025-04-25;2025-04-25;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-02;2025-05-02;2025-05-02;2025-05-02;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-09-23;2025-09-23;2025-09-23;2025-09-23;2025-10-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2025-10-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;2025-11-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-10;2026-03-10;2026-03-10;2026-03-10;2025-12-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-05-05;2026-05-05;2026-05-05;2026-05-05;2026-01-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"Within the plan";2026-06-30;2026-06-30;2026-06-30;2026-06-30;2026-03-23;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"COV";"Site Closure";"";"Closure Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10001";"DD5-US10001";"Amit";"Bhanvadia";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10002";"DD5-US10002";"Daniel";"Stein";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-02;2025-05-02;2025-05-02;2025-05-02;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2026-03-23;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-26;2025-12-26;2025-12-26;2025-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10003";"DD5-US10003";"Arun";"Swaminath";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-03;2025-05-03;2025-05-03;2025-05-03;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-24;2025-10-24;2025-10-24;2025-10-24;2026-02-11;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2026-01-16;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-13;2026-02-13;2026-02-13;2026-02-13;2026-03-12;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;2026-04-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"COV";"Site Closure";"";"Closure Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10004";"DD5-US10004";"Douglas";"Wolf";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-01-30;2026-01-30;2026-01-30;2026-01-30;;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"COV";"Site Closure";"";"Closure Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-29;2036-08-29;2036-08-29;2036-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10005";"DD5-US10005";"David";"Dunkin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-24;2036-10-24;2036-10-24;2036-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2026-02-28;2026-02-28;2026-02-28;2026-02-28;2026-03-06;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-04-25;2026-04-25;2026-04-25;2026-04-25;2026-03-26;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-20;2026-06-20;2026-06-20;2026-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-15;2026-08-15;2026-08-15;2026-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-10;2026-10-10;2026-10-10;2026-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-05;2026-12-05;2026-12-05;2026-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-30;2027-01-30;2027-01-30;2027-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-27;2027-03-27;2027-03-27;2027-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-22;2027-05-22;2027-05-22;2027-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-07-17;2027-07-17;2027-07-17;2027-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-11;2027-09-11;2027-09-11;2027-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-06;2027-11-06;2027-11-06;2027-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-01;2028-01-01;2028-01-01;2028-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-26;2028-02-26;2028-02-26;2028-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-22;2028-04-22;2028-04-22;2028-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-06-17;2028-06-17;2028-06-17;2028-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-12;2028-08-12;2028-08-12;2028-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-07;2028-10-07;2028-10-07;2028-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-02;2028-12-02;2028-12-02;2028-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-27;2029-01-27;2029-01-27;2029-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-24;2029-03-24;2029-03-24;2029-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-19;2029-05-19;2029-05-19;2029-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-14;2029-07-14;2029-07-14;2029-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-08;2029-09-08;2029-09-08;2029-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-03;2029-11-03;2029-11-03;2029-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-29;2029-12-29;2029-12-29;2029-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-23;2030-02-23;2030-02-23;2030-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-20;2030-04-20;2030-04-20;2030-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-06-15;2030-06-15;2030-06-15;2030-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-10;2030-08-10;2030-08-10;2030-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-05;2030-10-05;2030-10-05;2030-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-30;2030-11-30;2030-11-30;2030-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-25;2031-01-25;2031-01-25;2031-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-22;2031-03-22;2031-03-22;2031-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-05-17;2031-05-17;2031-05-17;2031-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-12;2031-07-12;2031-07-12;2031-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-06;2031-09-06;2031-09-06;2031-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-01;2031-11-01;2031-11-01;2031-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-27;2031-12-27;2031-12-27;2031-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-21;2032-02-21;2032-02-21;2032-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-04-17;2032-04-17;2032-04-17;2032-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-12;2032-06-12;2032-06-12;2032-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-07;2032-08-07;2032-08-07;2032-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-02;2032-10-02;2032-10-02;2032-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-27;2032-11-27;2032-11-27;2032-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-22;2033-01-22;2033-01-22;2033-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-19;2033-03-19;2033-03-19;2033-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-14;2033-05-14;2033-05-14;2033-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-09;2033-07-09;2033-07-09;2033-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-03;2033-09-03;2033-09-03;2033-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-29;2033-10-29;2033-10-29;2033-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-24;2033-12-24;2033-12-24;2033-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-18;2034-02-18;2034-02-18;2034-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-04-15;2034-04-15;2034-04-15;2034-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-10;2034-06-10;2034-06-10;2034-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-05;2034-08-05;2034-08-05;2034-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-30;2034-09-30;2034-09-30;2034-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-25;2034-11-25;2034-11-25;2034-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-20;2035-01-20;2035-01-20;2035-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-03-17;2035-03-17;2035-03-17;2035-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-12;2035-05-12;2035-05-12;2035-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"COV";"Site Closure";"";"Closure Visit";"";2035-07-07;2035-07-07;2035-07-07;2035-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-01;2035-09-01;2035-09-01;2035-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-27;2035-10-27;2035-10-27;2035-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-22;2035-12-22;2035-12-22;2035-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-02-16;2036-02-16;2036-02-16;2036-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-12;2036-04-12;2036-04-12;2036-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-07;2036-06-07;2036-06-07;2036-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-02;2036-08-02;2036-08-02;2036-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-27;2036-09-27;2036-09-27;2036-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10006";"DD5-US10006";"Manreet";"Kaur";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-22;2036-11-22;2036-11-22;2036-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10007";"DD5-US10007";"Paul";"Sepe";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10008";"DD5-US10008";"Mark";"Gerich";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2025-10-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;2025-12-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"COV";"Site Closure";"";"Closure Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10009";"DD5-US10009";"Jeff";"Bullock";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-14;2025-11-14;2025-11-14;2025-11-14;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"COV";"Site Closure";"";"Closure Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10010";"DD5-US10010";"Paris";"Charilaou";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-09-26;2025-09-26;2025-09-26;2025-09-26;2025-11-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-21;2025-11-21;2025-11-21;2025-11-21;2026-02-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"COV";"Site Closure";"";"Closure Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10011";"DD5-US10011";"Amir";"Rezk";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-06;"Farrah";"";"Khan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-09-23;2025-09-23;2025-09-23;2025-09-23;2026-04-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2025-11-18;2025-11-18;2025-11-18;2025-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-13;2026-01-13;2026-01-13;2026-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"COV";"Site Closure";"";"Closure Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10012";"DD5-US10012";"George";"DuVall";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"SQV";"Qualification Visit";"";"Qualification Visit";"Within the plan";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-03;2025-10-03;2025-10-03;2025-10-03;2026-02-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-11-28;2025-11-28;2025-11-28;2025-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-23;2026-01-23;2026-01-23;2026-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10013";"DD5-US10013";"Priya";"Sehgal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"";"Site Initiation";"Planned";"";"";;;;;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-23;"Alroy";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10014";"DD5-US10014";"Moheb";"Boktor";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10015";"DD5-US10015";"Humberto";"Aguilar";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-06;2025-05-06;2025-05-06;2025-05-06;2025-05-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-09;2025-10-09;2025-10-09;2025-10-09;2025-10-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-04;2025-12-04;2025-12-04;2025-12-04;2026-01-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"COV";"Site Closure";"";"Closure Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10016";"DD5-US10016";"Nicholas C";"Karyotakis";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-01-12;2026-01-12;2026-01-12;2026-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"COV";"Site Closure";"";"Closure Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10017";"DD5-US10017";"Caroline";"Hwang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-06;2036-10-06;2036-10-06;2036-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-01;2025-10-01;2025-10-01;2025-10-01;2025-09-30;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-26;2025-11-26;2025-11-26;2025-11-26;2026-01-08;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-21;2026-01-21;2026-01-21;2026-01-21;2026-04-01;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"COV";"Site Closure";"";"Closure Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10018";"DD5-US10018";"Jay";"Desai";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2025-10-17;2025-10-17;2025-10-17;2025-10-17;2025-10-27;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"";2025-12-12;2025-12-12;2025-12-12;2025-12-12;2025-11-12;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;2026-02-25;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;2026-04-10;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"COV";"Site Closure";"";"Closure Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10019";"DD5-US10019";"Bhaktasharan";"Patel";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-27;2025-10-27;2025-10-27;2025-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-22;2025-12-22;2025-12-22;2025-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-16;2026-02-16;2026-02-16;2026-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-13;2026-04-13;2026-04-13;2026-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-08;2026-06-08;2026-06-08;2026-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-03;2026-08-03;2026-08-03;2026-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-28;2026-09-28;2026-09-28;2026-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-23;2026-11-23;2026-11-23;2026-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-18;2027-01-18;2027-01-18;2027-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-15;2027-03-15;2027-03-15;2027-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-10;2027-05-10;2027-05-10;2027-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-05;2027-07-05;2027-07-05;2027-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-30;2027-08-30;2027-08-30;2027-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-25;2027-10-25;2027-10-25;2027-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-20;2027-12-20;2027-12-20;2027-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-14;2028-02-14;2028-02-14;2028-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-10;2028-04-10;2028-04-10;2028-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-05;2028-06-05;2028-06-05;2028-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-31;2028-07-31;2028-07-31;2028-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-25;2028-09-25;2028-09-25;2028-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-20;2028-11-20;2028-11-20;2028-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-15;2029-01-15;2029-01-15;2029-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-12;2029-03-12;2029-03-12;2029-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-07;2029-05-07;2029-05-07;2029-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-02;2029-07-02;2029-07-02;2029-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-27;2029-08-27;2029-08-27;2029-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-22;2029-10-22;2029-10-22;2029-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-17;2029-12-17;2029-12-17;2029-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-11;2030-02-11;2030-02-11;2030-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-08;2030-04-08;2030-04-08;2030-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-03;2030-06-03;2030-06-03;2030-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-29;2030-07-29;2030-07-29;2030-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-23;2030-09-23;2030-09-23;2030-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-18;2030-11-18;2030-11-18;2030-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-13;2031-01-13;2031-01-13;2031-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-10;2031-03-10;2031-03-10;2031-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-05;2031-05-05;2031-05-05;2031-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-30;2031-06-30;2031-06-30;2031-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-25;2031-08-25;2031-08-25;2031-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-20;2031-10-20;2031-10-20;2031-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-15;2031-12-15;2031-12-15;2031-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-09;2032-02-09;2032-02-09;2032-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-05;2032-04-05;2032-04-05;2032-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-31;2032-05-31;2032-05-31;2032-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-26;2032-07-26;2032-07-26;2032-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-20;2032-09-20;2032-09-20;2032-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-15;2032-11-15;2032-11-15;2032-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-10;2033-01-10;2033-01-10;2033-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-07;2033-03-07;2033-03-07;2033-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-02;2033-05-02;2033-05-02;2033-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-27;2033-06-27;2033-06-27;2033-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-22;2033-08-22;2033-08-22;2033-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-17;2033-10-17;2033-10-17;2033-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-12;2033-12-12;2033-12-12;2033-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-06;2034-02-06;2034-02-06;2034-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-03;2034-04-03;2034-04-03;2034-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-29;2034-05-29;2034-05-29;2034-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-24;2034-07-24;2034-07-24;2034-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-18;2034-09-18;2034-09-18;2034-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-13;2034-11-13;2034-11-13;2034-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-08;2035-01-08;2035-01-08;2035-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"COV";"Site Closure";"";"Closure Visit";"";2035-03-05;2035-03-05;2035-03-05;2035-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-30;2035-04-30;2035-04-30;2035-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-25;2035-06-25;2035-06-25;2035-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-20;2035-08-20;2035-08-20;2035-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-15;2035-10-15;2035-10-15;2035-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-10;2035-12-10;2035-12-10;2035-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-04;2036-02-04;2036-02-04;2036-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-31;2036-03-31;2036-03-31;2036-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-26;2036-05-26;2036-05-26;2036-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10020";"DD5-US10020";"Mohamed";"Naem";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-21;2036-07-21;2036-07-21;2036-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-10;2025-10-10;2025-10-10;2025-10-10;2026-04-13;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2025-12-05;2025-12-05;2025-12-05;2025-12-05;;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10021";"DD5-US10021";"Shoba";"Mendu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-16;2025-10-16;2025-10-16;2025-10-16;2025-10-29;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2025-12-01;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;2026-01-13;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;2026-02-25;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"COV";"Site Closure";"";"Closure Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10022";"DD5-US10022";"Hyun Sil";"Kim";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";;;;;2025-10-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-05;2025-12-05;2025-12-05;2025-12-05;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-03-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10023";"DD5-US10023";"Michael";"Jones";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-07;2025-05-07;2025-05-07;2025-05-07;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2026-03-28;2026-03-28;2026-03-28;2026-03-28;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-23;2026-05-23;2026-05-23;2026-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-18;2026-07-18;2026-07-18;2026-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-12;2026-09-12;2026-09-12;2026-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-07;2026-11-07;2026-11-07;2026-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-02;2027-01-02;2027-01-02;2027-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-27;2027-02-27;2027-02-27;2027-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-24;2027-04-24;2027-04-24;2027-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-19;2027-06-19;2027-06-19;2027-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-14;2027-08-14;2027-08-14;2027-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-09;2027-10-09;2027-10-09;2027-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-04;2027-12-04;2027-12-04;2027-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-29;2028-01-29;2028-01-29;2028-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-25;2028-03-25;2028-03-25;2028-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-20;2028-05-20;2028-05-20;2028-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-15;2028-07-15;2028-07-15;2028-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-09;2028-09-09;2028-09-09;2028-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-04;2028-11-04;2028-11-04;2028-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-30;2028-12-30;2028-12-30;2028-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-24;2029-02-24;2029-02-24;2029-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-21;2029-04-21;2029-04-21;2029-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-16;2029-06-16;2029-06-16;2029-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-11;2029-08-11;2029-08-11;2029-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-06;2029-10-06;2029-10-06;2029-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-01;2029-12-01;2029-12-01;2029-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-26;2030-01-26;2030-01-26;2030-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-23;2030-03-23;2030-03-23;2030-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-18;2030-05-18;2030-05-18;2030-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-13;2030-07-13;2030-07-13;2030-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-07;2030-09-07;2030-09-07;2030-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-02;2030-11-02;2030-11-02;2030-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-28;2030-12-28;2030-12-28;2030-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-22;2031-02-22;2031-02-22;2031-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-19;2031-04-19;2031-04-19;2031-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-14;2031-06-14;2031-06-14;2031-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-09;2031-08-09;2031-08-09;2031-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-04;2031-10-04;2031-10-04;2031-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-29;2031-11-29;2031-11-29;2031-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-24;2032-01-24;2032-01-24;2032-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-20;2032-03-20;2032-03-20;2032-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-15;2032-05-15;2032-05-15;2032-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-10;2032-07-10;2032-07-10;2032-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-04;2032-09-04;2032-09-04;2032-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-30;2032-10-30;2032-10-30;2032-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-25;2032-12-25;2032-12-25;2032-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-19;2033-02-19;2033-02-19;2033-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-16;2033-04-16;2033-04-16;2033-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-11;2033-06-11;2033-06-11;2033-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-06;2033-08-06;2033-08-06;2033-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-01;2033-10-01;2033-10-01;2033-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-26;2033-11-26;2033-11-26;2033-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-21;2034-01-21;2034-01-21;2034-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-18;2034-03-18;2034-03-18;2034-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-13;2034-05-13;2034-05-13;2034-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-08;2034-07-08;2034-07-08;2034-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-02;2034-09-02;2034-09-02;2034-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-28;2034-10-28;2034-10-28;2034-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-23;2034-12-23;2034-12-23;2034-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-17;2035-02-17;2035-02-17;2035-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-14;2035-04-14;2035-04-14;2035-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-09;2035-06-09;2035-06-09;2035-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-04;2035-08-04;2035-08-04;2035-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-29;2035-09-29;2035-09-29;2035-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-24;2035-11-24;2035-11-24;2035-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-19;2036-01-19;2036-01-19;2036-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-15;2036-03-15;2036-03-15;2036-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-10;2036-05-10;2036-05-10;2036-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-05;2036-07-05;2036-07-05;2036-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-30;2036-08-30;2036-08-30;2036-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-25;2036-10-25;2036-10-25;2036-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-20;2036-12-20;2036-12-20;2036-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10024";"DD5-US10024";"William";"Holderman";"COV";"Site Closure";"";"Closure Visit";"";2037-02-14;2037-02-14;2037-02-14;2037-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10025";"DD5-US10025";"Nicolas";"Procaccini";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-03;2025-12-03;2025-12-03;2025-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-28;2026-01-28;2026-01-28;2026-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-25;2026-03-25;2026-03-25;2026-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"COV";"Site Closure";"";"Closure Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10026";"DD5-US10026";"Michael";"Chiorean";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-27;2036-08-27;2036-08-27;2036-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2025-11-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-29;"Farrah";"";"Khan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-03;2025-12-03;2025-12-03;2025-12-03;2025-12-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-02-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-25;2026-03-25;2026-03-25;2026-03-25;2026-03-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"COV";"Site Closure";"";"Closure Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10027";"DD5-US10027";"Manuel";"Rodriguez";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10028";"DD5-US10028";"Harry";"Sarles";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-06-20;"Alroy";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-05-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-09-05;2036-09-05;2036-09-05;2036-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-31;2036-10-31;2036-10-31;2036-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-26;2036-12-26;2036-12-26;2036-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10029";"DD5-US10029";"Timothy";"Ritter";"COV";"Site Closure";"";"Closure Visit";"";2037-02-20;2037-02-20;2037-02-20;2037-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";;;;;2026-03-05;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-09;2025-05-09;2025-05-09;2025-05-09;2025-06-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-10;2026-03-10;2026-03-10;2026-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-05;2026-05-05;2026-05-05;2026-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-30;2026-06-30;2026-06-30;2026-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-25;2026-08-25;2026-08-25;2026-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-20;2026-10-20;2026-10-20;2026-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-15;2026-12-15;2026-12-15;2026-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-09;2027-02-09;2027-02-09;2027-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-06;2027-04-06;2027-04-06;2027-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-01;2027-06-01;2027-06-01;2027-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-27;2027-07-27;2027-07-27;2027-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-21;2027-09-21;2027-09-21;2027-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-16;2027-11-16;2027-11-16;2027-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-11;2028-01-11;2028-01-11;2028-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-07;2028-03-07;2028-03-07;2028-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-02;2028-05-02;2028-05-02;2028-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-27;2028-06-27;2028-06-27;2028-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-22;2028-08-22;2028-08-22;2028-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-17;2028-10-17;2028-10-17;2028-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-12;2028-12-12;2028-12-12;2028-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-06;2029-02-06;2029-02-06;2029-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-03;2029-04-03;2029-04-03;2029-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-29;2029-05-29;2029-05-29;2029-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-24;2029-07-24;2029-07-24;2029-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-18;2029-09-18;2029-09-18;2029-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-13;2029-11-13;2029-11-13;2029-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-08;2030-01-08;2030-01-08;2030-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-05;2030-03-05;2030-03-05;2030-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-30;2030-04-30;2030-04-30;2030-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-25;2030-06-25;2030-06-25;2030-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-20;2030-08-20;2030-08-20;2030-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-15;2030-10-15;2030-10-15;2030-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-10;2030-12-10;2030-12-10;2030-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-04;2031-02-04;2031-02-04;2031-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-01;2031-04-01;2031-04-01;2031-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-27;2031-05-27;2031-05-27;2031-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-22;2031-07-22;2031-07-22;2031-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-16;2031-09-16;2031-09-16;2031-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-11;2031-11-11;2031-11-11;2031-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-06;2032-01-06;2032-01-06;2032-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-02;2032-03-02;2032-03-02;2032-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-27;2032-04-27;2032-04-27;2032-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-22;2032-06-22;2032-06-22;2032-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-17;2032-08-17;2032-08-17;2032-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-12;2032-10-12;2032-10-12;2032-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-07;2032-12-07;2032-12-07;2032-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-01;2033-02-01;2033-02-01;2033-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-29;2033-03-29;2033-03-29;2033-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-24;2033-05-24;2033-05-24;2033-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-19;2033-07-19;2033-07-19;2033-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-13;2033-09-13;2033-09-13;2033-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-08;2033-11-08;2033-11-08;2033-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-03;2034-01-03;2034-01-03;2034-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-28;2034-02-28;2034-02-28;2034-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-25;2034-04-25;2034-04-25;2034-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-20;2034-06-20;2034-06-20;2034-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-15;2034-08-15;2034-08-15;2034-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-10;2034-10-10;2034-10-10;2034-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-05;2034-12-05;2034-12-05;2034-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-30;2035-01-30;2035-01-30;2035-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-27;2035-03-27;2035-03-27;2035-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"COV";"Site Closure";"";"Closure Visit";"";2035-05-22;2035-05-22;2035-05-22;2035-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-17;2035-07-17;2035-07-17;2035-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-11;2035-09-11;2035-09-11;2035-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-06;2035-11-06;2035-11-06;2035-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-01;2036-01-01;2036-01-01;2036-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-26;2036-02-26;2036-02-26;2036-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-22;2036-04-22;2036-04-22;2036-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-17;2036-06-17;2036-06-17;2036-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-12;2036-08-12;2036-08-12;2036-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10030";"DD5-US10030";"Ellen";"Scherl";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-07;2036-10-07;2036-10-07;2036-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10031";"DD5-US10031";"Leonel";"Reyes";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-06-16;"Alroy";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-US10032";"DD5-US10032";"Nina";"Merel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-20;"Farrah";"";"Khan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-06-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-02-09;2026-02-09;2026-02-09;2026-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-06;2026-04-06;2026-04-06;2026-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-01;2026-06-01;2026-06-01;2026-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-27;2026-07-27;2026-07-27;2026-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-21;2026-09-21;2026-09-21;2026-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-16;2026-11-16;2026-11-16;2026-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-11;2027-01-11;2027-01-11;2027-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-08;2027-03-08;2027-03-08;2027-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-03;2027-05-03;2027-05-03;2027-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-28;2027-06-28;2027-06-28;2027-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-23;2027-08-23;2027-08-23;2027-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-18;2027-10-18;2027-10-18;2027-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-13;2027-12-13;2027-12-13;2027-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-07;2028-02-07;2028-02-07;2028-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-03;2028-04-03;2028-04-03;2028-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-29;2028-05-29;2028-05-29;2028-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-24;2028-07-24;2028-07-24;2028-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-18;2028-09-18;2028-09-18;2028-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-13;2028-11-13;2028-11-13;2028-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-08;2029-01-08;2029-01-08;2029-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-05;2029-03-05;2029-03-05;2029-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-30;2029-04-30;2029-04-30;2029-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-25;2029-06-25;2029-06-25;2029-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-20;2029-08-20;2029-08-20;2029-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-15;2029-10-15;2029-10-15;2029-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-10;2029-12-10;2029-12-10;2029-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-04;2030-02-04;2030-02-04;2030-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-01;2030-04-01;2030-04-01;2030-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-27;2030-05-27;2030-05-27;2030-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-22;2030-07-22;2030-07-22;2030-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-16;2030-09-16;2030-09-16;2030-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-11;2030-11-11;2030-11-11;2030-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-06;2031-01-06;2031-01-06;2031-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-03;2031-03-03;2031-03-03;2031-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-28;2031-04-28;2031-04-28;2031-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-23;2031-06-23;2031-06-23;2031-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-18;2031-08-18;2031-08-18;2031-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-13;2031-10-13;2031-10-13;2031-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-08;2031-12-08;2031-12-08;2031-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-02;2032-02-02;2032-02-02;2032-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-29;2032-03-29;2032-03-29;2032-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-24;2032-05-24;2032-05-24;2032-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-19;2032-07-19;2032-07-19;2032-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-13;2032-09-13;2032-09-13;2032-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-08;2032-11-08;2032-11-08;2032-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-03;2033-01-03;2033-01-03;2033-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-28;2033-02-28;2033-02-28;2033-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-25;2033-04-25;2033-04-25;2033-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-20;2033-06-20;2033-06-20;2033-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-15;2033-08-15;2033-08-15;2033-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-10;2033-10-10;2033-10-10;2033-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-05;2033-12-05;2033-12-05;2033-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-30;2034-01-30;2034-01-30;2034-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-27;2034-03-27;2034-03-27;2034-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-22;2034-05-22;2034-05-22;2034-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-17;2034-07-17;2034-07-17;2034-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-11;2034-09-11;2034-09-11;2034-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-06;2034-11-06;2034-11-06;2034-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-01;2035-01-01;2035-01-01;2035-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-26;2035-02-26;2035-02-26;2035-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-23;2035-04-23;2035-04-23;2035-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"COV";"Site Closure";"";"Closure Visit";"";2035-06-18;2035-06-18;2035-06-18;2035-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-13;2035-08-13;2035-08-13;2035-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-08;2035-10-08;2035-10-08;2035-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-03;2035-12-03;2035-12-03;2035-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-28;2036-01-28;2036-01-28;2036-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-24;2036-03-24;2036-03-24;2036-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-19;2036-05-19;2036-05-19;2036-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-14;2036-07-14;2036-07-14;2036-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-08;2036-09-08;2036-09-08;2036-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10033";"DD5-US10033";"Julia";"Liu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-03;2036-11-03;2036-11-03;2036-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10034";"DD5-US10034";"Steven";"Katzman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-06-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10035";"DD5-US10035";"Houssam";"Al Kharrat";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10036";"DD5-US10036";"Benjamin";"Cohen";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-10;2025-05-10;2025-05-10;2025-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10037";"DD5-US10037";"David";"Ziring";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-10;2025-05-10;2025-05-10;2025-05-10;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10038";"DD5-US10038";"Chirag";"Trivedi";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-24;2025-11-24;2025-11-24;2025-11-24;2026-04-17;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-19;2026-01-19;2026-01-19;2026-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"COV";"Site Closure";"";"Closure Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10039";"DD5-US10039";"David";"Hudesman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-09;2025-10-09;2025-10-09;2025-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-04;2025-12-04;2025-12-04;2025-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-29;2026-01-29;2026-01-29;2026-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-26;2026-03-26;2026-03-26;2026-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-21;2026-05-21;2026-05-21;2026-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-16;2026-07-16;2026-07-16;2026-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-10;2026-09-10;2026-09-10;2026-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-05;2026-11-05;2026-11-05;2026-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-31;2026-12-31;2026-12-31;2026-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-25;2027-02-25;2027-02-25;2027-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-22;2027-04-22;2027-04-22;2027-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-17;2027-06-17;2027-06-17;2027-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-12;2027-08-12;2027-08-12;2027-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-07;2027-10-07;2027-10-07;2027-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-02;2027-12-02;2027-12-02;2027-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-27;2028-01-27;2028-01-27;2028-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-23;2028-03-23;2028-03-23;2028-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-18;2028-05-18;2028-05-18;2028-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-13;2028-07-13;2028-07-13;2028-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-07;2028-09-07;2028-09-07;2028-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-02;2028-11-02;2028-11-02;2028-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-28;2028-12-28;2028-12-28;2028-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-22;2029-02-22;2029-02-22;2029-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-19;2029-04-19;2029-04-19;2029-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-14;2029-06-14;2029-06-14;2029-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-09;2029-08-09;2029-08-09;2029-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-04;2029-10-04;2029-10-04;2029-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-29;2029-11-29;2029-11-29;2029-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-24;2030-01-24;2030-01-24;2030-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-21;2030-03-21;2030-03-21;2030-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-16;2030-05-16;2030-05-16;2030-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-11;2030-07-11;2030-07-11;2030-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-05;2030-09-05;2030-09-05;2030-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-31;2030-10-31;2030-10-31;2030-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-26;2030-12-26;2030-12-26;2030-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-20;2031-02-20;2031-02-20;2031-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-17;2031-04-17;2031-04-17;2031-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-12;2031-06-12;2031-06-12;2031-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-07;2031-08-07;2031-08-07;2031-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-02;2031-10-02;2031-10-02;2031-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-27;2031-11-27;2031-11-27;2031-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-22;2032-01-22;2032-01-22;2032-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-18;2032-03-18;2032-03-18;2032-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-13;2032-05-13;2032-05-13;2032-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-08;2032-07-08;2032-07-08;2032-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-02;2032-09-02;2032-09-02;2032-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-28;2032-10-28;2032-10-28;2032-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-23;2032-12-23;2032-12-23;2032-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-17;2033-02-17;2033-02-17;2033-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-14;2033-04-14;2033-04-14;2033-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-09;2033-06-09;2033-06-09;2033-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-04;2033-08-04;2033-08-04;2033-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-29;2033-09-29;2033-09-29;2033-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-24;2033-11-24;2033-11-24;2033-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-19;2034-01-19;2034-01-19;2034-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-16;2034-03-16;2034-03-16;2034-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-11;2034-05-11;2034-05-11;2034-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-06;2034-07-06;2034-07-06;2034-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-31;2034-08-31;2034-08-31;2034-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-26;2034-10-26;2034-10-26;2034-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-21;2034-12-21;2034-12-21;2034-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"COV";"Site Closure";"";"Closure Visit";"";2035-02-15;2035-02-15;2035-02-15;2035-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-12;2035-04-12;2035-04-12;2035-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-07;2035-06-07;2035-06-07;2035-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-02;2035-08-02;2035-08-02;2035-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-27;2035-09-27;2035-09-27;2035-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-22;2035-11-22;2035-11-22;2035-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-17;2036-01-17;2036-01-17;2036-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-13;2036-03-13;2036-03-13;2036-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-08;2036-05-08;2036-05-08;2036-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10040";"DD5-US10040";"Manuchehr";"Darani";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-03;2036-07-03;2036-07-03;2036-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10041";"DD5-US10041";"Kofi";"Clarke";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"Jannella";"";"Dash" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-17;2025-10-17;2025-10-17;2025-10-17;2025-12-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-12;2025-12-12;2025-12-12;2025-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-06;2026-02-06;2026-02-06;2026-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-03;2026-04-03;2026-04-03;2026-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"COV";"Site Closure";"";"Closure Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10042";"DD5-US10042";"Mouhamad";"Al-Sabbagh";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10043";"DD5-US10043";"Jessica";"Allegretti";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"SIV";"Site Initiation";"Planned";"Initiation Visit";"";2025-11-21;2025-11-21;2025-11-21;2025-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-16;2026-01-16;2026-01-16;2026-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-13;2026-03-13;2026-03-13;2026-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-08;2026-05-08;2026-05-08;2026-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-03;2026-07-03;2026-07-03;2026-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-28;2026-08-28;2026-08-28;2026-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-23;2026-10-23;2026-10-23;2026-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-18;2026-12-18;2026-12-18;2026-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-12;2027-02-12;2027-02-12;2027-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-09;2027-04-09;2027-04-09;2027-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-04;2027-06-04;2027-06-04;2027-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-30;2027-07-30;2027-07-30;2027-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-24;2027-09-24;2027-09-24;2027-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-19;2027-11-19;2027-11-19;2027-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-14;2028-01-14;2028-01-14;2028-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-10;2028-03-10;2028-03-10;2028-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-05;2028-05-05;2028-05-05;2028-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-30;2028-06-30;2028-06-30;2028-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-25;2028-08-25;2028-08-25;2028-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-20;2028-10-20;2028-10-20;2028-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-15;2028-12-15;2028-12-15;2028-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-09;2029-02-09;2029-02-09;2029-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-06;2029-04-06;2029-04-06;2029-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-01;2029-06-01;2029-06-01;2029-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-27;2029-07-27;2029-07-27;2029-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-21;2029-09-21;2029-09-21;2029-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-16;2029-11-16;2029-11-16;2029-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-11;2030-01-11;2030-01-11;2030-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-08;2030-03-08;2030-03-08;2030-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-03;2030-05-03;2030-05-03;2030-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-28;2030-06-28;2030-06-28;2030-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-23;2030-08-23;2030-08-23;2030-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-18;2030-10-18;2030-10-18;2030-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-13;2030-12-13;2030-12-13;2030-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-07;2031-02-07;2031-02-07;2031-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-04;2031-04-04;2031-04-04;2031-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-30;2031-05-30;2031-05-30;2031-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-25;2031-07-25;2031-07-25;2031-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-19;2031-09-19;2031-09-19;2031-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-14;2031-11-14;2031-11-14;2031-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-09;2032-01-09;2032-01-09;2032-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-05;2032-03-05;2032-03-05;2032-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-30;2032-04-30;2032-04-30;2032-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-25;2032-06-25;2032-06-25;2032-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-20;2032-08-20;2032-08-20;2032-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-15;2032-10-15;2032-10-15;2032-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-10;2032-12-10;2032-12-10;2032-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-04;2033-02-04;2033-02-04;2033-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-01;2033-04-01;2033-04-01;2033-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-27;2033-05-27;2033-05-27;2033-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-22;2033-07-22;2033-07-22;2033-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-16;2033-09-16;2033-09-16;2033-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-11;2033-11-11;2033-11-11;2033-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-06;2034-01-06;2034-01-06;2034-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-03;2034-03-03;2034-03-03;2034-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-28;2034-04-28;2034-04-28;2034-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-23;2034-06-23;2034-06-23;2034-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-18;2034-08-18;2034-08-18;2034-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-13;2034-10-13;2034-10-13;2034-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-08;2034-12-08;2034-12-08;2034-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-02;2035-02-02;2035-02-02;2035-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"COV";"Site Closure";"";"Closure Visit";"";2035-03-30;2035-03-30;2035-03-30;2035-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-25;2035-05-25;2035-05-25;2035-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-20;2035-07-20;2035-07-20;2035-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-14;2035-09-14;2035-09-14;2035-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-09;2035-11-09;2035-11-09;2035-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-04;2036-01-04;2036-01-04;2036-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-29;2036-02-29;2036-02-29;2036-02-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-25;2036-04-25;2036-04-25;2036-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-20;2036-06-20;2036-06-20;2036-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10044";"DD5-US10044";"Gerald";"Dryden";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-15;2036-08-15;2036-08-15;2036-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10045";"DD5-US10045";"Freddy";"Caldera";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-28;"Farrah";"";"Khan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2025-10-17;"Tina";"";"Ross-Cruz" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2026-01-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-20;2026-03-20;2026-03-20;2026-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10046";"DD5-US10046";"Jeffrey";"Fine";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10047";"DD5-US10047";"Alexandra";"Gutierrez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-11-17;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-08;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-01-19;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-02-09;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-03-03;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV5";"Monitoring Visit 5";"Scheduled";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10048";"DD5-US10048";"Tarek";"Hassanein";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2025-10-15;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-19;"Farrah";"";"Khan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-03;2025-12-03;2025-12-03;2025-12-03;2025-10-30;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-28;2026-01-28;2026-01-28;2026-01-28;2026-01-08;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-25;2026-03-25;2026-03-25;2026-03-25;2026-01-30;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-20;2026-05-20;2026-05-20;2026-05-20;2026-02-23;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-15;2026-07-15;2026-07-15;2026-07-15;2026-04-15;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-09;2026-09-09;2026-09-09;2026-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-04;2026-11-04;2026-11-04;2026-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-30;2026-12-30;2026-12-30;2026-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-24;2027-02-24;2027-02-24;2027-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-21;2027-04-21;2027-04-21;2027-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-16;2027-06-16;2027-06-16;2027-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-11;2027-08-11;2027-08-11;2027-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-06;2027-10-06;2027-10-06;2027-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-01;2027-12-01;2027-12-01;2027-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-26;2028-01-26;2028-01-26;2028-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-22;2028-03-22;2028-03-22;2028-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-17;2028-05-17;2028-05-17;2028-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-12;2028-07-12;2028-07-12;2028-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-06;2028-09-06;2028-09-06;2028-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-01;2028-11-01;2028-11-01;2028-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-27;2028-12-27;2028-12-27;2028-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-21;2029-02-21;2029-02-21;2029-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-18;2029-04-18;2029-04-18;2029-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-13;2029-06-13;2029-06-13;2029-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-08;2029-08-08;2029-08-08;2029-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-03;2029-10-03;2029-10-03;2029-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-28;2029-11-28;2029-11-28;2029-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-23;2030-01-23;2030-01-23;2030-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-20;2030-03-20;2030-03-20;2030-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-15;2030-05-15;2030-05-15;2030-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-10;2030-07-10;2030-07-10;2030-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-04;2030-09-04;2030-09-04;2030-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-30;2030-10-30;2030-10-30;2030-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-25;2030-12-25;2030-12-25;2030-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-19;2031-02-19;2031-02-19;2031-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-16;2031-04-16;2031-04-16;2031-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-11;2031-06-11;2031-06-11;2031-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-06;2031-08-06;2031-08-06;2031-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-01;2031-10-01;2031-10-01;2031-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-26;2031-11-26;2031-11-26;2031-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-21;2032-01-21;2032-01-21;2032-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-17;2032-03-17;2032-03-17;2032-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-12;2032-05-12;2032-05-12;2032-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-07;2032-07-07;2032-07-07;2032-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-01;2032-09-01;2032-09-01;2032-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-27;2032-10-27;2032-10-27;2032-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-22;2032-12-22;2032-12-22;2032-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-16;2033-02-16;2033-02-16;2033-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-13;2033-04-13;2033-04-13;2033-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-08;2033-06-08;2033-06-08;2033-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-03;2033-08-03;2033-08-03;2033-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-28;2033-09-28;2033-09-28;2033-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-23;2033-11-23;2033-11-23;2033-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-18;2034-01-18;2034-01-18;2034-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-15;2034-03-15;2034-03-15;2034-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-10;2034-05-10;2034-05-10;2034-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-05;2034-07-05;2034-07-05;2034-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-30;2034-08-30;2034-08-30;2034-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-25;2034-10-25;2034-10-25;2034-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-20;2034-12-20;2034-12-20;2034-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"COV";"Site Closure";"";"Closure Visit";"";2035-02-14;2035-02-14;2035-02-14;2035-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-11;2035-04-11;2035-04-11;2035-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-06;2035-06-06;2035-06-06;2035-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-01;2035-08-01;2035-08-01;2035-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-26;2035-09-26;2035-09-26;2035-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-21;2035-11-21;2035-11-21;2035-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-16;2036-01-16;2036-01-16;2036-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-12;2036-03-12;2036-03-12;2036-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-07;2036-05-07;2036-05-07;2036-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10049";"DD5-US10049";"Shahriar";"Sedghi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-02;2036-07-02;2036-07-02;2036-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-11-17;2025-11-17;2025-11-17;2025-11-17;2025-12-19;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2026-01-12;2026-01-12;2026-01-12;2026-01-12;2026-03-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-03-09;2026-03-09;2026-03-09;2026-03-09;2026-04-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-04;2026-05-04;2026-05-04;2026-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-29;2026-06-29;2026-06-29;2026-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-24;2026-08-24;2026-08-24;2026-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-19;2026-10-19;2026-10-19;2026-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-14;2026-12-14;2026-12-14;2026-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-08;2027-02-08;2027-02-08;2027-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-05;2027-04-05;2027-04-05;2027-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-31;2027-05-31;2027-05-31;2027-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-26;2027-07-26;2027-07-26;2027-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-20;2027-09-20;2027-09-20;2027-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-15;2027-11-15;2027-11-15;2027-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-10;2028-01-10;2028-01-10;2028-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-06;2028-03-06;2028-03-06;2028-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-01;2028-05-01;2028-05-01;2028-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-26;2028-06-26;2028-06-26;2028-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-21;2028-08-21;2028-08-21;2028-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-16;2028-10-16;2028-10-16;2028-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-11;2028-12-11;2028-12-11;2028-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-05;2029-02-05;2029-02-05;2029-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-02;2029-04-02;2029-04-02;2029-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-28;2029-05-28;2029-05-28;2029-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-23;2029-07-23;2029-07-23;2029-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-17;2029-09-17;2029-09-17;2029-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-12;2029-11-12;2029-11-12;2029-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-07;2030-01-07;2030-01-07;2030-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-04;2030-03-04;2030-03-04;2030-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-29;2030-04-29;2030-04-29;2030-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-24;2030-06-24;2030-06-24;2030-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-19;2030-08-19;2030-08-19;2030-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-14;2030-10-14;2030-10-14;2030-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-09;2030-12-09;2030-12-09;2030-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-03;2031-02-03;2031-02-03;2031-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-31;2031-03-31;2031-03-31;2031-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-26;2031-05-26;2031-05-26;2031-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-21;2031-07-21;2031-07-21;2031-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-15;2031-09-15;2031-09-15;2031-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-10;2031-11-10;2031-11-10;2031-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-05;2032-01-05;2032-01-05;2032-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-01;2032-03-01;2032-03-01;2032-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-26;2032-04-26;2032-04-26;2032-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-21;2032-06-21;2032-06-21;2032-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-16;2032-08-16;2032-08-16;2032-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-11;2032-10-11;2032-10-11;2032-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-06;2032-12-06;2032-12-06;2032-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-31;2033-01-31;2033-01-31;2033-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-28;2033-03-28;2033-03-28;2033-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-23;2033-05-23;2033-05-23;2033-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-18;2033-07-18;2033-07-18;2033-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-12;2033-09-12;2033-09-12;2033-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-07;2033-11-07;2033-11-07;2033-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-02;2034-01-02;2034-01-02;2034-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-27;2034-02-27;2034-02-27;2034-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-24;2034-04-24;2034-04-24;2034-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-19;2034-06-19;2034-06-19;2034-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-14;2034-08-14;2034-08-14;2034-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-09;2034-10-09;2034-10-09;2034-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-04;2034-12-04;2034-12-04;2034-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-29;2035-01-29;2035-01-29;2035-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"COV";"Site Closure";"";"Closure Visit";"";2035-03-26;2035-03-26;2035-03-26;2035-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-21;2035-05-21;2035-05-21;2035-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-16;2035-07-16;2035-07-16;2035-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-10;2035-09-10;2035-09-10;2035-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-05;2035-11-05;2035-11-05;2035-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-31;2035-12-31;2035-12-31;2035-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-25;2036-02-25;2036-02-25;2036-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-21;2036-04-21;2036-04-21;2036-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-16;2036-06-16;2036-06-16;2036-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10050";"DD5-US10050";"Animesh";"Jain";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-11;2036-08-11;2036-08-11;2036-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10051";"DD5-US10051";"Heba";"Iskandar";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10052";"DD5-US10052";"Lawrence";"Saubermann";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-13;2025-05-13;2025-05-13;2025-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-05;2026-01-05;2026-01-05;2026-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-02;2026-03-02;2026-03-02;2026-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-27;2026-04-27;2026-04-27;2026-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"COV";"Site Closure";"";"Closure Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-04;2036-08-04;2036-08-04;2036-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10053";"DD5-US10053";"Roy";"Peters";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-29;2036-09-29;2036-09-29;2036-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-13;2025-05-13;2025-05-13;2025-05-13;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-16;2025-10-16;2025-10-16;2025-10-16;2026-02-09;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-11;2025-12-11;2025-12-11;2025-12-11;2026-04-22;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-05;2026-02-05;2026-02-05;2026-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-02;2026-04-02;2026-04-02;2026-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-28;2026-05-28;2026-05-28;2026-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-23;2026-07-23;2026-07-23;2026-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-17;2026-09-17;2026-09-17;2026-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-12;2026-11-12;2026-11-12;2026-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-07;2027-01-07;2027-01-07;2027-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-04;2027-03-04;2027-03-04;2027-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-29;2027-04-29;2027-04-29;2027-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-24;2027-06-24;2027-06-24;2027-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-19;2027-08-19;2027-08-19;2027-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-14;2027-10-14;2027-10-14;2027-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-09;2027-12-09;2027-12-09;2027-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-03;2028-02-03;2028-02-03;2028-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-30;2028-03-30;2028-03-30;2028-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-25;2028-05-25;2028-05-25;2028-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-20;2028-07-20;2028-07-20;2028-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-14;2028-09-14;2028-09-14;2028-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-09;2028-11-09;2028-11-09;2028-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-04;2029-01-04;2029-01-04;2029-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-01;2029-03-01;2029-03-01;2029-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-26;2029-04-26;2029-04-26;2029-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-21;2029-06-21;2029-06-21;2029-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-16;2029-08-16;2029-08-16;2029-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-11;2029-10-11;2029-10-11;2029-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-06;2029-12-06;2029-12-06;2029-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-31;2030-01-31;2030-01-31;2030-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-28;2030-03-28;2030-03-28;2030-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-23;2030-05-23;2030-05-23;2030-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-18;2030-07-18;2030-07-18;2030-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-12;2030-09-12;2030-09-12;2030-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-07;2030-11-07;2030-11-07;2030-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-02;2031-01-02;2031-01-02;2031-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-27;2031-02-27;2031-02-27;2031-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-24;2031-04-24;2031-04-24;2031-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-19;2031-06-19;2031-06-19;2031-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-14;2031-08-14;2031-08-14;2031-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-09;2031-10-09;2031-10-09;2031-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-04;2031-12-04;2031-12-04;2031-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-29;2032-01-29;2032-01-29;2032-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-25;2032-03-25;2032-03-25;2032-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-20;2032-05-20;2032-05-20;2032-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-15;2032-07-15;2032-07-15;2032-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-09;2032-09-09;2032-09-09;2032-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-04;2032-11-04;2032-11-04;2032-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-30;2032-12-30;2032-12-30;2032-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-24;2033-02-24;2033-02-24;2033-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-21;2033-04-21;2033-04-21;2033-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-16;2033-06-16;2033-06-16;2033-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-11;2033-08-11;2033-08-11;2033-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-06;2033-10-06;2033-10-06;2033-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-01;2033-12-01;2033-12-01;2033-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-26;2034-01-26;2034-01-26;2034-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-23;2034-03-23;2034-03-23;2034-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-18;2034-05-18;2034-05-18;2034-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-13;2034-07-13;2034-07-13;2034-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-07;2034-09-07;2034-09-07;2034-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-02;2034-11-02;2034-11-02;2034-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-28;2034-12-28;2034-12-28;2034-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"COV";"Site Closure";"";"Closure Visit";"";2035-02-22;2035-02-22;2035-02-22;2035-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-19;2035-04-19;2035-04-19;2035-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-14;2035-06-14;2035-06-14;2035-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-09;2035-08-09;2035-08-09;2035-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-04;2035-10-04;2035-10-04;2035-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-29;2035-11-29;2035-11-29;2035-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-24;2036-01-24;2036-01-24;2036-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-20;2036-03-20;2036-03-20;2036-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-15;2036-05-15;2036-05-15;2036-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10054";"DD5-US10054";"Eric";"Newton";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-10;2036-07-10;2036-07-10;2036-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-01;2025-10-01;2025-10-01;2025-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-11-26;2025-11-26;2025-11-26;2025-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-21;2026-01-21;2026-01-21;2026-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-18;2026-03-18;2026-03-18;2026-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-13;2026-05-13;2026-05-13;2026-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-08;2026-07-08;2026-07-08;2026-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-02;2026-09-02;2026-09-02;2026-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-28;2026-10-28;2026-10-28;2026-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-23;2026-12-23;2026-12-23;2026-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-17;2027-02-17;2027-02-17;2027-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-14;2027-04-14;2027-04-14;2027-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-09;2027-06-09;2027-06-09;2027-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-04;2027-08-04;2027-08-04;2027-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-29;2027-09-29;2027-09-29;2027-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-24;2027-11-24;2027-11-24;2027-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-19;2028-01-19;2028-01-19;2028-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-15;2028-03-15;2028-03-15;2028-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-10;2028-05-10;2028-05-10;2028-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-05;2028-07-05;2028-07-05;2028-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-30;2028-08-30;2028-08-30;2028-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-25;2028-10-25;2028-10-25;2028-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-20;2028-12-20;2028-12-20;2028-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-14;2029-02-14;2029-02-14;2029-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-11;2029-04-11;2029-04-11;2029-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-06;2029-06-06;2029-06-06;2029-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-01;2029-08-01;2029-08-01;2029-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-26;2029-09-26;2029-09-26;2029-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-21;2029-11-21;2029-11-21;2029-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-16;2030-01-16;2030-01-16;2030-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-13;2030-03-13;2030-03-13;2030-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-08;2030-05-08;2030-05-08;2030-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-03;2030-07-03;2030-07-03;2030-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-28;2030-08-28;2030-08-28;2030-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-23;2030-10-23;2030-10-23;2030-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-18;2030-12-18;2030-12-18;2030-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-12;2031-02-12;2031-02-12;2031-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-09;2031-04-09;2031-04-09;2031-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-04;2031-06-04;2031-06-04;2031-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-30;2031-07-30;2031-07-30;2031-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-24;2031-09-24;2031-09-24;2031-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-19;2031-11-19;2031-11-19;2031-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-14;2032-01-14;2032-01-14;2032-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-10;2032-03-10;2032-03-10;2032-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-05;2032-05-05;2032-05-05;2032-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-30;2032-06-30;2032-06-30;2032-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-25;2032-08-25;2032-08-25;2032-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-20;2032-10-20;2032-10-20;2032-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-15;2032-12-15;2032-12-15;2032-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-09;2033-02-09;2033-02-09;2033-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-06;2033-04-06;2033-04-06;2033-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-01;2033-06-01;2033-06-01;2033-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-27;2033-07-27;2033-07-27;2033-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-21;2033-09-21;2033-09-21;2033-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-16;2033-11-16;2033-11-16;2033-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-11;2034-01-11;2034-01-11;2034-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-08;2034-03-08;2034-03-08;2034-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-03;2034-05-03;2034-05-03;2034-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-28;2034-06-28;2034-06-28;2034-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-23;2034-08-23;2034-08-23;2034-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-18;2034-10-18;2034-10-18;2034-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-13;2034-12-13;2034-12-13;2034-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-07;2035-02-07;2035-02-07;2035-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-04;2035-04-04;2035-04-04;2035-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-30;2035-05-30;2035-05-30;2035-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-25;2035-07-25;2035-07-25;2035-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-19;2035-09-19;2035-09-19;2035-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-14;2035-11-14;2035-11-14;2035-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-09;2036-01-09;2036-01-09;2036-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-05;2036-03-05;2036-03-05;2036-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-30;2036-04-30;2036-04-30;2036-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-25;2036-06-25;2036-06-25;2036-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10055";"DD5-US10055";"Cameron";"Sikavi";"COV";"Site Closure";"";"Closure Visit";"";2036-08-20;2036-08-20;2036-08-20;2036-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10056";"DD5-US10056";"Sandra";"Park";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-06-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2025-10-20;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-03-06;2026-03-06;2026-03-06;2026-03-06;2026-01-21;"Johnathan";"";"Flores" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10057";"DD5-US10057";"Pedram";"Enayati";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-23;"Alroy";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2026-02-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10058";"DD5-US10058";"Linda 'annie'";"Feagins";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-14;2025-05-14;2025-05-14;2025-05-14;2025-05-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV1";"Monitoring Visit 1";"Scheduled";"Monitoring Visit";"Within the plan";2025-11-27;2025-12-17;2025-11-27;2025-12-17;2025-12-11;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-01-22;2026-02-11;2026-02-11;2026-02-11;2026-01-22;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"";2026-03-19;2026-04-08;2026-04-08;2026-04-08;2026-03-04;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV4";"Monitoring Visit 4";"Scheduled";"Monitoring Visit";"";2026-05-14;2026-06-03;2026-06-03;2026-06-03;;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-09;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10059";"DD5-US10059";"Jatinder S.";"Pruthi";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-05-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2026-01-09;2026-01-09;2026-01-09;2026-01-09;2026-03-26;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-06;2026-03-06;2026-03-06;2026-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-01;2026-05-01;2026-05-01;2026-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-26;2026-06-26;2026-06-26;2026-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-21;2026-08-21;2026-08-21;2026-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-16;2026-10-16;2026-10-16;2026-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-11;2026-12-11;2026-12-11;2026-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-05;2027-02-05;2027-02-05;2027-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-02;2027-04-02;2027-04-02;2027-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-28;2027-05-28;2027-05-28;2027-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-23;2027-07-23;2027-07-23;2027-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-17;2027-09-17;2027-09-17;2027-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-12;2027-11-12;2027-11-12;2027-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-07;2028-01-07;2028-01-07;2028-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-03;2028-03-03;2028-03-03;2028-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-28;2028-04-28;2028-04-28;2028-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-23;2028-06-23;2028-06-23;2028-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-18;2028-08-18;2028-08-18;2028-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-13;2028-10-13;2028-10-13;2028-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-08;2028-12-08;2028-12-08;2028-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-02;2029-02-02;2029-02-02;2029-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-30;2029-03-30;2029-03-30;2029-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-25;2029-05-25;2029-05-25;2029-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-20;2029-07-20;2029-07-20;2029-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-14;2029-09-14;2029-09-14;2029-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-09;2029-11-09;2029-11-09;2029-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-04;2030-01-04;2030-01-04;2030-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-01;2030-03-01;2030-03-01;2030-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-26;2030-04-26;2030-04-26;2030-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-21;2030-06-21;2030-06-21;2030-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-16;2030-08-16;2030-08-16;2030-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-11;2030-10-11;2030-10-11;2030-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-06;2030-12-06;2030-12-06;2030-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-31;2031-01-31;2031-01-31;2031-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-28;2031-03-28;2031-03-28;2031-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-23;2031-05-23;2031-05-23;2031-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-18;2031-07-18;2031-07-18;2031-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-12;2031-09-12;2031-09-12;2031-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-07;2031-11-07;2031-11-07;2031-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-02;2032-01-02;2032-01-02;2032-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-27;2032-02-27;2032-02-27;2032-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-23;2032-04-23;2032-04-23;2032-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-18;2032-06-18;2032-06-18;2032-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-13;2032-08-13;2032-08-13;2032-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-08;2032-10-08;2032-10-08;2032-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-03;2032-12-03;2032-12-03;2032-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-28;2033-01-28;2033-01-28;2033-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-25;2033-03-25;2033-03-25;2033-03-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-20;2033-05-20;2033-05-20;2033-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-15;2033-07-15;2033-07-15;2033-07-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-09;2033-09-09;2033-09-09;2033-09-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-04;2033-11-04;2033-11-04;2033-11-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-30;2033-12-30;2033-12-30;2033-12-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-24;2034-02-24;2034-02-24;2034-02-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-21;2034-04-21;2034-04-21;2034-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-16;2034-06-16;2034-06-16;2034-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-11;2034-08-11;2034-08-11;2034-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-06;2034-10-06;2034-10-06;2034-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-01;2034-12-01;2034-12-01;2034-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-26;2035-01-26;2035-01-26;2035-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-23;2035-03-23;2035-03-23;2035-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"COV";"Site Closure";"";"Closure Visit";"";2035-05-18;2035-05-18;2035-05-18;2035-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-13;2035-07-13;2035-07-13;2035-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-07;2035-09-07;2035-09-07;2035-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-02;2035-11-02;2035-11-02;2035-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-28;2035-12-28;2035-12-28;2035-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-22;2036-02-22;2036-02-22;2036-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-18;2036-04-18;2036-04-18;2036-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-13;2036-06-13;2036-06-13;2036-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-08;2036-08-08;2036-08-08;2036-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10060";"DD5-US10060";"Connie";"Hsu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-03;2036-10-03;2036-10-03;2036-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10061";"DD5-US10061";"Siddharth";"Singh";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-06-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-01;2025-12-01;2025-12-01;2025-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-26;2026-01-26;2026-01-26;2026-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-23;2026-03-23;2026-03-23;2026-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-18;2026-05-18;2026-05-18;2026-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-13;2026-07-13;2026-07-13;2026-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-07;2026-09-07;2026-09-07;2026-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-02;2026-11-02;2026-11-02;2026-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-28;2026-12-28;2026-12-28;2026-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-22;2027-02-22;2027-02-22;2027-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-19;2027-04-19;2027-04-19;2027-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-14;2027-06-14;2027-06-14;2027-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-09;2027-08-09;2027-08-09;2027-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-04;2027-10-04;2027-10-04;2027-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-29;2027-11-29;2027-11-29;2027-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-24;2028-01-24;2028-01-24;2028-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-20;2028-03-20;2028-03-20;2028-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-15;2028-05-15;2028-05-15;2028-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-10;2028-07-10;2028-07-10;2028-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-04;2028-09-04;2028-09-04;2028-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-30;2028-10-30;2028-10-30;2028-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-25;2028-12-25;2028-12-25;2028-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-19;2029-02-19;2029-02-19;2029-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-16;2029-04-16;2029-04-16;2029-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-11;2029-06-11;2029-06-11;2029-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-06;2029-08-06;2029-08-06;2029-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-01;2029-10-01;2029-10-01;2029-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-26;2029-11-26;2029-11-26;2029-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-21;2030-01-21;2030-01-21;2030-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-18;2030-03-18;2030-03-18;2030-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-13;2030-05-13;2030-05-13;2030-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-08;2030-07-08;2030-07-08;2030-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-02;2030-09-02;2030-09-02;2030-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-28;2030-10-28;2030-10-28;2030-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-23;2030-12-23;2030-12-23;2030-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-17;2031-02-17;2031-02-17;2031-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-14;2031-04-14;2031-04-14;2031-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-09;2031-06-09;2031-06-09;2031-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-04;2031-08-04;2031-08-04;2031-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-29;2031-09-29;2031-09-29;2031-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-24;2031-11-24;2031-11-24;2031-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-19;2032-01-19;2032-01-19;2032-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-15;2032-03-15;2032-03-15;2032-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-10;2032-05-10;2032-05-10;2032-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-05;2032-07-05;2032-07-05;2032-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-30;2032-08-30;2032-08-30;2032-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-25;2032-10-25;2032-10-25;2032-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-20;2032-12-20;2032-12-20;2032-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-14;2033-02-14;2033-02-14;2033-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-11;2033-04-11;2033-04-11;2033-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-06;2033-06-06;2033-06-06;2033-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-01;2033-08-01;2033-08-01;2033-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-26;2033-09-26;2033-09-26;2033-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-21;2033-11-21;2033-11-21;2033-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-16;2034-01-16;2034-01-16;2034-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-13;2034-03-13;2034-03-13;2034-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-08;2034-05-08;2034-05-08;2034-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-03;2034-07-03;2034-07-03;2034-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-28;2034-08-28;2034-08-28;2034-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-23;2034-10-23;2034-10-23;2034-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-18;2034-12-18;2034-12-18;2034-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-12;2035-02-12;2035-02-12;2035-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"COV";"Site Closure";"";"Closure Visit";"";2035-04-09;2035-04-09;2035-04-09;2035-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-04;2035-06-04;2035-06-04;2035-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-30;2035-07-30;2035-07-30;2035-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-24;2035-09-24;2035-09-24;2035-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-19;2035-11-19;2035-11-19;2035-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-14;2036-01-14;2036-01-14;2036-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-10;2036-03-10;2036-03-10;2036-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-05;2036-05-05;2036-05-05;2036-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-30;2036-06-30;2036-06-30;2036-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10062";"DD5-US10062";"Timothy";"Zisman";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-25;2036-08-25;2036-08-25;2036-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"";"Site Initiation";"Completed";"";"";;;;;2025-10-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-06-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-10;2025-11-10;2025-11-10;2025-11-10;2025-10-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-05;2026-01-05;2026-01-05;2026-01-05;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-02;2026-03-02;2026-03-02;2026-03-02;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-04-27;2026-04-27;2026-04-27;2026-04-27;2026-04-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-06-22;2026-06-22;2026-06-22;2026-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-08-17;2026-08-17;2026-08-17;2026-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-12;2026-10-12;2026-10-12;2026-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-07;2026-12-07;2026-12-07;2026-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-01;2027-02-01;2027-02-01;2027-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-03-29;2027-03-29;2027-03-29;2027-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-05-24;2027-05-24;2027-05-24;2027-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-07-19;2027-07-19;2027-07-19;2027-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-13;2027-09-13;2027-09-13;2027-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-08;2027-11-08;2027-11-08;2027-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-03;2028-01-03;2028-01-03;2028-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-02-28;2028-02-28;2028-02-28;2028-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-04-24;2028-04-24;2028-04-24;2028-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-06-19;2028-06-19;2028-06-19;2028-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-14;2028-08-14;2028-08-14;2028-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-09;2028-10-09;2028-10-09;2028-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-04;2028-12-04;2028-12-04;2028-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-01-29;2029-01-29;2029-01-29;2029-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-03-26;2029-03-26;2029-03-26;2029-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-05-21;2029-05-21;2029-05-21;2029-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-07-16;2029-07-16;2029-07-16;2029-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-10;2029-09-10;2029-09-10;2029-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-05;2029-11-05;2029-11-05;2029-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2029-12-31;2029-12-31;2029-12-31;2029-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-02-25;2030-02-25;2030-02-25;2030-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-04-22;2030-04-22;2030-04-22;2030-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-06-17;2030-06-17;2030-06-17;2030-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-12;2030-08-12;2030-08-12;2030-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-07;2030-10-07;2030-10-07;2030-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-02;2030-12-02;2030-12-02;2030-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-01-27;2031-01-27;2031-01-27;2031-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-03-24;2031-03-24;2031-03-24;2031-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-05-19;2031-05-19;2031-05-19;2031-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-14;2031-07-14;2031-07-14;2031-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-08;2031-09-08;2031-09-08;2031-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-03;2031-11-03;2031-11-03;2031-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2031-12-29;2031-12-29;2031-12-29;2031-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-02-23;2032-02-23;2032-02-23;2032-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-04-19;2032-04-19;2032-04-19;2032-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-06-14;2032-06-14;2032-06-14;2032-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-09;2032-08-09;2032-08-09;2032-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-04;2032-10-04;2032-10-04;2032-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-11-29;2032-11-29;2032-11-29;2032-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-01-24;2033-01-24;2033-01-24;2033-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-03-21;2033-03-21;2033-03-21;2033-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-05-16;2033-05-16;2033-05-16;2033-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-11;2033-07-11;2033-07-11;2033-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-05;2033-09-05;2033-09-05;2033-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-10-31;2033-10-31;2033-10-31;2033-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2033-12-26;2033-12-26;2033-12-26;2033-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-02-20;2034-02-20;2034-02-20;2034-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-04-17;2034-04-17;2034-04-17;2034-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-12;2034-06-12;2034-06-12;2034-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-07;2034-08-07;2034-08-07;2034-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-02;2034-10-02;2034-10-02;2034-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-11-27;2034-11-27;2034-11-27;2034-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"COV";"Site Closure";"";"Closure Visit";"";2035-01-22;2035-01-22;2035-01-22;2035-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-03-19;2035-03-19;2035-03-19;2035-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-14;2035-05-14;2035-05-14;2035-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-09;2035-07-09;2035-07-09;2035-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-03;2035-09-03;2035-09-03;2035-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-10-29;2035-10-29;2035-10-29;2035-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2035-12-24;2035-12-24;2035-12-24;2035-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-02-18;2036-02-18;2036-02-18;2036-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-04-14;2036-04-14;2036-04-14;2036-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10063";"DD5-US10063";"Adnan";"Ahmad";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-09;2036-06-09;2036-06-09;2036-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2025-12-31;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-02-23;2026-02-23;2026-02-23;2026-02-23;2026-01-22;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-04-20;2026-04-20;2026-04-20;2026-04-20;2026-02-18;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-06-15;2026-06-15;2026-06-15;2026-06-15;2026-03-18;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-08-10;2026-08-10;2026-08-10;2026-08-10;2026-04-13;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"COV";"Site Closure";"";"Closure Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10064";"DD5-US10064";"Erica";"Cohen";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-22;2036-09-22;2036-09-22;2036-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-07;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"COV";"Site Closure";"";"Closure Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-08-22;2036-08-22;2036-08-22;2036-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-10-17;2036-10-17;2036-10-17;2036-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-12-12;2036-12-12;2036-12-12;2036-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10065";"DD5-US10065";"Jeannie";"Huang";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-02-06;2037-02-06;2037-02-06;2037-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10066";"DD5-US10066";"Jacque";"Noel";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-05-28;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-24;2025-10-24;2025-10-24;2025-10-24;2025-11-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2026-03-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-13;2026-02-13;2026-02-13;2026-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"COV";"Site Closure";"";"Closure Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10067";"DD5-US10067";"Pramoda";"Koduru";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10068";"DD5-US10068";"Peter";"Wayne";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-16;2025-05-16;2025-05-16;2025-05-16;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-10;2025-10-10;2025-10-10;2025-10-10;2025-11-07;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-05;2025-12-05;2025-12-05;2025-12-05;2025-12-02;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-01-16;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-02-11;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;2026-02-24;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;2026-03-25;"Kevin";"";"Alayon" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10069";"DD5-US10069";"Vijayalakshmi";"Pratha";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10070";"DD5-US10070";"Themistocles";"Dassopoulos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-04;"Alroy";"";"Fernandes" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-12;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-12-02;2025-12-02;2025-12-02;2025-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-27;2026-01-27;2026-01-27;2026-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-24;2026-03-24;2026-03-24;2026-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-19;2026-05-19;2026-05-19;2026-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-14;2026-07-14;2026-07-14;2026-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-08;2026-09-08;2026-09-08;2026-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-03;2026-11-03;2026-11-03;2026-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-29;2026-12-29;2026-12-29;2026-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-23;2027-02-23;2027-02-23;2027-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-20;2027-04-20;2027-04-20;2027-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-15;2027-06-15;2027-06-15;2027-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-10;2027-08-10;2027-08-10;2027-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-05;2027-10-05;2027-10-05;2027-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-30;2027-11-30;2027-11-30;2027-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-25;2028-01-25;2028-01-25;2028-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-21;2028-03-21;2028-03-21;2028-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-16;2028-05-16;2028-05-16;2028-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-11;2028-07-11;2028-07-11;2028-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-05;2028-09-05;2028-09-05;2028-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-31;2028-10-31;2028-10-31;2028-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-26;2028-12-26;2028-12-26;2028-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-20;2029-02-20;2029-02-20;2029-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-17;2029-04-17;2029-04-17;2029-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-12;2029-06-12;2029-06-12;2029-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-07;2029-08-07;2029-08-07;2029-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-02;2029-10-02;2029-10-02;2029-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-27;2029-11-27;2029-11-27;2029-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-22;2030-01-22;2030-01-22;2030-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-19;2030-03-19;2030-03-19;2030-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-14;2030-05-14;2030-05-14;2030-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-09;2030-07-09;2030-07-09;2030-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-03;2030-09-03;2030-09-03;2030-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-29;2030-10-29;2030-10-29;2030-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-24;2030-12-24;2030-12-24;2030-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-18;2031-02-18;2031-02-18;2031-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-15;2031-04-15;2031-04-15;2031-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-10;2031-06-10;2031-06-10;2031-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-05;2031-08-05;2031-08-05;2031-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-30;2031-09-30;2031-09-30;2031-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-25;2031-11-25;2031-11-25;2031-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-20;2032-01-20;2032-01-20;2032-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-16;2032-03-16;2032-03-16;2032-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-11;2032-05-11;2032-05-11;2032-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-06;2032-07-06;2032-07-06;2032-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-31;2032-08-31;2032-08-31;2032-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-26;2032-10-26;2032-10-26;2032-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-21;2032-12-21;2032-12-21;2032-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-15;2033-02-15;2033-02-15;2033-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-12;2033-04-12;2033-04-12;2033-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-07;2033-06-07;2033-06-07;2033-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-02;2033-08-02;2033-08-02;2033-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-27;2033-09-27;2033-09-27;2033-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-22;2033-11-22;2033-11-22;2033-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-17;2034-01-17;2034-01-17;2034-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-14;2034-03-14;2034-03-14;2034-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-09;2034-05-09;2034-05-09;2034-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-04;2034-07-04;2034-07-04;2034-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-29;2034-08-29;2034-08-29;2034-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-24;2034-10-24;2034-10-24;2034-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-19;2034-12-19;2034-12-19;2034-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-02-13;2035-02-13;2035-02-13;2035-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"COV";"Site Closure";"";"Closure Visit";"";2035-04-10;2035-04-10;2035-04-10;2035-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-05;2035-06-05;2035-06-05;2035-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-31;2035-07-31;2035-07-31;2035-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-25;2035-09-25;2035-09-25;2035-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-20;2035-11-20;2035-11-20;2035-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-15;2036-01-15;2036-01-15;2036-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-11;2036-03-11;2036-03-11;2036-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-06;2036-05-06;2036-05-06;2036-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-01;2036-07-01;2036-07-01;2036-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10071";"DD5-US10071";"Monika";"Fischer";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-26;2036-08-26;2036-08-26;2036-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"Within the plan";2026-11-01;2026-11-01;2026-11-01;2026-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-12-27;2026-12-27;2026-12-27;2026-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2027-02-21;2027-02-21;2027-02-21;2027-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2027-04-18;2027-04-18;2027-04-18;2027-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2027-06-13;2027-06-13;2027-06-13;2027-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2027-08-08;2027-08-08;2027-08-08;2027-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-10-03;2027-10-03;2027-10-03;2027-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-11-28;2027-11-28;2027-11-28;2027-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2028-01-23;2028-01-23;2028-01-23;2028-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2028-03-19;2028-03-19;2028-03-19;2028-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2028-05-14;2028-05-14;2028-05-14;2028-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2028-07-09;2028-07-09;2028-07-09;2028-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-09-03;2028-09-03;2028-09-03;2028-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-10-29;2028-10-29;2028-10-29;2028-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-12-24;2028-12-24;2028-12-24;2028-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2029-02-18;2029-02-18;2029-02-18;2029-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2029-04-15;2029-04-15;2029-04-15;2029-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2029-06-10;2029-06-10;2029-06-10;2029-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2029-08-05;2029-08-05;2029-08-05;2029-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-09-30;2029-09-30;2029-09-30;2029-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-11-25;2029-11-25;2029-11-25;2029-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2030-01-20;2030-01-20;2030-01-20;2030-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2030-03-17;2030-03-17;2030-03-17;2030-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2030-05-12;2030-05-12;2030-05-12;2030-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2030-07-07;2030-07-07;2030-07-07;2030-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-09-01;2030-09-01;2030-09-01;2030-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-10-27;2030-10-27;2030-10-27;2030-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-12-22;2030-12-22;2030-12-22;2030-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2031-02-16;2031-02-16;2031-02-16;2031-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2031-04-13;2031-04-13;2031-04-13;2031-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2031-06-08;2031-06-08;2031-06-08;2031-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2031-08-03;2031-08-03;2031-08-03;2031-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-09-28;2031-09-28;2031-09-28;2031-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-11-23;2031-11-23;2031-11-23;2031-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2032-01-18;2032-01-18;2032-01-18;2032-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2032-03-14;2032-03-14;2032-03-14;2032-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2032-05-09;2032-05-09;2032-05-09;2032-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2032-07-04;2032-07-04;2032-07-04;2032-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-08-29;2032-08-29;2032-08-29;2032-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-10-24;2032-10-24;2032-10-24;2032-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-12-19;2032-12-19;2032-12-19;2032-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2033-02-13;2033-02-13;2033-02-13;2033-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2033-04-10;2033-04-10;2033-04-10;2033-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2033-06-05;2033-06-05;2033-06-05;2033-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2033-07-31;2033-07-31;2033-07-31;2033-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-09-25;2033-09-25;2033-09-25;2033-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-11-20;2033-11-20;2033-11-20;2033-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2034-01-15;2034-01-15;2034-01-15;2034-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2034-03-12;2034-03-12;2034-03-12;2034-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2034-05-07;2034-05-07;2034-05-07;2034-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2034-07-02;2034-07-02;2034-07-02;2034-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-08-27;2034-08-27;2034-08-27;2034-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-10-22;2034-10-22;2034-10-22;2034-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-12-17;2034-12-17;2034-12-17;2034-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2035-02-11;2035-02-11;2035-02-11;2035-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2035-04-08;2035-04-08;2035-04-08;2035-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2035-06-03;2035-06-03;2035-06-03;2035-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2035-07-29;2035-07-29;2035-07-29;2035-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-09-23;2035-09-23;2035-09-23;2035-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-11-18;2035-11-18;2035-11-18;2035-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2036-01-13;2036-01-13;2036-01-13;2036-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2036-03-09;2036-03-09;2036-03-09;2036-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"COV";"Site Closure";"";"Closure Visit";"";2036-03-09;2036-03-09;2036-03-09;2036-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2036-05-04;2036-05-04;2036-05-04;2036-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2036-06-29;2036-06-29;2036-06-29;2036-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-08-24;2036-08-24;2036-08-24;2036-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-10-19;2036-10-19;2036-10-19;2036-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-12-14;2036-12-14;2036-12-14;2036-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2037-02-08;2037-02-08;2037-02-08;2037-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2037-04-05;2037-04-05;2037-04-05;2037-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2037-05-31;2037-05-31;2037-05-31;2037-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10072";"DD5-US10072";"Sara";"Lewin";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2037-07-26;2037-07-26;2037-07-26;2037-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"";"Site Initiation";"Completed";"";"Within the plan";;;;;2026-01-13;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2026-03-16;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10073";"DD5-US10073";"Kenolisa";"Onwueme";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-02-04;2026-02-04;2026-02-04;2026-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-01;2026-04-01;2026-04-01;2026-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-05-27;2026-05-27;2026-05-27;2026-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-22;2026-07-22;2026-07-22;2026-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-16;2026-09-16;2026-09-16;2026-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-11;2026-11-11;2026-11-11;2026-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-06;2027-01-06;2027-01-06;2027-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-03;2027-03-03;2027-03-03;2027-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-28;2027-04-28;2027-04-28;2027-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-23;2027-06-23;2027-06-23;2027-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-18;2027-08-18;2027-08-18;2027-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-13;2027-10-13;2027-10-13;2027-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-08;2027-12-08;2027-12-08;2027-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-02;2028-02-02;2028-02-02;2028-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-29;2028-03-29;2028-03-29;2028-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-24;2028-05-24;2028-05-24;2028-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-19;2028-07-19;2028-07-19;2028-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-13;2028-09-13;2028-09-13;2028-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-08;2028-11-08;2028-11-08;2028-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-03;2029-01-03;2029-01-03;2029-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-28;2029-02-28;2029-02-28;2029-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-04-25;2029-04-25;2029-04-25;2029-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-20;2029-06-20;2029-06-20;2029-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-15;2029-08-15;2029-08-15;2029-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-10;2029-10-10;2029-10-10;2029-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-05;2029-12-05;2029-12-05;2029-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-30;2030-01-30;2030-01-30;2030-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-03-27;2030-03-27;2030-03-27;2030-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-22;2030-05-22;2030-05-22;2030-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-17;2030-07-17;2030-07-17;2030-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-11;2030-09-11;2030-09-11;2030-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-06;2030-11-06;2030-11-06;2030-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-01;2031-01-01;2031-01-01;2031-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-02-26;2031-02-26;2031-02-26;2031-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-23;2031-04-23;2031-04-23;2031-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-18;2031-06-18;2031-06-18;2031-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-13;2031-08-13;2031-08-13;2031-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-08;2031-10-08;2031-10-08;2031-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-03;2031-12-03;2031-12-03;2031-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-28;2032-01-28;2032-01-28;2032-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-24;2032-03-24;2032-03-24;2032-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-19;2032-05-19;2032-05-19;2032-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-14;2032-07-14;2032-07-14;2032-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-08;2032-09-08;2032-09-08;2032-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-03;2032-11-03;2032-11-03;2032-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-29;2032-12-29;2032-12-29;2032-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-02-23;2033-02-23;2033-02-23;2033-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-20;2033-04-20;2033-04-20;2033-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-15;2033-06-15;2033-06-15;2033-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-10;2033-08-10;2033-08-10;2033-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-05;2033-10-05;2033-10-05;2033-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-30;2033-11-30;2033-11-30;2033-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-01-25;2034-01-25;2034-01-25;2034-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-22;2034-03-22;2034-03-22;2034-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-17;2034-05-17;2034-05-17;2034-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-12;2034-07-12;2034-07-12;2034-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-06;2034-09-06;2034-09-06;2034-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-01;2034-11-01;2034-11-01;2034-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-12-27;2034-12-27;2034-12-27;2034-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-21;2035-02-21;2035-02-21;2035-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-18;2035-04-18;2035-04-18;2035-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"COV";"Site Closure";"";"Closure Visit";"";2035-06-13;2035-06-13;2035-06-13;2035-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-08;2035-08-08;2035-08-08;2035-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-03;2035-10-03;2035-10-03;2035-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-28;2035-11-28;2035-11-28;2035-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-23;2036-01-23;2036-01-23;2036-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-19;2036-03-19;2036-03-19;2036-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-14;2036-05-14;2036-05-14;2036-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-09;2036-07-09;2036-07-09;2036-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-03;2036-09-03;2036-09-03;2036-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10074";"DD5-US10074";"Erin";"Forster";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-29;2036-10-29;2036-10-29;2036-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10075";"DD5-US10075";"Steve";"Steiner";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-05-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"SIV";"Site Initiation";"";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10076";"DD5-US10076";"Sayed";"Yossef";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-10;2025-10-10;2025-10-10;2025-10-10;2025-10-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-05;2025-12-05;2025-12-05;2025-12-05;2026-02-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10077";"DD5-US10077";"Henry Hill";"Hinkle III";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10078";"DD5-US10078";"Mark";"Mattar";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-17;2025-05-17;2025-05-17;2025-05-17;2025-06-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-05-24;2025-05-24;;;2025-10-22;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-09;2025-12-09;2025-12-09;2025-12-09;2025-11-24;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-03;2026-02-03;2026-02-03;2026-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-31;2026-03-31;2026-03-31;2026-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-26;2026-05-26;2026-05-26;2026-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-21;2026-07-21;2026-07-21;2026-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-15;2026-09-15;2026-09-15;2026-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-10;2026-11-10;2026-11-10;2026-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-05;2027-01-05;2027-01-05;2027-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-02;2027-03-02;2027-03-02;2027-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-27;2027-04-27;2027-04-27;2027-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-22;2027-06-22;2027-06-22;2027-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-17;2027-08-17;2027-08-17;2027-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-12;2027-10-12;2027-10-12;2027-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-07;2027-12-07;2027-12-07;2027-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-01;2028-02-01;2028-02-01;2028-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-28;2028-03-28;2028-03-28;2028-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-23;2028-05-23;2028-05-23;2028-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-18;2028-07-18;2028-07-18;2028-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-12;2028-09-12;2028-09-12;2028-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-07;2028-11-07;2028-11-07;2028-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-02;2029-01-02;2029-01-02;2029-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-27;2029-02-27;2029-02-27;2029-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-24;2029-04-24;2029-04-24;2029-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-19;2029-06-19;2029-06-19;2029-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-14;2029-08-14;2029-08-14;2029-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-09;2029-10-09;2029-10-09;2029-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-04;2029-12-04;2029-12-04;2029-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-29;2030-01-29;2030-01-29;2030-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-26;2030-03-26;2030-03-26;2030-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-21;2030-05-21;2030-05-21;2030-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-16;2030-07-16;2030-07-16;2030-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-10;2030-09-10;2030-09-10;2030-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-05;2030-11-05;2030-11-05;2030-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-31;2030-12-31;2030-12-31;2030-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-25;2031-02-25;2031-02-25;2031-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-22;2031-04-22;2031-04-22;2031-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-17;2031-06-17;2031-06-17;2031-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-12;2031-08-12;2031-08-12;2031-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-07;2031-10-07;2031-10-07;2031-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-02;2031-12-02;2031-12-02;2031-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-27;2032-01-27;2032-01-27;2032-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-23;2032-03-23;2032-03-23;2032-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-18;2032-05-18;2032-05-18;2032-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-13;2032-07-13;2032-07-13;2032-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-07;2032-09-07;2032-09-07;2032-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-02;2032-11-02;2032-11-02;2032-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-28;2032-12-28;2032-12-28;2032-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-22;2033-02-22;2033-02-22;2033-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-19;2033-04-19;2033-04-19;2033-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-14;2033-06-14;2033-06-14;2033-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-09;2033-08-09;2033-08-09;2033-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-04;2033-10-04;2033-10-04;2033-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-29;2033-11-29;2033-11-29;2033-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-24;2034-01-24;2034-01-24;2034-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-21;2034-03-21;2034-03-21;2034-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-16;2034-05-16;2034-05-16;2034-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-11;2034-07-11;2034-07-11;2034-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-05;2034-09-05;2034-09-05;2034-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-31;2034-10-31;2034-10-31;2034-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-26;2034-12-26;2034-12-26;2034-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"COV";"Site Closure";"";"Closure Visit";"";2035-02-20;2035-02-20;2035-02-20;2035-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-17;2035-04-17;2035-04-17;2035-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-12;2035-06-12;2035-06-12;2035-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-07;2035-08-07;2035-08-07;2035-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-02;2035-10-02;2035-10-02;2035-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-27;2035-11-27;2035-11-27;2035-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-22;2036-01-22;2036-01-22;2036-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-18;2036-03-18;2036-03-18;2036-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-13;2036-05-13;2036-05-13;2036-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10079";"DD5-US10079";"Rajiv";"Perinbasekar";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-08;2036-07-08;2036-07-08;2036-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10080";"DD5-US10080";"Elizabeth";"Streett";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-17;2025-05-17;2025-05-17;2025-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-05-20;2025-05-20;2025-05-20;2025-05-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-17;2025-10-17;2025-10-17;2025-10-17;2025-10-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-12;2025-12-12;2025-12-12;2025-12-12;2025-12-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-02-06;2026-02-06;2026-02-06;2026-02-06;2026-03-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-04-03;2026-04-03;2026-04-03;2026-04-03;2026-04-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-29;2026-05-29;2026-05-29;2026-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-24;2026-07-24;2026-07-24;2026-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-18;2026-09-18;2026-09-18;2026-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-13;2026-11-13;2026-11-13;2026-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-08;2027-01-08;2027-01-08;2027-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-05;2027-03-05;2027-03-05;2027-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-30;2027-04-30;2027-04-30;2027-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-25;2027-06-25;2027-06-25;2027-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-20;2027-08-20;2027-08-20;2027-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-15;2027-10-15;2027-10-15;2027-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-10;2027-12-10;2027-12-10;2027-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-04;2028-02-04;2028-02-04;2028-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-31;2028-03-31;2028-03-31;2028-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-26;2028-05-26;2028-05-26;2028-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-21;2028-07-21;2028-07-21;2028-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-15;2028-09-15;2028-09-15;2028-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-10;2028-11-10;2028-11-10;2028-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-05;2029-01-05;2029-01-05;2029-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-02;2029-03-02;2029-03-02;2029-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-27;2029-04-27;2029-04-27;2029-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-22;2029-06-22;2029-06-22;2029-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-17;2029-08-17;2029-08-17;2029-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-12;2029-10-12;2029-10-12;2029-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-07;2029-12-07;2029-12-07;2029-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-01;2030-02-01;2030-02-01;2030-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-29;2030-03-29;2030-03-29;2030-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-24;2030-05-24;2030-05-24;2030-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-19;2030-07-19;2030-07-19;2030-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-13;2030-09-13;2030-09-13;2030-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-08;2030-11-08;2030-11-08;2030-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-03;2031-01-03;2031-01-03;2031-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-28;2031-02-28;2031-02-28;2031-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-25;2031-04-25;2031-04-25;2031-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-20;2031-06-20;2031-06-20;2031-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-15;2031-08-15;2031-08-15;2031-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-10;2031-10-10;2031-10-10;2031-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-05;2031-12-05;2031-12-05;2031-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-30;2032-01-30;2032-01-30;2032-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-26;2032-03-26;2032-03-26;2032-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-21;2032-05-21;2032-05-21;2032-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-16;2032-07-16;2032-07-16;2032-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-10;2032-09-10;2032-09-10;2032-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-05;2032-11-05;2032-11-05;2032-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-31;2032-12-31;2032-12-31;2032-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-25;2033-02-25;2033-02-25;2033-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-22;2033-04-22;2033-04-22;2033-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-17;2033-06-17;2033-06-17;2033-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-12;2033-08-12;2033-08-12;2033-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-07;2033-10-07;2033-10-07;2033-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-02;2033-12-02;2033-12-02;2033-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-27;2034-01-27;2034-01-27;2034-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-24;2034-03-24;2034-03-24;2034-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-19;2034-05-19;2034-05-19;2034-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-14;2034-07-14;2034-07-14;2034-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-08;2034-09-08;2034-09-08;2034-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-03;2034-11-03;2034-11-03;2034-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-29;2034-12-29;2034-12-29;2034-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"COV";"Site Closure";"";"Closure Visit";"";2035-02-23;2035-02-23;2035-02-23;2035-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-20;2035-04-20;2035-04-20;2035-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-15;2035-06-15;2035-06-15;2035-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-10;2035-08-10;2035-08-10;2035-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-05;2035-10-05;2035-10-05;2035-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-30;2035-11-30;2035-11-30;2035-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-25;2036-01-25;2036-01-25;2036-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-21;2036-03-21;2036-03-21;2036-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-16;2036-05-16;2036-05-16;2036-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10081";"DD5-US10081";"Phillip";"Kiyasu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-11;2036-07-11;2036-07-11;2036-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-11-12;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"COV";"Site Closure";"Scheduled";"Closure Visit";"Within the plan";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"Lara";"";"Forgan" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10082";"DD5-US10082";"Caterina";"Oneto";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10083";"DD5-US10083";"Erick";"Alayo";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-19;2025-11-19;2025-11-19;2025-11-19;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-01-14;2026-01-14;2026-01-14;2026-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-03-11;2026-03-11;2026-03-11;2026-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-05-06;2026-05-06;2026-05-06;2026-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-01;2026-07-01;2026-07-01;2026-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-26;2026-08-26;2026-08-26;2026-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-21;2026-10-21;2026-10-21;2026-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-16;2026-12-16;2026-12-16;2026-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-02-10;2027-02-10;2027-02-10;2027-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-04-07;2027-04-07;2027-04-07;2027-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-06-02;2027-06-02;2027-06-02;2027-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-28;2027-07-28;2027-07-28;2027-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-22;2027-09-22;2027-09-22;2027-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-17;2027-11-17;2027-11-17;2027-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-01-12;2028-01-12;2028-01-12;2028-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-03-08;2028-03-08;2028-03-08;2028-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-05-03;2028-05-03;2028-05-03;2028-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-28;2028-06-28;2028-06-28;2028-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-23;2028-08-23;2028-08-23;2028-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-18;2028-10-18;2028-10-18;2028-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-13;2028-12-13;2028-12-13;2028-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-02-07;2029-02-07;2029-02-07;2029-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-04-04;2029-04-04;2029-04-04;2029-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-30;2029-05-30;2029-05-30;2029-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-25;2029-07-25;2029-07-25;2029-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-19;2029-09-19;2029-09-19;2029-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-14;2029-11-14;2029-11-14;2029-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-01-09;2030-01-09;2030-01-09;2030-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-03-06;2030-03-06;2030-03-06;2030-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-01;2030-05-01;2030-05-01;2030-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-26;2030-06-26;2030-06-26;2030-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-21;2030-08-21;2030-08-21;2030-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-16;2030-10-16;2030-10-16;2030-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-12-11;2030-12-11;2030-12-11;2030-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-02-05;2031-02-05;2031-02-05;2031-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-04-02;2031-04-02;2031-04-02;2031-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-28;2031-05-28;2031-05-28;2031-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-23;2031-07-23;2031-07-23;2031-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-17;2031-09-17;2031-09-17;2031-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-11-12;2031-11-12;2031-11-12;2031-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-01-07;2032-01-07;2032-01-07;2032-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-03-03;2032-03-03;2032-03-03;2032-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-28;2032-04-28;2032-04-28;2032-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-23;2032-06-23;2032-06-23;2032-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-18;2032-08-18;2032-08-18;2032-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-13;2032-10-13;2032-10-13;2032-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-12-08;2032-12-08;2032-12-08;2032-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-02-02;2033-02-02;2033-02-02;2033-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-30;2033-03-30;2033-03-30;2033-03-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-25;2033-05-25;2033-05-25;2033-05-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-20;2033-07-20;2033-07-20;2033-07-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-14;2033-09-14;2033-09-14;2033-09-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-11-09;2033-11-09;2033-11-09;2033-11-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-01-04;2034-01-04;2034-01-04;2034-01-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-01;2034-03-01;2034-03-01;2034-03-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-26;2034-04-26;2034-04-26;2034-04-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-21;2034-06-21;2034-06-21;2034-06-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-16;2034-08-16;2034-08-16;2034-08-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-10-11;2034-10-11;2034-10-11;2034-10-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-12-06;2034-12-06;2034-12-06;2034-12-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-31;2035-01-31;2035-01-31;2035-01-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"COV";"Site Closure";"";"Closure Visit";"";2035-03-28;2035-03-28;2035-03-28;2035-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-23;2035-05-23;2035-05-23;2035-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-18;2035-07-18;2035-07-18;2035-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-09-12;2035-09-12;2035-09-12;2035-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-11-07;2035-11-07;2035-11-07;2035-11-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-01-02;2036-01-02;2036-01-02;2036-01-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-27;2036-02-27;2036-02-27;2036-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-23;2036-04-23;2036-04-23;2036-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-18;2036-06-18;2036-06-18;2036-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10084";"DD5-US10084";"Meenakshi";"Bewtra";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-13;2036-08-13;2036-08-13;2036-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-11;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-04;2025-11-04;2025-11-04;2025-11-04;2026-02-09;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-30;2025-12-30;2025-12-30;2025-12-30;2026-03-11;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"Within the plan";2026-02-24;2026-02-24;2026-02-24;2026-02-24;;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-21;2026-04-21;2026-04-21;2026-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-16;2026-06-16;2026-06-16;2026-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-11;2026-08-11;2026-08-11;2026-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-06;2026-10-06;2026-10-06;2026-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-01;2026-12-01;2026-12-01;2026-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-26;2027-01-26;2027-01-26;2027-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-23;2027-03-23;2027-03-23;2027-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-18;2027-05-18;2027-05-18;2027-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-13;2027-07-13;2027-07-13;2027-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-07;2027-09-07;2027-09-07;2027-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-02;2027-11-02;2027-11-02;2027-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-28;2027-12-28;2027-12-28;2027-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-22;2028-02-22;2028-02-22;2028-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-18;2028-04-18;2028-04-18;2028-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-13;2028-06-13;2028-06-13;2028-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-08;2028-08-08;2028-08-08;2028-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-03;2028-10-03;2028-10-03;2028-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-28;2028-11-28;2028-11-28;2028-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-23;2029-01-23;2029-01-23;2029-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-20;2029-03-20;2029-03-20;2029-03-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-15;2029-05-15;2029-05-15;2029-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-10;2029-07-10;2029-07-10;2029-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-04;2029-09-04;2029-09-04;2029-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-30;2029-10-30;2029-10-30;2029-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-25;2029-12-25;2029-12-25;2029-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-19;2030-02-19;2030-02-19;2030-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-16;2030-04-16;2030-04-16;2030-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-11;2030-06-11;2030-06-11;2030-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-06;2030-08-06;2030-08-06;2030-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-01;2030-10-01;2030-10-01;2030-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-26;2030-11-26;2030-11-26;2030-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-21;2031-01-21;2031-01-21;2031-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-18;2031-03-18;2031-03-18;2031-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-13;2031-05-13;2031-05-13;2031-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-08;2031-07-08;2031-07-08;2031-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-02;2031-09-02;2031-09-02;2031-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-28;2031-10-28;2031-10-28;2031-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-23;2031-12-23;2031-12-23;2031-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-17;2032-02-17;2032-02-17;2032-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-13;2032-04-13;2032-04-13;2032-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-08;2032-06-08;2032-06-08;2032-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-03;2032-08-03;2032-08-03;2032-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-28;2032-09-28;2032-09-28;2032-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-23;2032-11-23;2032-11-23;2032-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-18;2033-01-18;2033-01-18;2033-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-15;2033-03-15;2033-03-15;2033-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-10;2033-05-10;2033-05-10;2033-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-05;2033-07-05;2033-07-05;2033-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-30;2033-08-30;2033-08-30;2033-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-25;2033-10-25;2033-10-25;2033-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-20;2033-12-20;2033-12-20;2033-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-14;2034-02-14;2034-02-14;2034-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-11;2034-04-11;2034-04-11;2034-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-06;2034-06-06;2034-06-06;2034-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-01;2034-08-01;2034-08-01;2034-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-26;2034-09-26;2034-09-26;2034-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-21;2034-11-21;2034-11-21;2034-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-16;2035-01-16;2035-01-16;2035-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"COV";"Site Closure";"";"Closure Visit";"";2035-03-13;2035-03-13;2035-03-13;2035-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-08;2035-05-08;2035-05-08;2035-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-03;2035-07-03;2035-07-03;2035-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-28;2035-08-28;2035-08-28;2035-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-23;2035-10-23;2035-10-23;2035-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-18;2035-12-18;2035-12-18;2035-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-12;2036-02-12;2036-02-12;2036-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-08;2036-04-08;2036-04-08;2036-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-03;2036-06-03;2036-06-03;2036-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10085";"DD5-US10085";"Larry";"Clark";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-29;2036-07-29;2036-07-29;2036-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-21;2025-05-21;2025-05-21;2025-05-21;2025-06-05;"Jannella";"";"Dash" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-07;2025-11-07;2025-11-07;2025-11-07;2025-12-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2026-01-02;2026-01-02;2026-01-02;2026-01-02;2026-03-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-27;2026-02-27;2026-02-27;2026-02-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-24;2026-04-24;2026-04-24;2026-04-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-19;2026-06-19;2026-06-19;2026-06-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-14;2026-08-14;2026-08-14;2026-08-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-09;2026-10-09;2026-10-09;2026-10-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-12-04;2026-12-04;2026-12-04;2026-12-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-29;2027-01-29;2027-01-29;2027-01-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-26;2027-03-26;2027-03-26;2027-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-21;2027-05-21;2027-05-21;2027-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-16;2027-07-16;2027-07-16;2027-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-10;2027-09-10;2027-09-10;2027-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-05;2027-11-05;2027-11-05;2027-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-31;2027-12-31;2027-12-31;2027-12-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-25;2028-02-25;2028-02-25;2028-02-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-21;2028-04-21;2028-04-21;2028-04-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-16;2028-06-16;2028-06-16;2028-06-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-11;2028-08-11;2028-08-11;2028-08-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-06;2028-10-06;2028-10-06;2028-10-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-12-01;2028-12-01;2028-12-01;2028-12-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-26;2029-01-26;2029-01-26;2029-01-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-23;2029-03-23;2029-03-23;2029-03-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-18;2029-05-18;2029-05-18;2029-05-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-13;2029-07-13;2029-07-13;2029-07-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-07;2029-09-07;2029-09-07;2029-09-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-11-02;2029-11-02;2029-11-02;2029-11-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-28;2029-12-28;2029-12-28;2029-12-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-22;2030-02-22;2030-02-22;2030-02-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-19;2030-04-19;2030-04-19;2030-04-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-14;2030-06-14;2030-06-14;2030-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-09;2030-08-09;2030-08-09;2030-08-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-10-04;2030-10-04;2030-10-04;2030-10-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-29;2030-11-29;2030-11-29;2030-11-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-24;2031-01-24;2031-01-24;2031-01-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-21;2031-03-21;2031-03-21;2031-03-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-16;2031-05-16;2031-05-16;2031-05-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-11;2031-07-11;2031-07-11;2031-07-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-05;2031-09-05;2031-09-05;2031-09-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-31;2031-10-31;2031-10-31;2031-10-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-26;2031-12-26;2031-12-26;2031-12-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-20;2032-02-20;2032-02-20;2032-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-16;2032-04-16;2032-04-16;2032-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-11;2032-06-11;2032-06-11;2032-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-06;2032-08-06;2032-08-06;2032-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-10-01;2032-10-01;2032-10-01;2032-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-26;2032-11-26;2032-11-26;2032-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-21;2033-01-21;2033-01-21;2033-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-18;2033-03-18;2033-03-18;2033-03-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-13;2033-05-13;2033-05-13;2033-05-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-08;2033-07-08;2033-07-08;2033-07-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-09-02;2033-09-02;2033-09-02;2033-09-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-28;2033-10-28;2033-10-28;2033-10-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-23;2033-12-23;2033-12-23;2033-12-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-17;2034-02-17;2034-02-17;2034-02-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-14;2034-04-14;2034-04-14;2034-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-09;2034-06-09;2034-06-09;2034-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-08-04;2034-08-04;2034-08-04;2034-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-29;2034-09-29;2034-09-29;2034-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-24;2034-11-24;2034-11-24;2034-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-19;2035-01-19;2035-01-19;2035-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"COV";"Site Closure";"";"Closure Visit";"";2035-03-16;2035-03-16;2035-03-16;2035-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-11;2035-05-11;2035-05-11;2035-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-06;2035-07-06;2035-07-06;2035-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-31;2035-08-31;2035-08-31;2035-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-26;2035-10-26;2035-10-26;2035-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-21;2035-12-21;2035-12-21;2035-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-15;2036-02-15;2036-02-15;2036-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-11;2036-04-11;2036-04-11;2036-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-06;2036-06-06;2036-06-06;2036-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10086";"DD5-US10086";"Ankur";"Doshi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-08-01;2036-08-01;2036-08-01;2036-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10087";"DD5-US10087";"Eric";"Ibegbu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-07-14;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-02-11;2026-02-11;2026-02-11;2026-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-04-08;2026-04-08;2026-04-08;2026-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-06-03;2026-06-03;2026-06-03;2026-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-07-29;2026-07-29;2026-07-29;2026-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-09-23;2026-09-23;2026-09-23;2026-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-11-18;2026-11-18;2026-11-18;2026-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-01-13;2027-01-13;2027-01-13;2027-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-03-10;2027-03-10;2027-03-10;2027-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-05-05;2027-05-05;2027-05-05;2027-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-06-30;2027-06-30;2027-06-30;2027-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-08-25;2027-08-25;2027-08-25;2027-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-10-20;2027-10-20;2027-10-20;2027-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-12-15;2027-12-15;2027-12-15;2027-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-02-09;2028-02-09;2028-02-09;2028-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-04-05;2028-04-05;2028-04-05;2028-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-05-31;2028-05-31;2028-05-31;2028-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-07-26;2028-07-26;2028-07-26;2028-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-09-20;2028-09-20;2028-09-20;2028-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-11-15;2028-11-15;2028-11-15;2028-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-01-10;2029-01-10;2029-01-10;2029-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-03-07;2029-03-07;2029-03-07;2029-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-05-02;2029-05-02;2029-05-02;2029-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-06-27;2029-06-27;2029-06-27;2029-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-08-22;2029-08-22;2029-08-22;2029-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-10-17;2029-10-17;2029-10-17;2029-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-12-12;2029-12-12;2029-12-12;2029-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-02-06;2030-02-06;2030-02-06;2030-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-04-03;2030-04-03;2030-04-03;2030-04-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-05-29;2030-05-29;2030-05-29;2030-05-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-07-24;2030-07-24;2030-07-24;2030-07-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-09-18;2030-09-18;2030-09-18;2030-09-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-11-13;2030-11-13;2030-11-13;2030-11-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-01-08;2031-01-08;2031-01-08;2031-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-03-05;2031-03-05;2031-03-05;2031-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-04-30;2031-04-30;2031-04-30;2031-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-06-25;2031-06-25;2031-06-25;2031-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-08-20;2031-08-20;2031-08-20;2031-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-10-15;2031-10-15;2031-10-15;2031-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-12-10;2031-12-10;2031-12-10;2031-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-02-04;2032-02-04;2032-02-04;2032-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-03-31;2032-03-31;2032-03-31;2032-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-05-26;2032-05-26;2032-05-26;2032-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-07-21;2032-07-21;2032-07-21;2032-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-09-15;2032-09-15;2032-09-15;2032-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-11-10;2032-11-10;2032-11-10;2032-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-01-05;2033-01-05;2033-01-05;2033-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-03-02;2033-03-02;2033-03-02;2033-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-04-27;2033-04-27;2033-04-27;2033-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-06-22;2033-06-22;2033-06-22;2033-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-08-17;2033-08-17;2033-08-17;2033-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-10-12;2033-10-12;2033-10-12;2033-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-12-07;2033-12-07;2033-12-07;2033-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-02-01;2034-02-01;2034-02-01;2034-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-03-29;2034-03-29;2034-03-29;2034-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-05-24;2034-05-24;2034-05-24;2034-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-07-19;2034-07-19;2034-07-19;2034-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-09-13;2034-09-13;2034-09-13;2034-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-11-08;2034-11-08;2034-11-08;2034-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-01-03;2035-01-03;2035-01-03;2035-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-02-28;2035-02-28;2035-02-28;2035-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-04-25;2035-04-25;2035-04-25;2035-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"COV";"Site Closure";"";"Closure Visit";"";2035-06-20;2035-06-20;2035-06-20;2035-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-08-15;2035-08-15;2035-08-15;2035-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-10-10;2035-10-10;2035-10-10;2035-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-12-05;2035-12-05;2035-12-05;2035-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-01-30;2036-01-30;2036-01-30;2036-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-03-26;2036-03-26;2036-03-26;2036-03-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-05-21;2036-05-21;2036-05-21;2036-05-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-07-16;2036-07-16;2036-07-16;2036-07-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-09-10;2036-09-10;2036-09-10;2036-09-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10088";"DD5-US10088";"Razvan";"Arsenescu";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-11-05;2036-11-05;2036-11-05;2036-11-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-27;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-31;2025-10-31;2025-10-31;2025-10-31;2025-10-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-26;2025-12-26;2025-12-26;2025-12-26;2025-12-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-02-20;2026-02-20;2026-02-20;2026-02-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-04-17;2026-04-17;2026-04-17;2026-04-17;2026-02-06;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-06-12;2026-06-12;2026-06-12;2026-06-12;2026-03-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-07;2026-08-07;2026-08-07;2026-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-02;2026-10-02;2026-10-02;2026-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-27;2026-11-27;2026-11-27;2026-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-22;2027-01-22;2027-01-22;2027-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-19;2027-03-19;2027-03-19;2027-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-14;2027-05-14;2027-05-14;2027-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-09;2027-07-09;2027-07-09;2027-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-03;2027-09-03;2027-09-03;2027-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-29;2027-10-29;2027-10-29;2027-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-24;2027-12-24;2027-12-24;2027-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-18;2028-02-18;2028-02-18;2028-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-14;2028-04-14;2028-04-14;2028-04-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-09;2028-06-09;2028-06-09;2028-06-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-04;2028-08-04;2028-08-04;2028-08-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-29;2028-09-29;2028-09-29;2028-09-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-24;2028-11-24;2028-11-24;2028-11-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-19;2029-01-19;2029-01-19;2029-01-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-16;2029-03-16;2029-03-16;2029-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-11;2029-05-11;2029-05-11;2029-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-06;2029-07-06;2029-07-06;2029-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-31;2029-08-31;2029-08-31;2029-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-26;2029-10-26;2029-10-26;2029-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-21;2029-12-21;2029-12-21;2029-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-15;2030-02-15;2030-02-15;2030-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-12;2030-04-12;2030-04-12;2030-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-07;2030-06-07;2030-06-07;2030-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-02;2030-08-02;2030-08-02;2030-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-27;2030-09-27;2030-09-27;2030-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-22;2030-11-22;2030-11-22;2030-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-17;2031-01-17;2031-01-17;2031-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-14;2031-03-14;2031-03-14;2031-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-09;2031-05-09;2031-05-09;2031-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-04;2031-07-04;2031-07-04;2031-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-29;2031-08-29;2031-08-29;2031-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-24;2031-10-24;2031-10-24;2031-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-19;2031-12-19;2031-12-19;2031-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-13;2032-02-13;2032-02-13;2032-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-09;2032-04-09;2032-04-09;2032-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-04;2032-06-04;2032-06-04;2032-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-30;2032-07-30;2032-07-30;2032-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-24;2032-09-24;2032-09-24;2032-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-19;2032-11-19;2032-11-19;2032-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-14;2033-01-14;2033-01-14;2033-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-11;2033-03-11;2033-03-11;2033-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-06;2033-05-06;2033-05-06;2033-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-01;2033-07-01;2033-07-01;2033-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-26;2033-08-26;2033-08-26;2033-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-21;2033-10-21;2033-10-21;2033-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-16;2033-12-16;2033-12-16;2033-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-10;2034-02-10;2034-02-10;2034-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-07;2034-04-07;2034-04-07;2034-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-02;2034-06-02;2034-06-02;2034-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-28;2034-07-28;2034-07-28;2034-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-22;2034-09-22;2034-09-22;2034-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-17;2034-11-17;2034-11-17;2034-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-12;2035-01-12;2035-01-12;2035-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"COV";"Site Closure";"";"Closure Visit";"";2035-03-09;2035-03-09;2035-03-09;2035-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-04;2035-05-04;2035-05-04;2035-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-29;2035-06-29;2035-06-29;2035-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-24;2035-08-24;2035-08-24;2035-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-19;2035-10-19;2035-10-19;2035-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-14;2035-12-14;2035-12-14;2035-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-08;2036-02-08;2036-02-08;2036-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-04;2036-04-04;2036-04-04;2036-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-30;2036-05-30;2036-05-30;2036-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10089";"DD5-US10089";"Curtis";"Baum";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-25;2036-07-25;2036-07-25;2036-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-05-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-27;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-18;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-01-14;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-02-24;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-03-11;"Kali";"";"Lawton" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-03-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV6";"Monitoring Visit 6";"Completed";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;2026-04-21;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10090";"DD5-US10090";"Benjamin";"Gold";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-22;2025-05-22;2025-05-22;2025-05-22;2025-06-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-11-03;2025-11-03;2025-11-03;2025-11-03;2025-11-26;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-29;2025-12-29;2025-12-29;2025-12-29;2026-02-12;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-02-23;2026-02-23;2026-02-23;2026-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-20;2026-04-20;2026-04-20;2026-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-15;2026-06-15;2026-06-15;2026-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-08-10;2026-08-10;2026-08-10;2026-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-10-05;2026-10-05;2026-10-05;2026-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-30;2026-11-30;2026-11-30;2026-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-25;2027-01-25;2027-01-25;2027-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-22;2027-03-22;2027-03-22;2027-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-17;2027-05-17;2027-05-17;2027-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-12;2027-07-12;2027-07-12;2027-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-09-06;2027-09-06;2027-09-06;2027-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-11-01;2027-11-01;2027-11-01;2027-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-27;2027-12-27;2027-12-27;2027-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-21;2028-02-21;2028-02-21;2028-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-17;2028-04-17;2028-04-17;2028-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-12;2028-06-12;2028-06-12;2028-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-08-07;2028-08-07;2028-08-07;2028-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-10-02;2028-10-02;2028-10-02;2028-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-27;2028-11-27;2028-11-27;2028-11-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-22;2029-01-22;2029-01-22;2029-01-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-19;2029-03-19;2029-03-19;2029-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-14;2029-05-14;2029-05-14;2029-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-07-09;2029-07-09;2029-07-09;2029-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-09-03;2029-09-03;2029-09-03;2029-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-29;2029-10-29;2029-10-29;2029-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-24;2029-12-24;2029-12-24;2029-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-18;2030-02-18;2030-02-18;2030-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-15;2030-04-15;2030-04-15;2030-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-06-10;2030-06-10;2030-06-10;2030-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-08-05;2030-08-05;2030-08-05;2030-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-30;2030-09-30;2030-09-30;2030-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-25;2030-11-25;2030-11-25;2030-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-20;2031-01-20;2031-01-20;2031-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-17;2031-03-17;2031-03-17;2031-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-12;2031-05-12;2031-05-12;2031-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-07-07;2031-07-07;2031-07-07;2031-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-09-01;2031-09-01;2031-09-01;2031-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-27;2031-10-27;2031-10-27;2031-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-22;2031-12-22;2031-12-22;2031-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-16;2032-02-16;2032-02-16;2032-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-12;2032-04-12;2032-04-12;2032-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-06-07;2032-06-07;2032-06-07;2032-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-08-02;2032-08-02;2032-08-02;2032-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-27;2032-09-27;2032-09-27;2032-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-22;2032-11-22;2032-11-22;2032-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-17;2033-01-17;2033-01-17;2033-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-14;2033-03-14;2033-03-14;2033-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-05-09;2033-05-09;2033-05-09;2033-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-07-04;2033-07-04;2033-07-04;2033-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-29;2033-08-29;2033-08-29;2033-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-24;2033-10-24;2033-10-24;2033-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-19;2033-12-19;2033-12-19;2033-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-13;2034-02-13;2034-02-13;2034-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-04-10;2034-04-10;2034-04-10;2034-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-06-05;2034-06-05;2034-06-05;2034-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-31;2034-07-31;2034-07-31;2034-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-25;2034-09-25;2034-09-25;2034-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-20;2034-11-20;2034-11-20;2034-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-15;2035-01-15;2035-01-15;2035-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"COV";"Site Closure";"";"Closure Visit";"";2035-03-12;2035-03-12;2035-03-12;2035-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-05-07;2035-05-07;2035-05-07;2035-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-07-02;2035-07-02;2035-07-02;2035-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-27;2035-08-27;2035-08-27;2035-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-22;2035-10-22;2035-10-22;2035-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-17;2035-12-17;2035-12-17;2035-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-11;2036-02-11;2036-02-11;2036-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-04-07;2036-04-07;2036-04-07;2036-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-06-02;2036-06-02;2036-06-02;2036-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10091";"DD5-US10091";"Adam";"Gorelick";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-28;2036-07-28;2036-07-28;2036-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10092";"DD5-US10092";"Ryan";"Gaible";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-05-24;2025-05-24;2025-05-24;2025-05-24;2025-06-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-05-30;2025-05-30;2025-05-30;2025-05-30;2025-06-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-01-08;2026-01-08;2026-01-08;2026-01-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-03-05;2026-03-05;2026-03-05;2026-03-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-30;2026-04-30;2026-04-30;2026-04-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-25;2026-06-25;2026-06-25;2026-06-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-08-20;2026-08-20;2026-08-20;2026-08-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-10-15;2026-10-15;2026-10-15;2026-10-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-12-10;2026-12-10;2026-12-10;2026-12-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-02-04;2027-02-04;2027-02-04;2027-02-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-04-01;2027-04-01;2027-04-01;2027-04-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-27;2027-05-27;2027-05-27;2027-05-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-22;2027-07-22;2027-07-22;2027-07-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-09-16;2027-09-16;2027-09-16;2027-09-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-11-11;2027-11-11;2027-11-11;2027-11-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-01-06;2028-01-06;2028-01-06;2028-01-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-03-02;2028-03-02;2028-03-02;2028-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-27;2028-04-27;2028-04-27;2028-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-22;2028-06-22;2028-06-22;2028-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-08-17;2028-08-17;2028-08-17;2028-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-10-12;2028-10-12;2028-10-12;2028-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-12-07;2028-12-07;2028-12-07;2028-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-02-01;2029-02-01;2029-02-01;2029-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-29;2029-03-29;2029-03-29;2029-03-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-24;2029-05-24;2029-05-24;2029-05-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-07-19;2029-07-19;2029-07-19;2029-07-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-09-13;2029-09-13;2029-09-13;2029-09-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-11-08;2029-11-08;2029-11-08;2029-11-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-01-03;2030-01-03;2030-01-03;2030-01-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-28;2030-02-28;2030-02-28;2030-02-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-25;2030-04-25;2030-04-25;2030-04-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-06-20;2030-06-20;2030-06-20;2030-06-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-08-15;2030-08-15;2030-08-15;2030-08-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-10-10;2030-10-10;2030-10-10;2030-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-12-05;2030-12-05;2030-12-05;2030-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-30;2031-01-30;2031-01-30;2031-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-27;2031-03-27;2031-03-27;2031-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-22;2031-05-22;2031-05-22;2031-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-07-17;2031-07-17;2031-07-17;2031-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-09-11;2031-09-11;2031-09-11;2031-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-11-06;2031-11-06;2031-11-06;2031-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-01-01;2032-01-01;2032-01-01;2032-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-26;2032-02-26;2032-02-26;2032-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-22;2032-04-22;2032-04-22;2032-04-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-06-17;2032-06-17;2032-06-17;2032-06-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-08-12;2032-08-12;2032-08-12;2032-08-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-10-07;2032-10-07;2032-10-07;2032-10-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-12-02;2032-12-02;2032-12-02;2032-12-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-27;2033-01-27;2033-01-27;2033-01-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-24;2033-03-24;2033-03-24;2033-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-05-19;2033-05-19;2033-05-19;2033-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-07-14;2033-07-14;2033-07-14;2033-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-09-08;2033-09-08;2033-09-08;2033-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-11-03;2033-11-03;2033-11-03;2033-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-29;2033-12-29;2033-12-29;2033-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-23;2034-02-23;2034-02-23;2034-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-04-20;2034-04-20;2034-04-20;2034-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-06-15;2034-06-15;2034-06-15;2034-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-08-10;2034-08-10;2034-08-10;2034-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-10-05;2034-10-05;2034-10-05;2034-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-30;2034-11-30;2034-11-30;2034-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-25;2035-01-25;2035-01-25;2035-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-22;2035-03-22;2035-03-22;2035-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-05-17;2035-05-17;2035-05-17;2035-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"COV";"Site Closure";"";"Closure Visit";"";2035-05-17;2035-05-17;2035-05-17;2035-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-07-12;2035-07-12;2035-07-12;2035-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-09-06;2035-09-06;2035-09-06;2035-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-11-01;2035-11-01;2035-11-01;2035-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-27;2035-12-27;2035-12-27;2035-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-21;2036-02-21;2036-02-21;2036-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-04-17;2036-04-17;2036-04-17;2036-04-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-06-12;2036-06-12;2036-06-12;2036-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-08-07;2036-08-07;2036-08-07;2036-08-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10093";"DD5-US10093";"Jonathan";"Moses";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-10-02;2036-10-02;2036-10-02;2036-10-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-11;2025-06-11;2025-06-11;2025-06-11;2025-07-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"SIV";"Site Initiation";"";"Initiation Visit";"";2026-03-16;2026-03-16;2026-03-16;2026-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-05-11;2026-05-11;2026-05-11;2026-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-07-06;2026-07-06;2026-07-06;2026-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-08-31;2026-08-31;2026-08-31;2026-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-10-26;2026-10-26;2026-10-26;2026-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-12-21;2026-12-21;2026-12-21;2026-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2027-02-15;2027-02-15;2027-02-15;2027-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-04-12;2027-04-12;2027-04-12;2027-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-06-07;2027-06-07;2027-06-07;2027-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-08-02;2027-08-02;2027-08-02;2027-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-09-27;2027-09-27;2027-09-27;2027-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-11-22;2027-11-22;2027-11-22;2027-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2028-01-17;2028-01-17;2028-01-17;2028-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2028-03-13;2028-03-13;2028-03-13;2028-03-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-05-08;2028-05-08;2028-05-08;2028-05-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-07-03;2028-07-03;2028-07-03;2028-07-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-08-28;2028-08-28;2028-08-28;2028-08-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-10-23;2028-10-23;2028-10-23;2028-10-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-12-18;2028-12-18;2028-12-18;2028-12-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2029-02-12;2029-02-12;2029-02-12;2029-02-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-04-09;2029-04-09;2029-04-09;2029-04-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-06-04;2029-06-04;2029-06-04;2029-06-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-07-30;2029-07-30;2029-07-30;2029-07-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-09-24;2029-09-24;2029-09-24;2029-09-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-11-19;2029-11-19;2029-11-19;2029-11-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2030-01-14;2030-01-14;2030-01-14;2030-01-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2030-03-11;2030-03-11;2030-03-11;2030-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-05-06;2030-05-06;2030-05-06;2030-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-07-01;2030-07-01;2030-07-01;2030-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-08-26;2030-08-26;2030-08-26;2030-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-10-21;2030-10-21;2030-10-21;2030-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-12-16;2030-12-16;2030-12-16;2030-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2031-02-10;2031-02-10;2031-02-10;2031-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-04-07;2031-04-07;2031-04-07;2031-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-06-02;2031-06-02;2031-06-02;2031-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-07-28;2031-07-28;2031-07-28;2031-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-09-22;2031-09-22;2031-09-22;2031-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-11-17;2031-11-17;2031-11-17;2031-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2032-01-12;2032-01-12;2032-01-12;2032-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2032-03-08;2032-03-08;2032-03-08;2032-03-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-05-03;2032-05-03;2032-05-03;2032-05-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-06-28;2032-06-28;2032-06-28;2032-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-08-23;2032-08-23;2032-08-23;2032-08-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-10-18;2032-10-18;2032-10-18;2032-10-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-12-13;2032-12-13;2032-12-13;2032-12-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2033-02-07;2033-02-07;2033-02-07;2033-02-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-04-04;2033-04-04;2033-04-04;2033-04-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-05-30;2033-05-30;2033-05-30;2033-05-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-07-25;2033-07-25;2033-07-25;2033-07-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-09-19;2033-09-19;2033-09-19;2033-09-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-11-14;2033-11-14;2033-11-14;2033-11-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2034-01-09;2034-01-09;2034-01-09;2034-01-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2034-03-06;2034-03-06;2034-03-06;2034-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-05-01;2034-05-01;2034-05-01;2034-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-06-26;2034-06-26;2034-06-26;2034-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-08-21;2034-08-21;2034-08-21;2034-08-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-10-16;2034-10-16;2034-10-16;2034-10-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-12-11;2034-12-11;2034-12-11;2034-12-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2035-02-05;2035-02-05;2035-02-05;2035-02-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-04-02;2035-04-02;2035-04-02;2035-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-05-28;2035-05-28;2035-05-28;2035-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-07-23;2035-07-23;2035-07-23;2035-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-09-17;2035-09-17;2035-09-17;2035-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-11-12;2035-11-12;2035-11-12;2035-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2036-01-07;2036-01-07;2036-01-07;2036-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2036-03-03;2036-03-03;2036-03-03;2036-03-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-04-28;2036-04-28;2036-04-28;2036-04-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-06-23;2036-06-23;2036-06-23;2036-06-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-08-18;2036-08-18;2036-08-18;2036-08-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-10-13;2036-10-13;2036-10-13;2036-10-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-12-08;2036-12-08;2036-12-08;2036-12-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10094";"DD5-US10094";"Joel";"Pekow";"COV";"Site Closure";"";"Closure Visit";"";2037-02-02;2037-02-02;2037-02-02;2037-02-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10095";"DD5-US10095";"Keith";"Sultan";"SQV";"Qualification Visit";"";"Qualification Visit";"Within the plan";2025-06-11;2025-06-11;2025-06-11;2025-06-11;2025-07-20;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-12;2025-06-12;2025-06-12;2025-06-12;2025-06-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-30;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-12-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2026-02-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-01-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"Within the plan";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-04-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10096";"DD5-US10096";"Alan G.";"Weintraub";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10097";"DD5-US10097";"L Michael";"Weiss";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-06-12;2025-06-12;2025-06-12;2025-06-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10098";"DD5-US10098";"Shruti";"Khurana";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-13;2025-06-13;2025-06-13;2025-06-13;2025-07-10;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10099";"DD5-US10099";"Zubair";"Farooqui";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-13;2025-06-13;2025-06-13;2025-06-13;2025-06-25;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10100";"DD5-US10100";"Mirel";"Sanchez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-13;2025-06-13;2025-06-13;2025-06-13;2025-07-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10101";"DD5-US10101";"Basher";"Atiquzzaman";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-14;2025-06-14;2025-06-14;2025-06-14;2025-06-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10102";"DD5-US10102";"Juan";"Rodriguez";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-06-14;2025-06-14;2025-06-14;2025-06-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10103";"DD5-US10103";"Sabina";"Ali";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-18;2025-06-18;2025-06-18;2025-06-18;2025-08-05;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10104";"DD5-US10104";"Srikiran";"Pothamsetty";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-19;2025-06-19;2025-06-19;2025-06-19;2025-06-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10105";"DD5-US10105";"Tuba";"Esfandyari";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-20;2025-06-20;2025-06-20;2025-06-20;2025-07-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10106";"DD5-US10106";"Neera";"Grover";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-20;2025-06-20;2025-06-20;2025-06-20;2025-08-01;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10107";"DD5-US10107";"Thomas";"Nguyen";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"Within the plan";2025-06-20;2025-06-20;2025-06-20;2025-06-20;2025-10-31;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10108";"DD5-US10108";"Aasim";"Sheikh";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-20;2025-06-20;2025-06-20;2025-06-20;2025-06-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-21;2025-06-21;2025-06-21;2025-06-21;2025-06-26;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"SIV";"Site Initiation";"Completed";"Initiation Visit";"";2025-10-02;2025-10-02;2025-10-02;2025-10-02;2025-10-31;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-11-27;2025-11-27;2025-11-27;2025-11-27;2025-11-20;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"";2026-01-22;2026-01-22;2026-01-22;2026-01-22;2025-12-18;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV3";"Monitoring Visit 3";"Planned";"Monitoring Visit";"";2026-03-19;2026-03-19;2026-03-19;2026-03-19;2026-01-14;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV4";"Monitoring Visit 4";"Completed";"Monitoring Visit";"";2026-05-14;2026-05-14;2026-05-14;2026-05-14;2026-01-20;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV5";"Monitoring Visit 5";"Completed";"Monitoring Visit";"";2026-07-09;2026-07-09;2026-07-09;2026-07-09;2026-03-26;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-03;2026-09-03;2026-09-03;2026-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-29;2026-10-29;2026-10-29;2026-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-24;2026-12-24;2026-12-24;2026-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-18;2027-02-18;2027-02-18;2027-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-15;2027-04-15;2027-04-15;2027-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-10;2027-06-10;2027-06-10;2027-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-05;2027-08-05;2027-08-05;2027-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-09-30;2027-09-30;2027-09-30;2027-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-25;2027-11-25;2027-11-25;2027-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-20;2028-01-20;2028-01-20;2028-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-16;2028-03-16;2028-03-16;2028-03-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-11;2028-05-11;2028-05-11;2028-05-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-06;2028-07-06;2028-07-06;2028-07-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-08-31;2028-08-31;2028-08-31;2028-08-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-26;2028-10-26;2028-10-26;2028-10-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-21;2028-12-21;2028-12-21;2028-12-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-15;2029-02-15;2029-02-15;2029-02-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-12;2029-04-12;2029-04-12;2029-04-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-07;2029-06-07;2029-06-07;2029-06-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-02;2029-08-02;2029-08-02;2029-08-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-27;2029-09-27;2029-09-27;2029-09-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-22;2029-11-22;2029-11-22;2029-11-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-17;2030-01-17;2030-01-17;2030-01-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-14;2030-03-14;2030-03-14;2030-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-09;2030-05-09;2030-05-09;2030-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-04;2030-07-04;2030-07-04;2030-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-29;2030-08-29;2030-08-29;2030-08-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-24;2030-10-24;2030-10-24;2030-10-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-19;2030-12-19;2030-12-19;2030-12-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-13;2031-02-13;2031-02-13;2031-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-10;2031-04-10;2031-04-10;2031-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-05;2031-06-05;2031-06-05;2031-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-07-31;2031-07-31;2031-07-31;2031-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-25;2031-09-25;2031-09-25;2031-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-20;2031-11-20;2031-11-20;2031-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-15;2032-01-15;2032-01-15;2032-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-11;2032-03-11;2032-03-11;2032-03-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-06;2032-05-06;2032-05-06;2032-05-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-01;2032-07-01;2032-07-01;2032-07-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-26;2032-08-26;2032-08-26;2032-08-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-21;2032-10-21;2032-10-21;2032-10-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-16;2032-12-16;2032-12-16;2032-12-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-10;2033-02-10;2033-02-10;2033-02-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-07;2033-04-07;2033-04-07;2033-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-02;2033-06-02;2033-06-02;2033-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-28;2033-07-28;2033-07-28;2033-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-22;2033-09-22;2033-09-22;2033-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-17;2033-11-17;2033-11-17;2033-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-12;2034-01-12;2034-01-12;2034-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-09;2034-03-09;2034-03-09;2034-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-04;2034-05-04;2034-05-04;2034-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-29;2034-06-29;2034-06-29;2034-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-24;2034-08-24;2034-08-24;2034-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-19;2034-10-19;2034-10-19;2034-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-14;2034-12-14;2034-12-14;2034-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"COV";"Site Closure";"";"Closure Visit";"";2035-02-08;2035-02-08;2035-02-08;2035-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-05;2035-04-05;2035-04-05;2035-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-05-31;2035-05-31;2035-05-31;2035-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-26;2035-07-26;2035-07-26;2035-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-20;2035-09-20;2035-09-20;2035-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-15;2035-11-15;2035-11-15;2035-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-10;2036-01-10;2036-01-10;2036-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-06;2036-03-06;2036-03-06;2036-03-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-01;2036-05-01;2036-05-01;2036-05-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10109";"DD5-US10109";"Karen";"Simon";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-26;2036-06-26;2036-06-26;2036-06-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10110";"DD5-US10110";"Jill";"Gaidos";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-25;2025-06-25;2025-06-25;2025-06-25;2025-08-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10111";"DD5-US10111";"Raymond";"Phillips";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-25;2025-06-25;2025-06-25;2025-06-25;2025-07-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-25;2025-06-25;2025-06-25;2025-06-25;2025-07-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-03;2025-10-03;2025-10-03;2025-10-03;2025-10-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-11-28;2025-11-28;2025-11-28;2025-11-28;2025-12-03;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-23;2026-01-23;2026-01-23;2026-01-23;2026-02-18;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV3";"Monitoring Visit 3";"Completed";"Monitoring Visit";"Within the plan";2026-03-20;2026-03-20;2026-03-20;2026-03-20;2026-04-17;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-15;2026-05-15;2026-05-15;2026-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-10;2026-07-10;2026-07-10;2026-07-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-04;2026-09-04;2026-09-04;2026-09-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-10-30;2026-10-30;2026-10-30;2026-10-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2026-12-25;2026-12-25;2026-12-25;2026-12-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-19;2027-02-19;2027-02-19;2027-02-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-16;2027-04-16;2027-04-16;2027-04-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-11;2027-06-11;2027-06-11;2027-06-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-06;2027-08-06;2027-08-06;2027-08-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-01;2027-10-01;2027-10-01;2027-10-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-11-26;2027-11-26;2027-11-26;2027-11-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-21;2028-01-21;2028-01-21;2028-01-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-17;2028-03-17;2028-03-17;2028-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-12;2028-05-12;2028-05-12;2028-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-07;2028-07-07;2028-07-07;2028-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-01;2028-09-01;2028-09-01;2028-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-10-27;2028-10-27;2028-10-27;2028-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-22;2028-12-22;2028-12-22;2028-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-16;2029-02-16;2029-02-16;2029-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-13;2029-04-13;2029-04-13;2029-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-08;2029-06-08;2029-06-08;2029-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-03;2029-08-03;2029-08-03;2029-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-09-28;2029-09-28;2029-09-28;2029-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-23;2029-11-23;2029-11-23;2029-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-18;2030-01-18;2030-01-18;2030-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-15;2030-03-15;2030-03-15;2030-03-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-10;2030-05-10;2030-05-10;2030-05-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-05;2030-07-05;2030-07-05;2030-07-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-08-30;2030-08-30;2030-08-30;2030-08-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-10-25;2030-10-25;2030-10-25;2030-10-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-20;2030-12-20;2030-12-20;2030-12-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-14;2031-02-14;2031-02-14;2031-02-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-11;2031-04-11;2031-04-11;2031-04-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-06;2031-06-06;2031-06-06;2031-06-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-01;2031-08-01;2031-08-01;2031-08-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-09-26;2031-09-26;2031-09-26;2031-09-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-21;2031-11-21;2031-11-21;2031-11-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-16;2032-01-16;2032-01-16;2032-01-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-12;2032-03-12;2032-03-12;2032-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-07;2032-05-07;2032-05-07;2032-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-02;2032-07-02;2032-07-02;2032-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-08-27;2032-08-27;2032-08-27;2032-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-22;2032-10-22;2032-10-22;2032-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-17;2032-12-17;2032-12-17;2032-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-11;2033-02-11;2033-02-11;2033-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-08;2033-04-08;2033-04-08;2033-04-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-03;2033-06-03;2033-06-03;2033-06-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-07-29;2033-07-29;2033-07-29;2033-07-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-23;2033-09-23;2033-09-23;2033-09-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-18;2033-11-18;2033-11-18;2033-11-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-13;2034-01-13;2034-01-13;2034-01-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-10;2034-03-10;2034-03-10;2034-03-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-05;2034-05-05;2034-05-05;2034-05-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-06-30;2034-06-30;2034-06-30;2034-06-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-08-25;2034-08-25;2034-08-25;2034-08-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-20;2034-10-20;2034-10-20;2034-10-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-15;2034-12-15;2034-12-15;2034-12-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"COV";"Site Closure";"";"Closure Visit";"";2035-02-09;2035-02-09;2035-02-09;2035-02-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-06;2035-04-06;2035-04-06;2035-04-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-01;2035-06-01;2035-06-01;2035-06-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-07-27;2035-07-27;2035-07-27;2035-07-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-21;2035-09-21;2035-09-21;2035-09-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-16;2035-11-16;2035-11-16;2035-11-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-11;2036-01-11;2036-01-11;2036-01-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-07;2036-03-07;2036-03-07;2036-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-02;2036-05-02;2036-05-02;2036-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10112";"DD5-US10112";"Daimis";"Vazquez Rosabal";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-06-27;2036-06-27;2036-06-27;2036-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-26;2025-06-26;2025-06-26;2025-06-26;2025-07-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2026-02-10;"Eden";"";"Doblin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2026-02-13;2026-02-13;2026-02-13;2026-02-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"COV";"Site Closure";"";"Closure Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10113";"DD5-US10113";"Jeffrey";"Hyams";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-09-12;2036-09-12;2036-09-12;2036-09-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10114";"DD5-US10114";"Jennifer";"Seminerio-Diehl";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-28;2025-06-28;2025-06-28;2025-06-28;2025-07-23;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10115";"DD5-US10115";"Gebran";"Khneizer";"SQV";"Qualification Visit";"Scheduled";"Qualification Visit";"";2025-06-28;2025-06-28;2025-06-28;2025-06-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-28;2025-06-28;2025-06-28;2025-06-28;2025-07-24;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"SIV";"Site Initiation";"Completed";"Initiation Visit";"Within the plan";2025-10-10;2025-10-10;2025-10-10;2025-10-10;2025-10-30;"Thomas";"";"Blondo" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"Within the plan";2025-12-05;2025-12-05;2025-12-05;2025-12-05;2025-12-09;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV2";"Monitoring Visit 2";"Completed";"Monitoring Visit";"Within the plan";2026-01-30;2026-01-30;2026-01-30;2026-01-30;2026-01-16;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV3";"Monitoring Visit 3";"Scheduled";"Monitoring Visit";"Within the plan";2026-03-27;2026-03-27;2026-03-27;2026-03-27;2026-03-02;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10116";"DD5-US10116";"Paul";"Hellstern";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10117";"DD5-US10117";"Xiaoyu";"Li";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-28;2025-06-28;2025-06-28;2025-06-28;2025-08-08;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10118";"DD5-US10118";"Mark";"Avila";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"";2025-06-28;2025-06-28;2025-06-28;2025-06-28;2025-08-13;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10119";"DD5-US10119";"Edward";"Loftus";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-06-28;2025-06-28;2025-06-28;2025-06-28;2025-08-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-07-01;2025-07-01;2025-07-01;2025-07-01;2025-07-29;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-10-24;2025-10-24;2025-10-24;2025-10-24;2025-11-21;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV1";"Monitoring Visit 1";"Completed";"Monitoring Visit";"";2025-12-19;2025-12-19;2025-12-19;2025-12-19;2025-12-17;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV2";"Monitoring Visit 2";"Scheduled";"Monitoring Visit";"";2026-02-13;2026-02-13;2026-02-13;2026-02-13;2026-02-11;"Kathryn";"";"Kamin" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-04-10;2026-04-10;2026-04-10;2026-04-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-06-05;2026-06-05;2026-06-05;2026-06-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-31;2026-07-31;2026-07-31;2026-07-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-25;2026-09-25;2026-09-25;2026-09-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-20;2026-11-20;2026-11-20;2026-11-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-15;2027-01-15;2027-01-15;2027-01-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-03-12;2027-03-12;2027-03-12;2027-03-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-05-07;2027-05-07;2027-05-07;2027-05-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-07-02;2027-07-02;2027-07-02;2027-07-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-27;2027-08-27;2027-08-27;2027-08-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-22;2027-10-22;2027-10-22;2027-10-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-17;2027-12-17;2027-12-17;2027-12-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-02-11;2028-02-11;2028-02-11;2028-02-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-04-07;2028-04-07;2028-04-07;2028-04-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-06-02;2028-06-02;2028-06-02;2028-06-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-28;2028-07-28;2028-07-28;2028-07-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-22;2028-09-22;2028-09-22;2028-09-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-17;2028-11-17;2028-11-17;2028-11-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2029-01-12;2029-01-12;2029-01-12;2029-01-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-03-09;2029-03-09;2029-03-09;2029-03-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-05-04;2029-05-04;2029-05-04;2029-05-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-29;2029-06-29;2029-06-29;2029-06-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-24;2029-08-24;2029-08-24;2029-08-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-19;2029-10-19;2029-10-19;2029-10-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-12-14;2029-12-14;2029-12-14;2029-12-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-02-08;2030-02-08;2030-02-08;2030-02-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-04-05;2030-04-05;2030-04-05;2030-04-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-31;2030-05-31;2030-05-31;2030-05-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-26;2030-07-26;2030-07-26;2030-07-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-20;2030-09-20;2030-09-20;2030-09-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-15;2030-11-15;2030-11-15;2030-11-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2031-01-10;2031-01-10;2031-01-10;2031-01-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-03-07;2031-03-07;2031-03-07;2031-03-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-05-02;2031-05-02;2031-05-02;2031-05-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-27;2031-06-27;2031-06-27;2031-06-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-22;2031-08-22;2031-08-22;2031-08-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-17;2031-10-17;2031-10-17;2031-10-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-12-12;2031-12-12;2031-12-12;2031-12-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-02-06;2032-02-06;2032-02-06;2032-02-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-04-02;2032-04-02;2032-04-02;2032-04-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-28;2032-05-28;2032-05-28;2032-05-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-23;2032-07-23;2032-07-23;2032-07-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-17;2032-09-17;2032-09-17;2032-09-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-11-12;2032-11-12;2032-11-12;2032-11-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2033-01-07;2033-01-07;2033-01-07;2033-01-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-03-04;2033-03-04;2033-03-04;2033-03-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-29;2033-04-29;2033-04-29;2033-04-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-24;2033-06-24;2033-06-24;2033-06-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-19;2033-08-19;2033-08-19;2033-08-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-10-14;2033-10-14;2033-10-14;2033-10-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-12-09;2033-12-09;2033-12-09;2033-12-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-02-03;2034-02-03;2034-02-03;2034-02-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-31;2034-03-31;2034-03-31;2034-03-31;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-26;2034-05-26;2034-05-26;2034-05-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-21;2034-07-21;2034-07-21;2034-07-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-15;2034-09-15;2034-09-15;2034-09-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-11-10;2034-11-10;2034-11-10;2034-11-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2035-01-05;2035-01-05;2035-01-05;2035-01-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"COV";"Site Closure";"";"Closure Visit";"";2035-03-02;2035-03-02;2035-03-02;2035-03-02;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-27;2035-04-27;2035-04-27;2035-04-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-22;2035-06-22;2035-06-22;2035-06-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-17;2035-08-17;2035-08-17;2035-08-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-10-12;2035-10-12;2035-10-12;2035-10-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-12-07;2035-12-07;2035-12-07;2035-12-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-02-01;2036-02-01;2036-02-01;2036-02-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-28;2036-03-28;2036-03-28;2036-03-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-23;2036-05-23;2036-05-23;2036-05-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10120";"DD5-US10120";"Shahbaz";"Qureshi";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-18;2036-07-18;2036-07-18;2036-07-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10121";"DD5-US10121";"Peter";"Higgins";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-07-02;2025-07-02;2025-07-02;2025-07-02;2025-08-04;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-07-02;2025-07-02;2025-07-02;2025-07-02;2025-07-15;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"SIV";"Site Initiation";"Scheduled";"Initiation Visit";"";2025-10-10;2025-10-10;2025-10-10;2025-10-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV1";"Monitoring Visit 1";"";"Monitoring Visit";"";2025-12-05;2025-12-05;2025-12-05;2025-12-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV2";"Monitoring Visit 2";"";"Monitoring Visit";"";2026-01-30;2026-01-30;2026-01-30;2026-01-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV3";"Monitoring Visit 3";"";"Monitoring Visit";"";2026-03-27;2026-03-27;2026-03-27;2026-03-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV4";"Monitoring Visit 4";"";"Monitoring Visit";"";2026-05-22;2026-05-22;2026-05-22;2026-05-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV5";"Monitoring Visit 5";"";"Monitoring Visit";"";2026-07-17;2026-07-17;2026-07-17;2026-07-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV6";"Monitoring Visit 6";"";"Monitoring Visit";"";2026-09-11;2026-09-11;2026-09-11;2026-09-11;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV7";"Monitoring Visit 7";"";"Monitoring Visit";"";2026-11-06;2026-11-06;2026-11-06;2026-11-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV8";"Monitoring Visit 8";"";"Monitoring Visit";"";2027-01-01;2027-01-01;2027-01-01;2027-01-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV9";"Monitoring Visit 9";"";"Monitoring Visit";"";2027-02-26;2027-02-26;2027-02-26;2027-02-26;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV10";"Monitoring Visit 10";"";"Monitoring Visit";"";2027-04-23;2027-04-23;2027-04-23;2027-04-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV11";"Monitoring Visit 11";"";"Monitoring Visit";"";2027-06-18;2027-06-18;2027-06-18;2027-06-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV12";"Monitoring Visit 12";"";"Monitoring Visit";"";2027-08-13;2027-08-13;2027-08-13;2027-08-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV13";"Monitoring Visit 13";"";"Monitoring Visit";"";2027-10-08;2027-10-08;2027-10-08;2027-10-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV14";"Monitoring Visit 14";"";"Monitoring Visit";"";2027-12-03;2027-12-03;2027-12-03;2027-12-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV15";"Monitoring Visit 15";"";"Monitoring Visit";"";2028-01-28;2028-01-28;2028-01-28;2028-01-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV16";"Monitoring Visit 16";"";"Monitoring Visit";"";2028-03-24;2028-03-24;2028-03-24;2028-03-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV17";"Monitoring Visit 17";"";"Monitoring Visit";"";2028-05-19;2028-05-19;2028-05-19;2028-05-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV18";"Monitoring Visit 18";"";"Monitoring Visit";"";2028-07-14;2028-07-14;2028-07-14;2028-07-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV19";"Monitoring Visit 19";"";"Monitoring Visit";"";2028-09-08;2028-09-08;2028-09-08;2028-09-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV20";"Monitoring Visit 20";"";"Monitoring Visit";"";2028-11-03;2028-11-03;2028-11-03;2028-11-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV21";"Monitoring Visit 21";"";"Monitoring Visit";"";2028-12-29;2028-12-29;2028-12-29;2028-12-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV22";"Monitoring Visit 22";"";"Monitoring Visit";"";2029-02-23;2029-02-23;2029-02-23;2029-02-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV23";"Monitoring Visit 23";"";"Monitoring Visit";"";2029-04-20;2029-04-20;2029-04-20;2029-04-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV24";"Monitoring Visit 24";"";"Monitoring Visit";"";2029-06-15;2029-06-15;2029-06-15;2029-06-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV25";"Monitoring Visit 25";"";"Monitoring Visit";"";2029-08-10;2029-08-10;2029-08-10;2029-08-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV26";"Monitoring Visit 26";"";"Monitoring Visit";"";2029-10-05;2029-10-05;2029-10-05;2029-10-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV27";"Monitoring Visit 27";"";"Monitoring Visit";"";2029-11-30;2029-11-30;2029-11-30;2029-11-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV28";"Monitoring Visit 28";"";"Monitoring Visit";"";2030-01-25;2030-01-25;2030-01-25;2030-01-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV29";"Monitoring Visit 29";"";"Monitoring Visit";"";2030-03-22;2030-03-22;2030-03-22;2030-03-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV30";"Monitoring Visit 30";"";"Monitoring Visit";"";2030-05-17;2030-05-17;2030-05-17;2030-05-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV31";"Monitoring Visit 31";"";"Monitoring Visit";"";2030-07-12;2030-07-12;2030-07-12;2030-07-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV32";"Monitoring Visit 32";"";"Monitoring Visit";"";2030-09-06;2030-09-06;2030-09-06;2030-09-06;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV33";"Monitoring Visit 33";"";"Monitoring Visit";"";2030-11-01;2030-11-01;2030-11-01;2030-11-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV34";"Monitoring Visit 34";"";"Monitoring Visit";"";2030-12-27;2030-12-27;2030-12-27;2030-12-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV35";"Monitoring Visit 35";"";"Monitoring Visit";"";2031-02-21;2031-02-21;2031-02-21;2031-02-21;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV36";"Monitoring Visit 36";"";"Monitoring Visit";"";2031-04-18;2031-04-18;2031-04-18;2031-04-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV37";"Monitoring Visit 37";"";"Monitoring Visit";"";2031-06-13;2031-06-13;2031-06-13;2031-06-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV38";"Monitoring Visit 38";"";"Monitoring Visit";"";2031-08-08;2031-08-08;2031-08-08;2031-08-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV39";"Monitoring Visit 39";"";"Monitoring Visit";"";2031-10-03;2031-10-03;2031-10-03;2031-10-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV40";"Monitoring Visit 40";"";"Monitoring Visit";"";2031-11-28;2031-11-28;2031-11-28;2031-11-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV41";"Monitoring Visit 41";"";"Monitoring Visit";"";2032-01-23;2032-01-23;2032-01-23;2032-01-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV42";"Monitoring Visit 42";"";"Monitoring Visit";"";2032-03-19;2032-03-19;2032-03-19;2032-03-19;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV43";"Monitoring Visit 43";"";"Monitoring Visit";"";2032-05-14;2032-05-14;2032-05-14;2032-05-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV44";"Monitoring Visit 44";"";"Monitoring Visit";"";2032-07-09;2032-07-09;2032-07-09;2032-07-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV45";"Monitoring Visit 45";"";"Monitoring Visit";"";2032-09-03;2032-09-03;2032-09-03;2032-09-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV46";"Monitoring Visit 46";"";"Monitoring Visit";"";2032-10-29;2032-10-29;2032-10-29;2032-10-29;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV47";"Monitoring Visit 47";"";"Monitoring Visit";"";2032-12-24;2032-12-24;2032-12-24;2032-12-24;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV48";"Monitoring Visit 48";"";"Monitoring Visit";"";2033-02-18;2033-02-18;2033-02-18;2033-02-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV49";"Monitoring Visit 49";"";"Monitoring Visit";"";2033-04-15;2033-04-15;2033-04-15;2033-04-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV50";"Monitoring Visit 50";"";"Monitoring Visit";"";2033-06-10;2033-06-10;2033-06-10;2033-06-10;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV51";"Monitoring Visit 51";"";"Monitoring Visit";"";2033-08-05;2033-08-05;2033-08-05;2033-08-05;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV52";"Monitoring Visit 52";"";"Monitoring Visit";"";2033-09-30;2033-09-30;2033-09-30;2033-09-30;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV53";"Monitoring Visit 53";"";"Monitoring Visit";"";2033-11-25;2033-11-25;2033-11-25;2033-11-25;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV54";"Monitoring Visit 54";"";"Monitoring Visit";"";2034-01-20;2034-01-20;2034-01-20;2034-01-20;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV55";"Monitoring Visit 55";"";"Monitoring Visit";"";2034-03-17;2034-03-17;2034-03-17;2034-03-17;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV56";"Monitoring Visit 56";"";"Monitoring Visit";"";2034-05-12;2034-05-12;2034-05-12;2034-05-12;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV57";"Monitoring Visit 57";"";"Monitoring Visit";"";2034-07-07;2034-07-07;2034-07-07;2034-07-07;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV58";"Monitoring Visit 58";"";"Monitoring Visit";"";2034-09-01;2034-09-01;2034-09-01;2034-09-01;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV59";"Monitoring Visit 59";"";"Monitoring Visit";"";2034-10-27;2034-10-27;2034-10-27;2034-10-27;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV60";"Monitoring Visit 60";"";"Monitoring Visit";"";2034-12-22;2034-12-22;2034-12-22;2034-12-22;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV61";"Monitoring Visit 61";"";"Monitoring Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"COV";"Site Closure";"";"Closure Visit";"";2035-02-16;2035-02-16;2035-02-16;2035-02-16;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV62";"Monitoring Visit 62";"";"Monitoring Visit";"";2035-04-13;2035-04-13;2035-04-13;2035-04-13;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV63";"Monitoring Visit 63";"";"Monitoring Visit";"";2035-06-08;2035-06-08;2035-06-08;2035-06-08;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV64";"Monitoring Visit 64";"";"Monitoring Visit";"";2035-08-03;2035-08-03;2035-08-03;2035-08-03;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV65";"Monitoring Visit 65";"";"Monitoring Visit";"";2035-09-28;2035-09-28;2035-09-28;2035-09-28;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV66";"Monitoring Visit 66";"";"Monitoring Visit";"";2035-11-23;2035-11-23;2035-11-23;2035-11-23;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV67";"Monitoring Visit 67";"";"Monitoring Visit";"";2036-01-18;2036-01-18;2036-01-18;2036-01-18;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV68";"Monitoring Visit 68";"";"Monitoring Visit";"";2036-03-14;2036-03-14;2036-03-14;2036-03-14;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV69";"Monitoring Visit 69";"";"Monitoring Visit";"";2036-05-09;2036-05-09;2036-05-09;2036-05-09;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10122";"DD5-US10122";"Ulric";"Duncan";"IMV70";"Monitoring Visit 70";"";"Monitoring Visit";"";2036-07-04;2036-07-04;2036-07-04;2036-07-04;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-US10123";"DD5-US10123";"Jose";"Martinez";"SQV";"Qualification Visit";"Completed";"Qualification Visit";"Within the plan";2025-07-03;2025-07-03;2025-07-03;2025-07-03;2025-07-22;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ZA10001";"DD5-ZA10001";"Malgorzata";"George";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ZA10002";"DD5-ZA10002";"Johannes";"Breedt";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ZA10003";"DD5-ZA10003";"Larisha";"Pillay-Ramaya";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ZA10004";"DD5-ZA10004";"Moodliar";"Ronelle";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" +"77242113UCO3001";"77242113UCO3001";"DD5-ZA10005";"DD5-ZA10005";"John";"Wright";"SQV";"Qualification Visit";"";"Qualification Visit";"";2025-05-15;2025-05-15;2025-05-15;2025-05-15;;"";"";"" diff --git a/CTMS/output/2026-04-27 UCO3001 CZ CTMS Visits.xlsx b/CTMS/output/2026-04-27 UCO3001 CZ CTMS Visits.xlsx new file mode 100644 index 0000000..bdd662b Binary files /dev/null and b/CTMS/output/2026-04-27 UCO3001 CZ CTMS Visits.xlsx differ diff --git a/CTMS/output/Protocol/D1_m25540-protocol-redacted.PDF b/CTMS/output/Protocol/D1_m25540-protocol-redacted.PDF new file mode 100644 index 0000000..87a92c2 Binary files /dev/null and b/CTMS/output/Protocol/D1_m25540-protocol-redacted.PDF differ diff --git a/CTMS/output/Protocol/D4_Patient facing documents-Placeholder_SK.PDF b/CTMS/output/Protocol/D4_Patient facing documents-Placeholder_SK.PDF new file mode 100644 index 0000000..ef5a312 Binary files /dev/null and b/CTMS/output/Protocol/D4_Patient facing documents-Placeholder_SK.PDF differ diff --git a/CTMS/output/Protocol/D4_Patient facing documents-Public.PDF b/CTMS/output/Protocol/D4_Patient facing documents-Public.PDF new file mode 100644 index 0000000..ef5a312 Binary files /dev/null and b/CTMS/output/Protocol/D4_Patient facing documents-Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/K1_M25-540_AT_Recruitment and ICF Procedures_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/K1_M25-540_AT_Recruitment and ICF Procedures_public.PDF new file mode 100644 index 0000000..96a462d Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/K1_M25-540_AT_Recruitment and ICF Procedures_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_ AT_ICF Main_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_ AT_ICF Main_public.PDF new file mode 100644 index 0000000..962e7d8 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_ AT_ICF Main_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_AT_Blank document_ICF site contact details_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_AT_Blank document_ICF site contact details_public.PDF new file mode 100644 index 0000000..aaf628b Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Austria/L1_M25-540_AT_Blank document_ICF site contact details_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/K1_M25-540 BG Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/K1_M25-540 BG Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..fba0b0a Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/K1_M25-540 BG Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined Bulgarian_Public redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined Bulgarian_Public redacted.PDF new file mode 100644 index 0000000..829904c Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined Bulgarian_Public redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Public Redacted.PDF new file mode 100644 index 0000000..7272e55 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Track changes.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Track changes.PDF new file mode 100644 index 0000000..19f538a Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Bulgaria/L1_M25-540 BG ICF Combined English_Track changes.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/K1_M25-540 HR Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/K1_M25-540 HR Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..6de2217 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/K1_M25-540 HR Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Main_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Main_Public.PDF new file mode 100644 index 0000000..5fa8ff0 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Main_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Optional_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Optional_Public.PDF new file mode 100644 index 0000000..8a443a8 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Optional_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Pregnant Subject_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Pregnant Subject_Public.PDF new file mode 100644 index 0000000..b712757 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Croatia/L1_M25-540 HR ICF Pregnant Subject_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/K1 M25-540 CZ Recruitment and ICF Procedures.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/K1 M25-540 CZ Recruitment and ICF Procedures.PDF new file mode 100644 index 0000000..1482027 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/K1 M25-540 CZ Recruitment and ICF Procedures.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ Confidentiality and data protection Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ Confidentiality and data protection Public.PDF new file mode 100644 index 0000000..53e7fa6 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ Confidentiality and data protection Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Main Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Main Public.PDF new file mode 100644 index 0000000..84892ac Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Main Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Optional Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Optional Public.PDF new file mode 100644 index 0000000..a71776d Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF Optional Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF PTE Addendum Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF PTE Addendum Public.PDF new file mode 100644 index 0000000..662f2aa Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Czechia/L1 M25-540 CZ ICF PTE Addendum Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/K1_M25-540_EE_Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/K1_M25-540_EE_Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..0d0f189 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/K1_M25-540_EE_Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Estonian_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Estonian_Public.PDF new file mode 100644 index 0000000..78033ac Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Estonian_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Russian_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Russian_Public.PDF new file mode 100644 index 0000000..d754294 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Estonia/L1_M25-540_EE_ICF Main_Russian_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/K1 M25-540 FI Recruitment and ICF Procedures_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/K1 M25-540 FI Recruitment and ICF Procedures_public.PDF new file mode 100644 index 0000000..f078f41 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/K1 M25-540 FI Recruitment and ICF Procedures_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/L1 M25-540 FI Main ICF_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/L1 M25-540 FI Main ICF_Public.PDF new file mode 100644 index 0000000..0724263 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Finland/L1 M25-540 FI Main ICF_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/K1 M25-540 FR Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/K1 M25-540 FR Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..faead29 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/K1 M25-540 FR Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF.PDF new file mode 100644 index 0000000..3fbefd2 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF_TrackChanges.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF_TrackChanges.PDF new file mode 100644 index 0000000..4b83760 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Addendum Main ICF_TrackChanges.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Main ICF.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Main ICF.PDF new file mode 100644 index 0000000..385c8a8 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Main ICF.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Optional research ICF.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Optional research ICF.PDF new file mode 100644 index 0000000..cf1180f Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Optional research ICF.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF.PDF new file mode 100644 index 0000000..0359df5 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF_Track Changes.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF_Track Changes.PDF new file mode 100644 index 0000000..b5e7f74 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/France/L1 M25-540 FR Pregnant Participant ICF_Track Changes.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/K1_M25-540_DE_Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/K1_M25-540_DE_Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..07a4889 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/K1_M25-540_DE_Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE ICF Pregnancy_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE ICF Pregnancy_Public.PDF new file mode 100644 index 0000000..fc14c29 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE ICF Pregnancy_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE_ICF Main_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE_ICF Main_Public Redacted.PDF new file mode 100644 index 0000000..9a29316 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Germany/L1_M25-540_DE_ICF Main_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/K1 M25-540 HU Recruitment and ICF Procedures Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/K1 M25-540 HU Recruitment and ICF Procedures Public.PDF new file mode 100644 index 0000000..904bbcc Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/K1 M25-540 HU Recruitment and ICF Procedures Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU Main ICF Public redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU Main ICF Public redacted.PDF new file mode 100644 index 0000000..e9c9f2a Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU Main ICF Public redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker ICF Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker ICF Public.PDF new file mode 100644 index 0000000..fc94b83 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker ICF Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker PIS Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker PIS Public.PDF new file mode 100644 index 0000000..40dc6d7 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L1 M25-540 HU PGen OptGen and Biomarker PIS Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L2 M25-540 HU EU-CTR blank document Subject Participation Card Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L2 M25-540 HU EU-CTR blank document Subject Participation Card Public.PDF new file mode 100644 index 0000000..33d7fb4 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Hungary/L2 M25-540 HU EU-CTR blank document Subject Participation Card Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/K1 M25-540 IE Recruitment and ICF Procedures Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/K1 M25-540 IE Recruitment and ICF Procedures Public.PDF new file mode 100644 index 0000000..7130dd7 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/K1 M25-540 IE Recruitment and ICF Procedures Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Continued Treatment PUBLIC.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Continued Treatment PUBLIC.PDF new file mode 100644 index 0000000..c8fd173 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Continued Treatment PUBLIC.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Main Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Main Public Redacted.PDF new file mode 100644 index 0000000..ce2ccff Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Ireland/L1 M25-540 IE ICF Main Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/K1_M25-540 IT Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/K1_M25-540 IT Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..8451597 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/K1_M25-540 IT Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Public Redacted.PDF new file mode 100644 index 0000000..b7b16d2 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Redline.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Redline.PDF new file mode 100644 index 0000000..b6929b0 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT ICF Combined_Redline.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT PTE_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT PTE_Public.PDF new file mode 100644 index 0000000..f851143 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT PTE_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT Pregnancy_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT Pregnancy_Public.PDF new file mode 100644 index 0000000..2e8499d Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Italy/L1_M25-540 IT Pregnancy_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/K1_M25-540_LV_Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/K1_M25-540_LV_Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..5cc7568 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/K1_M25-540_LV_Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Latvian_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Latvian_Public.PDF new file mode 100644 index 0000000..7d37f34 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Latvian_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Russian_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Russian_Public.PDF new file mode 100644 index 0000000..4be8b5d Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Latvia/L1_M25-540_LV_ICF Main_Russian_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/K1_M25-540_LT_Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/K1_M25-540_LT_Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..f77aaca Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/K1_M25-540_LT_Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Main_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Main_Public.PDF new file mode 100644 index 0000000..d9984bd Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Main_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Optional_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Optional_Public.PDF new file mode 100644 index 0000000..b652726 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Lithuania/L1_M25-540_LT_ICF Optional_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/K1_M25-540 NL Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/K1_M25-540 NL Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..50eadf6 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/K1_M25-540 NL Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1 M25-540 NL ICF Cont Treatment_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1 M25-540 NL ICF Cont Treatment_Public.PDF new file mode 100644 index 0000000..b1d54a9 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1 M25-540 NL ICF Cont Treatment_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1_M25-540 NL ICF Main_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1_M25-540 NL ICF Main_Public Redacted.PDF new file mode 100644 index 0000000..7ee6fa1 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Netherlands/L1_M25-540 NL ICF Main_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/K1 M25-540 PL Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/K1 M25-540 PL Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..5db0c72 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/K1 M25-540 PL Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Main_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Main_Public Redacted.PDF new file mode 100644 index 0000000..a750ba3 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Main_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Optional_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Optional_Public.PDF new file mode 100644 index 0000000..7ee3b90 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Optional_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Pregnancy_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Pregnancy_Public.PDF new file mode 100644 index 0000000..f9ec453 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Poland/L1 M25-540 PL ICF Pregnancy_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/K1_M25-540 RO Recruitment and ICF Procedures.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/K1_M25-540 RO Recruitment and ICF Procedures.PDF new file mode 100644 index 0000000..1ced256 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/K1_M25-540 RO Recruitment and ICF Procedures.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main English_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main English_Public Redacted.PDF new file mode 100644 index 0000000..5635d24 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main English_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main Romanian_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main Romanian_Public Redacted.PDF new file mode 100644 index 0000000..73866bd Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF Main Romanian_Public Redacted.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum English_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum English_Public.PDF new file mode 100644 index 0000000..44dcf5a Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum English_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum Romanian_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum Romanian_Public.PDF new file mode 100644 index 0000000..92889b0 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Romania/L1_M25-540 RO ICF PTE Addendum Romanian_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/K1 M25-540 SK Recruitment and ICF Procedures.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/K1 M25-540 SK Recruitment and ICF Procedures.PDF new file mode 100644 index 0000000..7efd68d Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/K1 M25-540 SK Recruitment and ICF Procedures.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK Confidentiality and data protection.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK Confidentiality and data protection.PDF new file mode 100644 index 0000000..ee7ef57 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK Confidentiality and data protection.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Main Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Main Public.PDF new file mode 100644 index 0000000..6de1446 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Main Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Optional.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Optional.PDF new file mode 100644 index 0000000..eff01e0 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF Optional.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF PTE Addendum.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF PTE Addendum.PDF new file mode 100644 index 0000000..4861f4f Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovakia/L1 M25-540 SK ICF PTE Addendum.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/K1_M25-540 SI Recruitment and ICF Procedures.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/K1_M25-540 SI Recruitment and ICF Procedures.PDF new file mode 100644 index 0000000..1678f33 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/K1_M25-540 SI Recruitment and ICF Procedures.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/L1_M25-540 SI Main ICF Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/L1_M25-540 SI Main ICF Public.PDF new file mode 100644 index 0000000..c89ff5f Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Slovenia/L1_M25-540 SI Main ICF Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/K1_M25-540 ES Recruitment and ICF Procedures_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/K1_M25-540 ES Recruitment and ICF Procedures_public.PDF new file mode 100644 index 0000000..1cc8fc2 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/K1_M25-540 ES Recruitment and ICF Procedures_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Main_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Main_public.PDF new file mode 100644 index 0000000..6466e84 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Main_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Optional_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Optional_public.PDF new file mode 100644 index 0000000..cde4213 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Spain/L1_M25-540 ES ICF Optional_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K1 M25-540 SE Recruitment and ICF Procedures_Public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K1 M25-540 SE Recruitment and ICF Procedures_Public.PDF new file mode 100644 index 0000000..0bcc483 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K1 M25-540 SE Recruitment and ICF Procedures_Public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Ad Orebro_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Ad Orebro_public.PDF new file mode 100644 index 0000000..8dc7e57 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Ad Orebro_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Letter Orebro_public.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Letter Orebro_public.PDF new file mode 100644 index 0000000..d9fd9a4 Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/K2 M25-540 SE Recruitment material Letter Orebro_public.PDF differ diff --git a/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/L1 M25-540 SE Main ICF_Public Redacted.PDF b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/L1 M25-540 SE Main ICF_Public Redacted.PDF new file mode 100644 index 0000000..7d7d3fd Binary files /dev/null and b/CTMS/output/Recruitment arrangements and Subject information and informed consent form/Sweden/L1 M25-540 SE Main ICF_Public Redacted.PDF differ diff --git a/CTMS/output/Summary of Product Characteristics (SmPC)/E2_SmPC-vedolizumab.PDF b/CTMS/output/Summary of Product Characteristics (SmPC)/E2_SmPC-vedolizumab.PDF new file mode 100644 index 0000000..d0cee89 Binary files /dev/null and b/CTMS/output/Summary of Product Characteristics (SmPC)/E2_SmPC-vedolizumab.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-CZ.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-CZ.PDF new file mode 100644 index 0000000..36a0f34 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-CZ.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-EN.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-EN.PDF new file mode 100644 index 0000000..1d2aa16 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-EN.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-FR.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-FR.PDF new file mode 100644 index 0000000..c526fd6 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-FR.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-NL.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-NL.PDF new file mode 100644 index 0000000..747ea09 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-NL.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-RO.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-RO.PDF new file mode 100644 index 0000000..94f9477 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-RO.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SE.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SE.PDF new file mode 100644 index 0000000..9c3bddd Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SE.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SK.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SK.PDF new file mode 100644 index 0000000..6716c68 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol lay synopsis-SK.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-DE-AT_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-DE-AT_Public.PDF new file mode 100644 index 0000000..11f8b19 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-DE-AT_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-bulgarian_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-bulgarian_Public.PDF new file mode 100644 index 0000000..ec090a7 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-bulgarian_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-es-spanish_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-es-spanish_Public.PDF new file mode 100644 index 0000000..b454c90 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-es-spanish_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-hu-hungarian_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-hu-hungarian_Public.PDF new file mode 100644 index 0000000..95b6237 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-hu-hungarian_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-it-italian_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-it-italian_Public.PDF new file mode 100644 index 0000000..5e70925 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-it-italian_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-lt-lithuanian_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-lt-lithuanian_Public.PDF new file mode 100644 index 0000000..13b4cb1 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-lt-lithuanian_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-pl-polish_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-pl-polish_Public.PDF new file mode 100644 index 0000000..01cf484 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-pl-polish_Public.PDF differ diff --git a/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-si-slovenian_Public.PDF b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-si-slovenian_Public.PDF new file mode 100644 index 0000000..e83f5f8 Binary files /dev/null and b/CTMS/output/Synopsis of the protocol/D1_m25540-protocol synopsis-si-slovenian_Public.PDF differ diff --git a/Clario/README.md b/Clario/README.md new file mode 100644 index 0000000..575ab3d --- /dev/null +++ b/Clario/README.md @@ -0,0 +1,158 @@ +# Clario Report — 77242113UCO3001 + +| | | +|---|---| +| Verze | 1.5 | +| Datum | 2026-06-01 | + +Sada skriptů pro import Clario CSV exportů (MayoScore, MayoDiary) do MongoDB a generování interaktivního Excel reportu pro studii 77242113UCO3001. + +--- + +## Přehled + +Skript `create_report.py` generuje Excel report ze dvou MongoDB kolekcí (databáze `Clario`) do adresáře `U:\Dropbox\!!!Days\Downloads Z230\`. + +Název výstupního souboru: `YYYY-MM-DD 77242113UCO3001 Clario Reports.xlsm` +Pokud soubor se stejným názvem již existuje, přidá se suffix `(2)`, `(3)` atd. + +Soubor je ve formátu `.xlsm` (Excel s makry). Při otevření je nutné **povolit makra**. + +--- + +## Spuštění + +```bash +python create_report_v1.5.py +``` + +--- + +## Listy + +### MayoScore + +Jeden řádek = jeden záznam (pacient × visit). +Zdroj: `Clario.MayoScore` — 37 záznamů, 14 pacientů, 8 center. +Řazení: Site → Subject ID → Visit (I-0, I-2, I-4, I-8, I-12, Unscheduled). + +Řádky s Visit = `I-0` a Modified Mayo Score < 5 jsou zobrazeny **červeně tučně**. + +**Interaktivita:** Klik na libovolný řádek automaticky přepne na list EligibleDays a vyfiltruje záznamy pro daného pacienta a visit. + +| Sloupec | Popis | +|---|---| +| Site | Kód centra | +| Subject ID | Číslo pacienta | +| Visit | Kód návštěvy | +| Visit Date | Datum návštěvy | +| Baseline Stool Frequency | Výchozí frekvence stolic | +| Central Endoscopy Score | Centrální endoskopické skóre | +| PGA Score | Celkové hodnocení lékaře | +| Stool Frequency Sub-score | Subscore frekvence stolic | +| Rectal Bleeding Sub-score | Subscore rektálního krvácení | +| Partial Mayo Score | Parciální Mayo skóre | +| Modified Mayo Score | Modifikované Mayo skóre | +| Full Mayo Score | Úplné Mayo skóre | +| Site Action | Akce centra | +| Last Mayo Score Submission | Datum posledního odeslání Mayo skóre | +| Wk I-12 Responder | Klinický respondér ve Wk I-12 | +| Wk I-12 Remission | Klinická remise ve Wk I-12 | +| Clinical Flare | Klinický vzplanutí | +| Loss of Response | Ztráta odpovědi | +| Partial Mayo Post LoR | Parciální Mayo odpověď po ztrátě odpovědi | +| Partial Mayo Non-Resp | Parciální Mayo odpověď u klinických non-respondérů | + +### MayoDiary + +Jeden řádek = jeden denní záznam deníku pacienta. +Zdroj: `Clario.MayoDiary` — 1 098 záznamů, 20 pacientů, 10 center. +Řazení: Subject ID → Report Date. + +| Sloupec | Popis | +|---|---| +| Subject ID | Číslo pacienta | +| Report Date | Datum záznamu | +| Baseline Stool Count | Výchozí počet stolic | +| Stool Frequency | Frekvence stolic daný den | +| MAYO050 | Popis rektálního krvácení | +| Not Applicable | Záznam nepřipadá v úvahu | +| Constipation | Zácpa | +| Diarrhea | Průjem | +| Irregularity | Nepravidelnost | + +### EligibleDays + +Jeden řádek = jeden eligible day (-1 až -10) z MayoScore, obohacený o data z MayoDiary pro stejného pacienta a datum. +Řazení: Subject ID → Visit → Den (-1 první). + +Dny **nezahrnuté** do výpočtu skóre (Included = No): žluté pozadí, šedý font. + +| Sloupec | Popis | +|---|---| +| Included | Byl den zahrnut do výpočtu Mayo skóre? (Yes/No) | +| Subject ID | Číslo pacienta | +| Visit | Kód návštěvy | +| Visit Date | Datum návštěvy | +| Day | Číslo dne (-1 až -10) | +| Report Date | Datum daného dne | +| Baseline Stool Count | Výchozí počet stolic | +| Stool Frequency | Frekvence stolic daný den (z MayoDiary) | +| MAYO050 | Popis rektálního krvácení (z MayoDiary) | +| Not Applicable | Záznam nepřipadá v úvahu (z MayoDiary) | +| Constipation | Zácpa (z MayoDiary) | +| Diarrhea | Průjem (z MayoDiary) | +| Irregularity | Nepravidelnost (z MayoDiary) | + +--- + +## Import dat do MongoDB + +Skript `import_to_mongo.py` načte CSV soubory z adresáře `downloads/` a zapíše je do MongoDB. + +```bash +python import_to_mongo.py # všechny CSV z downloads/ +python import_to_mongo.py downloads/soubor.csv # jeden soubor +``` + +### Mapování souborů na kolekce + +| Vzor v názvu souboru | Kolekce | Klíč záznamu | +|---|---|---| +| `MayoDiary` | `Clario.MayoDiary` | Subject ID + Form Number | +| `MayoScore` | `Clario.MayoScore` | Participant ID + Visit | + +### Filtr + +Importují se pouze řádky s `Country == "Czech Republic"`. + +### Struktura dokumentu MayoScore + +Outcome sloupce jsou uloženy jako **top-level pole** dokumentu (ne uvnitř `fields{}`), pro snadné MongoDB dotazy: + +- `Site Action` +- `Last Mayo Score Submission` +- `Week I-12 Clinical Responder` +- `Week I-12 Clinical Remission` +- `Clinical Flare` +- `Loss of Response` +- `Partial Mayo Response Post Loss of Response` +- `Partial Mayo Response for Clinical Non-Responders` + +Ostatní datové sloupce jsou v `fields{}`. + +### Historie změn + +Při změně datových polí se předchozí verze uloží do pole `history[]` dokumentu spolu s datem změny. Záznamy se nikdy nemažou. + +Po zpracování se soubor přesune do `downloads/Zpracovano/`. + +--- + +## MongoDB + +| Parametr | Hodnota | +|---|---| +| URI | `mongodb://192.168.1.76:27017` | +| Databáze | `Clario` | +| Kolekce | `Clario.MayoScore`, `Clario.MayoDiary` | diff --git a/Clario/create_report_v1.5.py b/Clario/create_report_v1.5.py new file mode 100644 index 0000000..c7796c5 --- /dev/null +++ b/Clario/create_report_v1.5.py @@ -0,0 +1,477 @@ +""" +create_report.py +Verze: 1.5 +Datum: 2026-06-01 + +Generuje Excel report (.xlsm) pro studii 77242113UCO3001 z MongoDB databáze Clario. +Výstup: U:/Dropbox/!!!Days/Downloads Z230/YYYY-MM-DD 77242113UCO3001 Clario Reports.xlsm + +Zdroj dat: + MongoDB 192.168.1.76, databáze Clario + Kolekce Clario.MayoScore — skóre Mayo per pacient × visit + Kolekce Clario.MayoDiary — denní záznamy deníku pacienta + +Listy: + MayoScore — jeden řádek = pacient × visit + sloupec „KLIKNI SEM" naviguje na filtrovaný EligibleDays + řádky I-0 s Modified Mayo < 5 červeně tučně + MayoDiary — jeden řádek = denní záznam deníku pacienta + EligibleDays — jeden řádek = jeden eligible day z MayoScore obohacený o data z MayoDiary; + included/excluded flag, excluded dny šedě na žlutém pozadí + +VBA makro (Worksheet_SelectionChange na listu MayoScore): + Klik na sloupec „KLIKNI SEM" → přepne na EligibleDays a vyfiltruje záznamy + pro daného pacienta a visit. Vyžaduje povolení maker při otevření souboru. +""" + +VERSION = "1.5" + +from datetime import datetime +from pathlib import Path +import time + +from pymongo import MongoClient +from openpyxl import Workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter +import xlwings as xw + +# --------------------------------------------------------------------------- +# Konfigurace +# --------------------------------------------------------------------------- + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "Clario" +OUTPUT_DIR = Path(r"U:\Dropbox\!!!Days\Downloads Z230") + +VISIT_ORDER = ["I-0", "I-2", "I-4", "I-8", "I-12"] + +COLUMNS_SCORE = [ + ("KLIKNI SEM", lambda d: "▶ klikni sem"), + ("Site", lambda d: d.get("site", {}).get("name", "")), + ("Subject ID", lambda d: d.get("subject", {}).get("id", "")), + ("Visit", lambda d: d["fields"].get("Visit", "")), + ("Visit Date", lambda d: d["fields"].get("Visit Date", "")), + ("Baseline Stool Frequency", lambda d: _num(d["fields"].get("Baseline Stool Frequency", ""))), + ("Central Endoscopy Score", lambda d: _num(d["fields"].get("Central Endoscopy Score", ""))), + ("PGA Score", lambda d: _num(d["fields"].get("PGA Score", ""))), + ("Stool Frequency Sub-score", lambda d: _num(d["fields"].get("Stool Frequency Sub-score", ""))), + ("Rectal Bleeding Sub-score", lambda d: _num(d["fields"].get("Rectal Bleeding Sub-score", ""))), + ("Partial Mayo Score", lambda d: _num(d["fields"].get("Partial Mayo Score", ""))), + ("Modified Mayo Score", lambda d: _num(d["fields"].get("Modified Mayo Score", ""))), + ("Full Mayo Score", lambda d: _num(d["fields"].get("Full Mayo Score", ""))), + ("Site Action", lambda d: d.get("Site Action") or ""), + ("Last Mayo Score Submission", lambda d: d.get("Last Mayo Score Submission") or ""), + ("Wk I-12 Responder", lambda d: d.get("Week I-12 Clinical Responder") or ""), + ("Wk I-12 Remission", lambda d: d.get("Week I-12 Clinical Remission") or ""), + ("Clinical Flare", lambda d: d.get("Clinical Flare") or ""), + ("Loss of Response", lambda d: d.get("Loss of Response") or ""), + ("Partial Mayo Post LoR", lambda d: d.get("Partial Mayo Response Post Loss of Response") or ""), + ("Partial Mayo Non-Resp", lambda d: d.get("Partial Mayo Response for Clinical Non-Responders") or ""), +] + +COLUMNS_DIARY = [ + ("Subject ID", lambda d: d.get("subject", {}).get("id", "")), + ("Report Date", lambda d: d["fields"].get("Report Date", "")), + ("Baseline Stool Count", lambda d: _num(d["fields"].get("Baseline Stool Count", ""))), + ("Stool Frequency", lambda d: _num(d["fields"].get("Stool Frequency", ""))), + ("MAYO050", lambda d: d["fields"].get("MAYO050", "")), + ("Not Applicable", lambda d: d["fields"].get("Not Applicable", "")), + ("Constipation", lambda d: d["fields"].get("Constipation", "")), + ("Diarrhea", lambda d: d["fields"].get("Diarrhea", "")), + ("Irregularity", lambda d: d["fields"].get("Irregularity", "")), +] + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def _num(value): + """Převede číselný string na int, jinak vrátí původní hodnotu nebo None.""" + if value == "" or value is None: + return None + try: + return int(value) + except (ValueError, TypeError): + try: + return float(value) + except (ValueError, TypeError): + return value + + +def _visit_sort_key(doc): + visit = doc["fields"].get("Visit", "") + try: + idx = VISIT_ORDER.index(visit) + except ValueError: + idx = len(VISIT_ORDER) + return (doc.get("site", {}).get("name", ""), doc.get("subject", {}).get("id", ""), idx, visit) + + +def _iso_to_date(value): + """ISO string → Python date pro Excel.""" + if not isinstance(value, str): + return value + try: + return datetime.fromisoformat(value).date() + except ValueError: + return value + + +# --------------------------------------------------------------------------- +# Styly +# --------------------------------------------------------------------------- + +HEADER_FILL = PatternFill("solid", fgColor="1F497D") +HEADER_FONT = Font(bold=True, color="FFFFFF", size=10) +CELL_FONT = Font(size=10) +ALIGN_CTR = Alignment(horizontal="center", vertical="center", wrap_text=False) +ALIGN_LEFT = Alignment(horizontal="left", vertical="center") + +THIN = Side(style="thin", color="BFBFBF") +BORDER = Border(left=THIN, right=THIN, top=THIN, bottom=THIN) + +# zebra +FILL_ODD = PatternFill("solid", fgColor="FFFFFF") +FILL_EVEN = PatternFill("solid", fgColor="EBF1DE") + +SCORE_COLS = {"Partial Mayo Score", "Modified Mayo Score", "Full Mayo Score"} +SCORE_FILL = PatternFill("solid", fgColor="FFC7CE") # červená pro skóre ≥ 5 (placeholder — nepoužíváme podmíněné formátování) + + +# --------------------------------------------------------------------------- +# Sestavení sheetu +# --------------------------------------------------------------------------- + +def _build_sheet(ws, docs, columns, date_cols, center_cols, col_widths, row_font_fn=None): + headers = [c[0] for c in columns] + + for col_idx, header in enumerate(headers, 1): + cell = ws.cell(row=1, column=col_idx, value=header) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = ALIGN_CTR + cell.border = BORDER + ws.row_dimensions[1].height = 28 + + for row_idx, doc in enumerate(docs, 2): + fill = FILL_EVEN if row_idx % 2 == 0 else FILL_ODD + font = row_font_fn(doc) if row_font_fn else CELL_FONT + for col_idx, (col_name, getter) in enumerate(columns, 1): + value = getter(doc) + if col_name in date_cols and isinstance(value, str): + value = _iso_to_date(value) + cell = ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = font + cell.fill = fill + cell.border = BORDER + cell.alignment = ALIGN_CTR if col_name in center_cols else ALIGN_LEFT + + for col_idx, (col_name, _) in enumerate(columns, 1): + ws.column_dimensions[get_column_letter(col_idx)].width = col_widths.get(col_name, 14) + + for col_name in date_cols: + if col_name in headers: + letter = get_column_letter(headers.index(col_name) + 1) + for row_idx in range(2, len(docs) + 2): + ws[f"{letter}{row_idx}"].number_format = "DD-MMM-YYYY" + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +def _score_row_font(doc): + visit = doc["fields"].get("Visit", "") + try: + mod_mayo = int(doc["fields"].get("Modified Mayo Score", "")) + except (ValueError, TypeError): + mod_mayo = None + if visit == "I-0" and mod_mayo is not None and mod_mayo < 5: + return Font(size=10, bold=True, color="FF0000") + return CELL_FONT + + +def build_mayo_score_sheet(ws, docs): + _build_sheet( + ws, docs, COLUMNS_SCORE, + date_cols={"Visit Date", "Last Mayo Score Submission"}, + center_cols={"KLIKNI SEM", "Visit", "Central Endoscopy Score", "PGA Score", + "Stool Frequency Sub-score", "Rectal Bleeding Sub-score", + "Partial Mayo Score", "Modified Mayo Score", "Full Mayo Score", + "Baseline Stool Frequency", + "Wk I-12 Responder", "Wk I-12 Remission", "Clinical Flare", + "Loss of Response", "Partial Mayo Post LoR", "Partial Mayo Non-Resp", + "Last Mayo Score Submission"}, + col_widths={ + "KLIKNI SEM": 14, + "Site": 18, "Subject ID": 16, "Visit": 12, "Visit Date": 14, + "Baseline Stool Frequency": 14, "Central Endoscopy Score": 14, + "PGA Score": 10, "Stool Frequency Sub-score": 14, + "Rectal Bleeding Sub-score": 14, "Partial Mayo Score": 14, + "Modified Mayo Score": 14, "Full Mayo Score": 13, + "Site Action": 22, "Last Mayo Score Submission": 16, + "Wk I-12 Responder": 14, "Wk I-12 Remission": 14, + "Clinical Flare": 14, "Loss of Response": 14, + "Partial Mayo Post LoR": 20, "Partial Mayo Non-Resp": 20, + }, + row_font_fn=_score_row_font, + ) + # Speciální styl pro sloupec KLIKNI SEM — vypadá jako tlačítko/odkaz + link_font = Font(size=10, bold=True, color="FFFFFF") + link_fill = PatternFill("solid", fgColor="2E75B6") + for row in range(2, len(docs) + 2): + cell = ws.cell(row=row, column=1) + cell.font = link_font + cell.fill = link_fill + cell.alignment = ALIGN_CTR + + +def build_mayo_diary_sheet(ws, docs): + _build_sheet( + ws, docs, COLUMNS_DIARY, + date_cols={"Report Date"}, + center_cols={"Baseline Stool Count", "Stool Frequency", "Not Applicable", + "Constipation", "Diarrhea", "Irregularity"}, + col_widths={ + "Subject ID": 16, "Report Date": 14, "Baseline Stool Count": 14, + "Stool Frequency": 14, "MAYO050": 48, "Not Applicable": 14, + "Constipation": 14, "Diarrhea": 12, "Irregularity": 14, + }, + ) + + +def build_eligible_days_sheet(ws, score_docs, diary_docs): + # Lookup diary records by (subject_id, date_part YYYY-MM-DD) + diary_lookup: dict[tuple, dict] = {} + for d in diary_docs: + subj = d.get("subject", {}).get("id", "") + date_iso = d["fields"].get("Report Date", "") + date_part = date_iso[:10] if date_iso else "" + if subj and date_part: + diary_lookup[(subj, date_part)] = d + + headers = [ + "Included", "Subject ID", "Visit", "Visit Date", "Day", + "Report Date", "Baseline Stool Count", "Stool Frequency", + "MAYO050", "Not Applicable", "Constipation", "Diarrhea", "Irregularity", + ] + col_widths = { + "Included": 10, "Subject ID": 16, "Visit": 10, "Visit Date": 14, "Day": 8, + "Report Date": 14, "Baseline Stool Count": 14, "Stool Frequency": 14, + "MAYO050": 48, "Not Applicable": 14, "Constipation": 14, + "Diarrhea": 12, "Irregularity": 14, + } + center_cols = {"Included", "Visit", "Day", "Baseline Stool Count", "Stool Frequency", + "Not Applicable", "Constipation", "Diarrhea", "Irregularity"} + date_cols = {"Visit Date", "Report Date"} + no_fill = PatternFill("solid", fgColor="FFF2CC") # žlutá pro excluded dny + + for col_idx, header in enumerate(headers, 1): + cell = ws.cell(row=1, column=col_idx, value=header) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = ALIGN_CTR + cell.border = BORDER + ws.row_dimensions[1].height = 28 + + row_idx = 2 + for score_doc in score_docs: + subj = score_doc.get("subject", {}).get("id", "") + visit = score_doc["fields"].get("Visit", "") + visit_date = score_doc["fields"].get("Visit Date", "") + + for n in range(1, 11): + day_date_iso = score_doc["fields"].get(f"Eligible Day (-{n})") + if not day_date_iso or day_date_iso == "-": + continue + date_part = day_date_iso[:10] + excl_reason = score_doc["fields"].get(f"Day (-{n}) Excluded Reason(s)", "") + included = "No" if excl_reason and excl_reason != "-" else "Yes" + + diary = diary_lookup.get((subj, date_part), {}) + df = diary.get("fields", {}) + + fill = no_fill if included == "No" else (FILL_EVEN if row_idx % 2 == 0 else FILL_ODD) + font = Font(size=10, color="808080") if included == "No" else CELL_FONT + + values = [ + included, + subj, + visit, + _iso_to_date(visit_date) if isinstance(visit_date, str) else visit_date, + f"-{n}", + _iso_to_date(day_date_iso), + _num(df.get("Baseline Stool Count", "")), + _num(df.get("Stool Frequency", "")), + df.get("MAYO050", ""), + df.get("Not Applicable", ""), + df.get("Constipation", ""), + df.get("Diarrhea", ""), + df.get("Irregularity", ""), + ] + + for col_idx, (header, value) in enumerate(zip(headers, values), 1): + cell = ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = font + cell.fill = fill + cell.border = BORDER + if header in date_cols: + cell.number_format = "DD-MMM-YYYY" + cell.alignment = ALIGN_CTR if header in center_cols else ALIGN_LEFT + + row_idx += 1 + + for col_idx, header in enumerate(headers, 1): + ws.column_dimensions[get_column_letter(col_idx)].width = col_widths.get(header, 14) + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +# --------------------------------------------------------------------------- +# Helpers: výstupní cesta +# --------------------------------------------------------------------------- + +def _unique_path(directory: Path, stem: str, suffix: str) -> Path: + candidate = directory / f"{stem}{suffix}" + if not candidate.exists(): + return candidate + n = 2 + while True: + candidate = directory / f"{stem} ({n}){suffix}" + if not candidate.exists(): + return candidate + n += 1 + + +# --------------------------------------------------------------------------- +# Timing helper +# --------------------------------------------------------------------------- + +def _tick(label: str, t0: float) -> float: + """Vypíše dobu od t0 a vrátí aktuální čas jako nový t0.""" + elapsed = time.perf_counter() - t0 + print(f" {label:<30} {elapsed:6.2f} s") + return time.perf_counter() + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + t_total = time.perf_counter() + print("Spouštím generování reportu...") + print() + + # -- 1. MongoDB: připojení + načtení + seřazení -------------------------- + t = time.perf_counter() + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + db = client[DB_NAME] + score_docs = list(db["Clario.MayoScore"].find({})) + diary_docs = list(db["Clario.MayoDiary"].find({})) + client.close() + score_docs.sort(key=_visit_sort_key) + diary_docs.sort(key=lambda d: ( + d.get("subject", {}).get("id", ""), + d["fields"].get("Report Date", ""), + )) + t = _tick(f"MongoDB (ping, fetch, sort → {len(score_docs)} + {len(diary_docs)} záznamů)", t) + + # -- 2–4. Tvorba listů --------------------------------------------------- + wb = Workbook() + ws_score = wb.active + ws_score.title = "MayoScore" + build_mayo_score_sheet(ws_score, score_docs) + t = _tick("List MayoScore (KLIKNI SEM, zebra, červené I-0, autofilter)", t) + + ws_diary = wb.create_sheet("MayoDiary") + build_mayo_diary_sheet(ws_diary, diary_docs) + t = _tick("List MayoDiary (zebra, formátování dat, autofilter)", t) + + ws_days = wb.create_sheet("EligibleDays") + build_eligible_days_sheet(ws_days, score_docs, diary_docs) + t = _tick("List EligibleDays (diary lookup, included/excluded flag, autofilter)", t) + + # -- 5. Uložení XLSX ----------------------------------------------------- + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + today = datetime.now().strftime("%Y-%m-%d") + base_stem = f"{today} 77242113UCO3001 Clario Reports" + xlsm_path = _unique_path(OUTPUT_DIR, base_stem, ".xlsm") + xlsx_path = xlsm_path.with_suffix(".xlsx") + wb.save(str(xlsx_path)) + t = _tick("Uložení XLSX (openpyxl, dočasný soubor)", t) + + # -- 6. Injektování VBA -------------------------------------------------- + inject_vba(xlsx_path, xlsm_path) + xlsx_path.unlink(missing_ok=True) + _tick("Injektování VBA (xlwings: open → AddFromString → SaveAs .xlsm)", t) + + # -- Souhrn -------------------------------------------------------------- + total = time.perf_counter() - t_total + print() + print(f" {'Celkem':<30} {total:6.2f} s") + print() + print(f"Uloženo: {xlsm_path}") + + +def inject_vba(xlsx_path: Path, xlsm_path: Path) -> None: + vba_code = '''\ +Private Sub Worksheet_SelectionChange(ByVal Target As Range) + If Target.Row < 2 Then Exit Sub + If Target.Rows.Count > 1 Then Exit Sub + If Target.Column <> 1 Then Exit Sub + + Dim subjectId As String + Dim visit As String + subjectId = CStr(Me.Cells(Target.Row, 3).Value) + visit = CStr(Me.Cells(Target.Row, 4).Value) + + If subjectId = "" Or visit = "" Then Exit Sub + + Dim ws As Worksheet + On Error Resume Next + Set ws = ThisWorkbook.Sheets("EligibleDays") + On Error GoTo 0 + If ws Is Nothing Then Exit Sub + + Application.ScreenUpdating = False + + ws.AutoFilterMode = False + ws.Range("A1").AutoFilter + ws.Range("A1").AutoFilter Field:=2, Criteria1:=subjectId + ws.Range("A1").AutoFilter Field:=3, Criteria1:=visit + + ws.Activate + ws.Range("A2").Select + + Application.ScreenUpdating = True +End Sub +''' + + app = xw.App(visible=False) + try: + wb = app.books.open(str(xlsx_path)) + # Najdi VBComponent odpovídající listu "MayoScore" podle tab názvu + vb_comp = None + for comp in wb.api.VBProject.VBComponents: + if comp.Type == 100: # xlSheet + try: + if comp.Properties("Name").Value == "MayoScore": + vb_comp = comp + break + except Exception: + pass + if vb_comp is None: + # fallback: první sheet (Sheet1) + vb_comp = wb.api.VBProject.VBComponents("Sheet1") + vb_comp.CodeModule.AddFromString(vba_code) + wb.api.SaveAs(str(xlsm_path), FileFormat=52) # 52 = xlOpenXMLWorkbookMacroEnabled + wb.close() + finally: + app.quit() + + +if __name__ == "__main__": + main() diff --git a/Clario/import_to_mongo.py b/Clario/import_to_mongo.py new file mode 100644 index 0000000..ee86230 --- /dev/null +++ b/Clario/import_to_mongo.py @@ -0,0 +1,285 @@ +""" +import_to_mongo.py +Verze: 1.1 +Datum: 2026-06-01 + +Import Clario CSV do MongoDB (databáze: Clario). + +Kolekce: Clario.MayoDiary / Clario.MayoScore (dle názvu souboru) +Filtr: pouze řádky s Country == "Czech Republic" +Klíč: MayoDiary → Subject ID + Form Number + MayoScore → Participant ID + Visit +Historie: při změně fields se stará verze uloží do pole history[] +Po importu přesune zpracované CSV do downloads/Zpracovano/ + +Použití: + python import_to_mongo.py # importuje všechny CSV z downloads/ + python import_to_mongo.py downloads/konkretni.csv # jeden soubor +""" + +import csv +import re +import shutil +import sys +from datetime import datetime, timezone +from pathlib import Path + +from pymongo import MongoClient, ASCENDING + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "Clario" +DOWNLOADS_DIR = Path(__file__).parent / "downloads" +PROCESSED_DIR = DOWNLOADS_DIR / "Zpracovano" + +COUNTRY_FILTER = "Czech Republic" + +# --------------------------------------------------------------------------- +# Konfigurace kolekcí +# --------------------------------------------------------------------------- + +COLLECTION_CONFIG = { + "MayoDiary": { + "collection": "Clario.MayoDiary", + "subject_col": "Subject ID", + "key_cols": ("Subject ID", "Form Number"), + }, + "MayoScore": { + "collection": "Clario.MayoScore", + "subject_col": "Participant ID", + "key_cols": ("Participant ID", "Visit"), + "outcome_cols": ( + "Site Action", + "Last Mayo Score Submission", + "Week I-12 Clinical Responder", + "Week I-12 Clinical Remission", + "Clinical Flare", + "Loss of Response", + "Partial Mayo Response Post Loss of Response", + "Partial Mayo Response for Clinical Non-Responders", + ), + }, +} + +DATE_FORMATS = [ + "%d-%b-%Y ", + "%d-%b-%Y", + "%d-%b-%Y %H:%M:%S", + "%d %b %Y %H:%M:%S", + "%d %b %Y %H:%M:%S:%f", + "%d %b %Y", + "%d %B %Y", + "%Y%m%d %H:%M:%S.%f", + "%Y-%m-%d %H:%M:%S", + "%m/%d/%Y %I:%M:%S %p", +] + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def clean_colname(name: str) -> str: + """Odstraní BOM a okolní uvozovky/mezery z názvu sloupce.""" + return name.lstrip("").strip().strip('"') + + +def parse_date(value: str) -> str | None: + v = value.strip() + for fmt in DATE_FORMATS: + try: + dt = datetime.strptime(v, fmt.strip()) + return dt.replace(tzinfo=timezone.utc).isoformat() + except ValueError: + continue + return None + + +def extract_snapshot_date(filename: str) -> str: + match = re.match(r"(\d{4}-\d{2}-\d{2})", Path(filename).name) + return match.group(1) if match else datetime.now().strftime("%Y-%m-%d") + + +def detect_collection_type(filename: str) -> str | None: + """Vrátí klíč do COLLECTION_CONFIG nebo None.""" + stem = Path(filename).stem + for key in COLLECTION_CONFIG: + if key in stem: + return key + return None + + +# --------------------------------------------------------------------------- +# CSV → dokument +# --------------------------------------------------------------------------- + +def map_row(row: dict, col_type: str) -> dict: + cfg = COLLECTION_CONFIG[col_type] + doc: dict = {} + fields: dict = {} + + cleaned = {clean_colname(k): v.strip() if v else "" for k, v in row.items()} + + subject_col = cfg["subject_col"] + doc["subject"] = {"id": cleaned.get(subject_col, "")} + doc["site"] = {"name": cleaned.get("Site", "")} + doc["country"] = cleaned.get("Country", "") + doc["study"] = cleaned.get("Protocol", "") + + key_parts = [cleaned.get(c, "") for c in cfg["key_cols"]] + doc["recordKey"] = "_".join(key_parts) + + outcome_cols = set(cfg.get("outcome_cols", ())) + for col in outcome_cols: + value = cleaned.get(col, "") + if value and value != "-": + parsed = parse_date(value) + doc[col] = parsed if parsed else value + else: + doc[col] = None + + skip_top = {"Protocol", "Country", "Site", subject_col} | outcome_cols + for col, value in cleaned.items(): + if col in skip_top: + continue + if not value or value == "-": + continue + parsed = parse_date(value) + fields[col] = parsed if parsed else value + + doc["fields"] = fields + return doc + + +# --------------------------------------------------------------------------- +# Import jednoho souboru +# --------------------------------------------------------------------------- + +def import_file(csv_path: str, db) -> dict: + filename = Path(csv_path).name + col_type = detect_collection_type(filename) + if col_type is None: + print(f" Preskakuji (neznamy typ): {filename}") + return {"skipped": True} + + cfg = COLLECTION_CONFIG[col_type] + col_name = cfg["collection"] + snapshot_date = extract_snapshot_date(filename) + collection = db[col_name] + + inserted = changed = unchanged = filtered_out = 0 + + with open(csv_path, encoding="utf-8-sig", newline="") as f: + reader = csv.DictReader(f, delimiter=",", quotechar='"') + + for row in reader: + cleaned_row = {clean_colname(k): v for k, v in row.items()} + country = cleaned_row.get("Country", "").strip() + if country != COUNTRY_FILTER: + filtered_out += 1 + continue + + doc = map_row(row, col_type) + record_key = doc.get("recordKey") + if not record_key: + continue + + doc["sourceFile"] = filename + + existing = collection.find_one({"recordKey": record_key}) + + if existing is None: + doc["firstSeen"] = snapshot_date + doc["lastSeen"] = snapshot_date + doc["history"] = [] + collection.insert_one(doc) + inserted += 1 + + elif existing.get("fields") != doc["fields"]: + old_entry = { + "date": existing.get("lastSeen", snapshot_date), + "fields": existing["fields"], + } + update_doc = {k: v for k, v in doc.items()} + update_doc["lastSeen"] = snapshot_date + collection.update_one( + {"_id": existing["_id"]}, + { + "$push": {"history": old_entry}, + "$set": update_doc, + }, + ) + changed += 1 + + else: + collection.update_one( + {"_id": existing["_id"]}, + {"$set": {"lastSeen": snapshot_date, "sourceFile": filename}}, + ) + unchanged += 1 + + collection.create_index([("recordKey", ASCENDING)], unique=True) + collection.create_index([("subject.id", ASCENDING)]) + collection.create_index([("site.name", ASCENDING)]) + if col_type == "MayoScore": + collection.create_index([("Site Action", ASCENDING)]) + + stats = { + "collection": col_name, + "snapshot": snapshot_date, + "inserted": inserted, + "changed": changed, + "unchanged": unchanged, + "filtered_out": filtered_out, + } + print(f" {col_name} [{snapshot_date}]: +{inserted} new, ~{changed} changed, ={unchanged} same, -{filtered_out} non-CZ") + return stats + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + paths: list[Path] = [] + + if len(sys.argv) > 1: + for arg in sys.argv[1:]: + p = Path(arg) + if p.is_file(): + paths.append(p) + else: + print(f"Soubor nenalezen: {arg}") + else: + paths = sorted(DOWNLOADS_DIR.glob("*.csv")) + + if not paths: + print("Zadne CSV soubory k importu.") + return + + print(f"Nalezeno {len(paths)} souboru.\n") + + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + db = client[DB_NAME] + + PROCESSED_DIR.mkdir(exist_ok=True) + + total = {"inserted": 0, "changed": 0, "unchanged": 0} + + for csv_path in paths: + print(f"Import: {csv_path.name}") + stats = import_file(str(csv_path), db) + if not stats.get("skipped"): + for k in total: + total[k] += stats.get(k, 0) + + dest = PROCESSED_DIR / csv_path.name + shutil.move(str(csv_path), str(dest)) + print(f" -> presunut do Zpracovano/") + + client.close() + + print(f"\nCelkem: +{total['inserted']} new, ~{total['changed']} changed, ={total['unchanged']} same") + + +if __name__ == "__main__": + main() diff --git a/Covance/CreatedReports/2026-05-05 142546 42847922MDD3003 Covance.xlsx b/Covance/CreatedReports/2026-05-05 142546 42847922MDD3003 Covance.xlsx new file mode 100644 index 0000000..e1f4f0e Binary files /dev/null and b/Covance/CreatedReports/2026-05-05 142546 42847922MDD3003 Covance.xlsx differ diff --git a/Covance/CreatedReports/2026-05-05 142600 42847922MDD3003 Covance.xlsx b/Covance/CreatedReports/2026-05-05 142600 42847922MDD3003 Covance.xlsx new file mode 100644 index 0000000..d1375a5 Binary files /dev/null and b/Covance/CreatedReports/2026-05-05 142600 42847922MDD3003 Covance.xlsx differ diff --git a/Covance/SourceData/Exploratory/MDD3003SampletrackingCZ_bbe4dce7.xlsx b/Covance/SourceData/Exploratory/MDD3003SampletrackingCZ_bbe4dce7.xlsx new file mode 100644 index 0000000..392f568 Binary files /dev/null and b/Covance/SourceData/Exploratory/MDD3003SampletrackingCZ_bbe4dce7.xlsx differ diff --git a/Covance/SourceData/Exploratory/MDD3003Specimeninventoryreport_b4d52855.xlsx b/Covance/SourceData/Exploratory/MDD3003Specimeninventoryreport_b4d52855.xlsx new file mode 100644 index 0000000..d3cdee7 Binary files /dev/null and b/Covance/SourceData/Exploratory/MDD3003Specimeninventoryreport_b4d52855.xlsx differ diff --git a/Covance/SourceData/Protocol 42847922MDD3003 - All Samples.csv b/Covance/SourceData/Protocol 42847922MDD3003 - All Samples.csv new file mode 100644 index 0000000..3e706c4 --- /dev/null +++ b/Covance/SourceData/Protocol 42847922MDD3003 - All Samples.csv @@ -0,0 +1,1108 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Parent Barcode,Children Barcode +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,1,622535097101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,2,622535097102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,3,622535097103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,4,622535097104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,5,622535097105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,6,622535097106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,1,622535097201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,2,622535097202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,3,622535097203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,5,622535097205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,4,622535097204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,6,622535097206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,12-Aug-2025,6225350971,8,622535097108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,24-Sep-2025,6225350972,8,622535097208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,7,622535097107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,7,622535097207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,9,622535097109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,10,622535097110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,1,622535097501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,1,622535097701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,2,622535097702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,2,622535097502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,3,622535097503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,3,622535097703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,5,622535097705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,5,622535097505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,4,622535097504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,4,622535097704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,6,622535097706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,6,622535097506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,12-Nov-2025,6225350975,8,622535097508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,15-Oct-2025,6225350977,8,622535097708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,7,622535097707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,7,622535097507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,9,622535097209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,9,622535097509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,9,622535097709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,10,622535097710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,10,622535097510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,10,622535097210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,2,622535098102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,1,622535098101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,1,622535100401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,2,622535100402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,3,622535100403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,5,622535100405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,4,622535100404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,6,622535100406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,8,622535100408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,7,622535100407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,9,622535100409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,10,622535100410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,2,622535098202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,2,622535098402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,1,622535098201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,1,622535098401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,12-Nov-2025,6225350982,3,622535098203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,09-Sep-2025,6225350981,3,622535098103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,22-Oct-2025,6225350984,3,622535098403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,5,622535098105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,5,622535098205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,5,622535098405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,6,622535098406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,6,622535098206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,6,622535098106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,4,622535098104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,4,622535098204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,4,622535098404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,2,622535098802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,1,622535098801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,22-Oct-2025,6225350988,3,622535098803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,7,622535098207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,7,622535098407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,7,622535098107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,5,622535098805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,7,622535098807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,6,622535098806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,4,622535098804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,9,622535098809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,8,622535098808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,1,622535100201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,3,622535100203,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,5,622535100205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,21-Aug-2025,6225351002,6,622535100206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,4,622535100204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,8,622535100208,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,9,622535100209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,7,622535100207,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,10,622535100210,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,2,622535100202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,1,622535100601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,1,622535104001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,1,622535104101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,1,622535104201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,1,622535104501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,1,622535104601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,1,622535104701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,1,622535107201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,1,622535107401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,1,622535107601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,1,622535107701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,1,622535107801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,1,622535108001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,1,622535108101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,1,622535110601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,2,622535110602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,2,622535108002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,2,622535108102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,2,622535107802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,2,622535107702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,2,622535107602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,2,622535107402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,2,622535107202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,2,622535104702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,2,622535104602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,2,622535104502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,2,622535104402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,2,622535104202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,2,622535104102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,2,622535104002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,2,622535100602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,3,622535100603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,3,622535104003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,3,622535104103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,3,622535104203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,3,622535104403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,3,622535104503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,3,622535104603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,3,622535104703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,3,622535107203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,3,622535107403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,3,622535107603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,3,622535107703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,3,622535107803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,3,622535108103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,3,622535108003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,3,622535110603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,5,622535110605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,5,622535108105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,5,622535108005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,5,622535107805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,5,622535107705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,5,622535107605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,5,622535107405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,5,622535107205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,5,622535104705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,5,622535104605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,5,622535104505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,5,622535104405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,5,622535104205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,5,622535104105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,5,622535104005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,5,622535100605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,4,622535100604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,4,622535104004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,4,622535104204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,4,622535104104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,4,622535104404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,4,622535104504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,4,622535104604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,4,622535104704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,4,622535107204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,4,622535107404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,4,622535107704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,4,622535107604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,4,622535108004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,4,622535108104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,4,622535107804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,4,622535110604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,6,622535108006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,6,622535108106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,6,622535107706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,6,622535107806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,6,622535107406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,6,622535107606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,6,622535107206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,6,622535104706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,6,622535104506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,6,622535104606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,6,622535104406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,6,622535104206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,6,622535104006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,6,622535104106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,6,622535100606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,8,622535100608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,8,622535104008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,28-Aug-2025,6225351042,8,622535104208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,8,622535104108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,8,622535104408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,8,622535104608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,8,622535104508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,8,622535104708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,8,622535107408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,8,622535107208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,8,622535107708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,07-Aug-2025,6225351076,8,622535107608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,8,622535108108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,8,622535107808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,06-Nov-2025,6225351080,8,622535108008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,7,622535108007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,7,622535108107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,7,622535107607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,7,622535107707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,7,622535107807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,7,622535107407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,7,622535104707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,7,622535107207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,7,622535104607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,7,622535104507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,7,622535104207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,7,622535104107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,7,622535104007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,7,622535100607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,9,622535100609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,9,622535104009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,9,622535104109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,9,622535104209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,9,622535104609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,9,622535104509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,9,622535104709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,9,622535107209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,9,622535107409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,9,622535107709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,9,622535107609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,9,622535108109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,9,622535107809,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,9,622535108009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,10,622535108010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,10,622535107810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,10,622535108110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,10,622535107610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,10,622535107710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,10,622535107210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,10,622535107410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,10,622535104710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,10,622535104510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,10,622535104610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,10,622535104210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,10,622535104110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,10,622535104010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,10,622535104410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,10,622535100610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,2,622535104902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,2,622535105002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,2,622535105102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,2,622535105202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,2,622535108202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,2,622535108302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,2,622535108402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,1,622535108401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,1,622535108301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,1,622535108201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,1,622535105101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,1,622535105201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,1,622535105001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,1,622535104901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,1,622535103601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,1,622535103701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,3,622535103603,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,3,622535103703,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,5,622535103605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,5,622535103705,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,6,622535103706,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,6,622535103606,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,4,622535103604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,4,622535103704,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,8,622535103708,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,8,622535103608,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,9,622535103709,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,9,622535103609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,7,622535103707,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,7,622535103607,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,10,622535103610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,10,622535103710,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,2,622535103702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,2,622535103602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,1,622535104401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,7,622535104407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,9,622535104409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,11,622693560611,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,10,622656088810,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,10,622675255510,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,1,622535110901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,1,622535111001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,1,622535111101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,2,622535111102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,2,622535111002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,2,622535110902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,3,622535111003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,3,622535111103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,3,622535110903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,5,622535111105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,5,622535111005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,5,622535110905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,4,622535110904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,4,622535111004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,4,622535111104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,6,622535111106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,6,622535111006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,6,622535110906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,6,622535110606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,08-Aug-2025,6225351106,8,622535110608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351111,8,622535111108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351110,8,622535111008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,05-Sep-2025,6225351109,8,622535110908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,7,622535111107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,7,622535110607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,7,622535110907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,7,622535111007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,9,622535110909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,9,622535110609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,9,622535111109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,9,622535111009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,10,622535111010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,10,622535111110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,10,622535110610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,10,622535110910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,2,622535112002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,2,622655169702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,2,622655169802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,2,622714456102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,2,622714456002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,2,622714456202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,2,622726123002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,1,622726123001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,1,622714456001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,1,622714456201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,1,622714456101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,1,622535112001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,1,622655169701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,1,622655169801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,3,622655169703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,3,622655169803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,24-Oct-2025,6225351120,3,622535112003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,3,622714456103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,3,622714456003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,16-Dec-2025,6227144562,3,622714456203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,10-Dec-2025,6227261230,3,622726123003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,3,622535104903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,3,622535105003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,28-Aug-2025,6225351051,3,622535105103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,3,622535105203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,3,622535108203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,3,622535108303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,3,622535108403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,5,622535108405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,5,622535108305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,5,622535108205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,5,622535105205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,5,622535105105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,5,622535105005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,5,622535104905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,5,622726123005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,5,622714456105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,5,622714456205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,5,622714456005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,5,622655169805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,5,622535112005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,5,622655169705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,6,622655169806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,6,622535112006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,6,622655169706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,6,622714456006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,6,622714456106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,6,622726123006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,6,622714456206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,6,622535104906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,6,622535105006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,6,622535105206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,6,622535105106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,6,622535108206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,6,622535108306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,6,622535108406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,4,622535108304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,4,622535108404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,4,622535108204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,4,622535105204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,4,622535105104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,4,622535105004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,4,622535104904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,4,622714456204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,4,622726123004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,4,622714456004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,4,622714456104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,4,622655169804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,4,622655169704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,4,622535112004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,2,622535105602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,2,622535105702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,1,622535105701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,1,622535105601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,1,622710690501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,1,622710690601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,23-Dec-2025,6227106906,3,622710690603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,03-Dec-2025,6227106905,3,622710690503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,3,622535105603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,3,622535105703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,7,622535105207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,7,622535105107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,7,622535104907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,7,622535105007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,7,622535108207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,7,622535108307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,7,622535108407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,7,622714456007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,7,622714456107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,7,622714456207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,7,622655169707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,7,622655169807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,7,622535112007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,7,622726123007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,5,622710690505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,5,622710690605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,5,622535105605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,5,622535105705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,7,622535105607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,7,622535105707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,7,622710690507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,7,622710690607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,6,622710690606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,6,622710690506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,6,622535105706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,6,622535105606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,4,622535105604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,4,622535105704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,1,622697694301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,1,622699131101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,1,622704330201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,1,622707241901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,1,622680496101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,1,622631362501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,1,622655064601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,1,622656088701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,1,622656151701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,1,622668695201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,1,622675255401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,2,622668695202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,2,622656151702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,2,622655064602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,2,622680496102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,2,622707241902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,2,622704330202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,2,622699131102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,2,622697694302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,7,622697694307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,7,622680496107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,7,622699131107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,7,622704330207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,7,622707241907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,7,622631362507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,7,622655064607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,7,622656151707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,7,622656088707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,7,622668695207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,7,622675255407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,6,622668695206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,6,622675255406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,6,622656088706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,6,622656151706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,6,622655064606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,6,622631362506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,6,622707241906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,6,622704330206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,6,622697694306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,6,622699131106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,6,622680496106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,1,622680496201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,1,622668695301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,2,622668695302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,2,622680496202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,7,622680496207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,7,622668695307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,5,622668695305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,5,622680496205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,3,622680496203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,3,622668695303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,4,622668695204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,4,622656151704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,4,622655064604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,4,622680496104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,4,622697694304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,4,622699131104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,4,622704330204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,4,622707241904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,9,622710690509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,9,622710690609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,9,622535105609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,9,622535105709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,3,622707241903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,19-Nov-2025,6227043302,3,622704330203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,3,622699131103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,31-Jan-2026,6226976943,3,622697694303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,3,622680496103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,3,622675255403,"Plasma, EDTA",Received,Frozen,Default Return Ambient,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,3,622655064603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,3,622631362503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,17-Feb-2026,6226561517,3,622656151703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,3,622656088703,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,3,622668695203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,5,622668695205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,5,622675255405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,5,622656088705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,5,622656151705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,5,622631362505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,5,622655064605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,5,622680496105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,5,622697694305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,5,622699131105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,5,622704330205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,5,622707241905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,8,622535105708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,8,622535105608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,9,622680496209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,9,622668695309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,1,622668695401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,3,622668695403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,5,622668695405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,6,622668695406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,7,622668695407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,1,622656089101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,2,622656089102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,5,622656089105,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,7,622656089107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,1,622535112601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,1,622678085301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,1,622678085501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,1,622678085601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,1,622678085701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,1,622717890901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,1,622717890801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,1,622717891101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,1,622717891201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,1,622535109301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,1,622535109401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,1,622535109501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,9,622656089109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,3,622656089103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,6,622678085306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,6,622535109506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,6,622535109406,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,7,622535109407,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,7,622535109507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,7,622535109307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,7,622678085307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,7,622678085507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,7,622678085707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,7,622678085607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,7,622535112607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,7,622717891107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,7,622717890907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,7,622717890807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,7,622717891207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,3,622717890903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,3,622717890803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,3,622717891103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,3,622717891203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,3,622535112603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,3,622678085603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,3,622678085503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,3,622678085703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,3,622678085303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,3,622535109303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,3,622535109503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,3,622535109403,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,8,622535109408,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,8,622535109508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,8,622678085308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,9,622678085309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,9,622678085609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,9,622678085509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,9,622678085709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,9,622535112609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,9,622717890909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,9,622717891109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,9,622717890809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,9,622717891209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,9,622535109409,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,9,622535109509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,9,622535109309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,2,622535106602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,3,622535106603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,4,622535106604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,4,622535109404,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,4,622535109504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,4,622717891204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,4,622678085304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,5,622678085305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,5,622678085505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,5,622678085705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,5,622678085605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,10-Dec-2025,6225351126,5,622535112605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,5,622656088805,"Plasma, EDTA",Cancelled,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,5,622675255505,"Plasma, EDTA",Cancelled,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,04-Feb-2026,6227178909,5,622717890905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178912,5,622717891205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178908,5,622717890805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,11-Mar-2026,6227178911,5,622717891105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,5,622535109505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,5,622535109405,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,5,622535109305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,2,622535109302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,2,622535109402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,2,622535109502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,2,622717891102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,2,622717890902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,2,622717890802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,2,622717891202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,2,622535112602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,2,622678085702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,2,622678085602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,2,622678085502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,2,622678085302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,5,622535106605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,1,622535106601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,6,622535106606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,9,622535106609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,8,622535106608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,7,622535106607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,1,622535107001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,1,622693560601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,3,622693560603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,3,622535107003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,5,622535107005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,6,622535107006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,16-Dec-2025,6226935606,6,622693560606,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,09-Sep-2025,6225351070,4,622535107004,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,8,622535107008,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,8,622693560608,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,8,622678574008,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,9,622535107009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,7,622535107007,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,10,622535107010,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,10,622678574010,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,19-Feb-2026,6226785739,10,622678573910,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,10,622693560610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,2,622693560602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,2,622535107002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,1,622726183601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,2,622726183602,"Slides, Hematology",Received,Ambient,No Orders Attached,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,2,622710690502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,2,622710690602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,4,622710690604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,4,622710690504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,,6227261836,4,622726183604,"Whole Blood, EDTA, Dry",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,5,622726183605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,3,622726183603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,7,622726183607,"Serum, SST",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,,6227261836,8,622726183608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,4,622535109304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,6,622535109306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,8,622535109308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,11,622777550511,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,8,622811446008,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,11,622754218211,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,2,622784472502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,2,622754125102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,2,622754125202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,2,622754733202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,2,622754733302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,2,622777550802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,2,622777550702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,1,622777550801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,1,622777550701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,1,622754733201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,1,622754733301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,1,622754125201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,1,622754125101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,1,622784472501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,3,622784472503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,25-Feb-2026,6227541252,3,622754125203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,3,622754125103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,04-Mar-2026,6227547332,3,622754733203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,3,622754733303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775507,3,622777550703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775508,3,622777550803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,5,622777550705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,5,622777550805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,5,622754733305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,5,622754733205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,5,622754125205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,5,622754125105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,5,622784472505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,6,622784472506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,6,622754125206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,6,622754125106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,6,622754733206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,6,622754733306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,6,622777550806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,6,622777550706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,4,622777550704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,4,622777550804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,4,622754733204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,4,622754733304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,4,622754125204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,4,622754125104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,4,622784472504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,7,622784472507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,7,622754125107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,7,622754125207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,7,622754733307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,7,622754733207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,7,622777550707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,7,622777550807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,1,622754125901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,1,622754126001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,1,622811446001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,2,622754126002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,2,622754125902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,7,622754126007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,7,622754125907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,7,622811446007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,6,622811446006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,6,622754125906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,6,622754126006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,4,622754126004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,4,622754125904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,18-Feb-2026,6227541259,3,622754125903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,21-Jan-2026,6227541260,3,622754126003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,3,622811446003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,5,622811446005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,5,622754125905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,5,622754126005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,1,622754126401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,3,622754126403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,5,622754126405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,6,622754126406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,7,622754126407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,1,622754216101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,1,622754216001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,1,622754124901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,1,622779740601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,1,622779740701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,1,622777550501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,1,622776726701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,1,622754733101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,1,622754733001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,1,622754732901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,1,622779740801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,2,622779740702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,2,622779740802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,2,622754733002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,2,622754733102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,2,622754732902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,2,622776726702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,2,622777550502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,2,622779740602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,2,622754124902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,2,622754216002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,2,622754216102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,3,622754216103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,3,622754216003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,3,622754124903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,3,622779740703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,3,622779740603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,3,622777550503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,3,622754732903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,3,622754733103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,3,622754733003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,3,622776726703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,3,622779740803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,4,622776726704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,4,622754733004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,4,622754733104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,4,622754732904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,4,622777550504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,4,622779740704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,4,622779740604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,4,622779740804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,4,622754124904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,4,622754216004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,4,622754216104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,5,622754216005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,5,622754216105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,5,622754124905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,5,622779740805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,5,622779740705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,5,622779740605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,5,622777550505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,5,622776726705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,5,622754732905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,5,622754733105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,5,622754733005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,6,622754733006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,6,622754733106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,6,622754732906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,6,622776726706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,6,622777550506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,6,622779740606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,6,622779740706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,6,622779740806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,6,622754124906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,6,622754216106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,6,622754216006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,7,622754216007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,7,622754216107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,7,622754124907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,7,622779740707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,7,622779740607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,7,622777550507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,7,622776726707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,7,622754732907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,7,622754733107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,7,622754733007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,7,622779740807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,8,622779740708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,8,622779740808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,04-Feb-2026,6227547330,8,622754733008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,11-Mar-2026,6227547331,8,622754733108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,04-Mar-2026,6227547329,8,622754732908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,04-Feb-2026,6227767267,8,622776726708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,8,622779740608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,31-Jan-2026,6227775505,8,622777550508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,30-Jan-2026,6227541249,8,622754124908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,8,622754216108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,8,622754216008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,10,622754216010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,10,622754216110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,10,622754124910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,10,622777550510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,10,622779740610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,10,622779740710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,10,622776726710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,10,622754732910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,10,622754733010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,10,622754733110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,10,622779740810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,9,622779740809,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,9,622754733109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,9,622754733009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,9,622754732909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,9,622776726709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,9,622777550509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,9,622779740709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,9,622779740609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,9,622754124909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,9,622754216109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,9,622754216009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,1,622754733601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,2,622754733602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,4,622754733604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,6,622754733606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,7,622754733607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,15-Apr-2026,6227547336,8,622754733608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,3,622754733603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,5,622754733605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,9,622754733609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,1,622754733701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,1,622754125801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,1,622754125701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,2,622754125702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,4,622754125704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,5,622754125705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,5,622754125805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,5,622754733705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,15-Apr-2026,6227547337,3,622754733703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,3,622754125803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,21-Jan-2026,6227541257,3,622754125703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,7,622754125707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,7,622754125807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,7,622754733707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,8,622754125708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,8,622710690508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,8,622710690608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,10,622754733610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,6,622754733706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,6,622754125806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,6,622754125706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,,6227261836,6,622726183606,"Red Cells, Clot",Not Received,,,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,P2OLBL,08-Jan-2026,08-Jan-2026,6227261836,9,622726183609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,9,622754125809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,9,622754125709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,9,622754733709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,4,622668695304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,6,622668695306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,8,622668695308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,4,622656089104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,6,622656089106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,8,622656089108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,2,622656088802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,2,622675255502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,2,622749837902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,2,622749838002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,2,622752024202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,2,622776846002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,2,622776845902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,2,622752024302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,2,622752024502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,2,622754217002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,2,622754217102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,2,622754217202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,2,622754217302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,2,622823429702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,2,622823203702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,2,622823430002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,1,622823430001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,1,622823429701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,1,622823203701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,1,622754217301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,1,622754217201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,1,622754217101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,1,622754217001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,1,622752024501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,1,622752024301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,1,622776846001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,1,622776845901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,1,622749837901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,1,622752024201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,1,622749838001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,1,622675255501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,1,622656088801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,3,622656088803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,3,622675255503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,3,622749838003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,3,622749837903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,3,622752024203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,3,622776845903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,3,622776846003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,3,622754217303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,3,622752024303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,3,622752024503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,3,622754217003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,3,622754217103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,3,622754217203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,3,622823203703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,3,622823429703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,3,622823430003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,4,622823429704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,,6228234300,4,622823430004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,4,622823203704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,4,622754217104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,4,622754217204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,4,622754217004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,4,622752024304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,4,622752024504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,4,622754217304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,4,622776845904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,4,622776846004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,4,622752024204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,4,622749837904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,4,622749838004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,4,622717890904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,4,622717890804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,4,622717891104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,4,622675255504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,4,622656088804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,4,622535112604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,4,622678085504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,4,622678085604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,4,622678085704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,6,622678085706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,6,622678085606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,6,622678085506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,6,622675255506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,6,622535112606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,6,622656088806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,6,622717891106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,6,622717890906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,6,622717890806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,6,622749838006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,6,622717891206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,6,622749837906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,6,622776845906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,6,622776846006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,6,622752024506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,6,622752024206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,6,622752024306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,6,622754217106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,6,622754217006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,6,622754217306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,6,622754217206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,6,622823203706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,,6228234300,6,622823430006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,6,622823429706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,7,622823430007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,7,622823203707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,7,622823429707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,7,622754217207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,7,622754217307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,7,622754217007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,7,622754217107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,7,622752024307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,7,622752024207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,7,622752024507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,7,622776845907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,7,622776846007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,7,622749838007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,7,622749837907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,7,622656088807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,7,622675255507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,8,622675255508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,8,622656088808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,8,622535112608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,8,622678085508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,8,622678085608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,8,622678085708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,8,622749838008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,8,622717891208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,8,622717890808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,8,622717890908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,8,622717891108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,8,622749837908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,8,622776846008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,8,622776845908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,8,622752024208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,8,622752024508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,8,622752024308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,8,622754217108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,8,622754217008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,8,622754217308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,8,622754217208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,8,622823429708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,8,622823203708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,,6228234300,8,622823430008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,5,622823430005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,5,622823429705,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,02-Apr-2026,6228232037,5,622823203705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,5,622754217305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,5,622754217205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,5,622754217005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,5,622754217105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,5,622752024305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,5,622752024505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,18-Mar-2026,6227768459,5,622776845905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,08-Apr-2026,6227768460,5,622776846005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,5,622752024205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,5,622749837905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,5,622749838005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,9,622749838009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,9,622749837909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,9,622656088809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,9,622675255509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,9,622776845909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,9,622776846009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,9,622752024209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,9,622752024509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,9,622752024309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,9,622754217009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,9,622754217109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,9,622754217209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,9,622754217309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,9,622823203709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,9,622823429709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,,EOT,23-Apr-2026,23-Apr-2026,6228234300,9,622823430009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,1,622754218201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,1,622678574001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,1,622678573901,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,2,622678573902,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,2,622678574002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,2,622754218202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,3,622754218203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,3,622678574003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,3,622678573903,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,4,622678573904,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,4,622678574004,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,4,622693560604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,4,622754218204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,6,622754218206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,6,622678574006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,6,622678573906,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,8,622678573908,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,8,622754218208,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,7,622754218207,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,7,622678574007,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,7,622678573907,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,7,622693560607,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,5,622693560605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,5,622678574005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,5,622678573905,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,5,622754218205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,10,622754218210,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,9,622754218209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,9,622678573909,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,9,622678574009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,9,622693560609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,4,622754733704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,4,622754125804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,10,622754733710,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,10,622754125810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,8,622754125808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,8,622754733708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,2,622754733702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,2,622754125802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,2,622811446002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,2,622675255402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,2,622656088702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,2,622631362502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,4,622631362504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,4,622656088704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,4,622675255404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,4,622811446004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,8,622631362508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,8,622675255408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,8,622656088708,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,4,622668695404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,4,622754126404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,2,622754126402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,2,622668695402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,9,622668695409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,9,622754126409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,8,622754126408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,8,622668695408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,8,622680496208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,6,622680496206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,10,622680496210,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,4,622680496204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,10,622668695410,"Serum, SST",Cancelled,Ambient,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,10,622754126410,"Serum, SST",Cancelled,Ambient,,TSH,,,,, diff --git a/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-activity-reports-documents-equery.csv b/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-activity-reports-documents-equery.csv new file mode 100644 index 0000000..4e93cac --- /dev/null +++ b/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-activity-reports-documents-equery.csv @@ -0,0 +1,37 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +CZ10012 - Dr.Ales Urban,CZECH REPUBLIC,End of Phase/Treatment,"Mar 25, 2026 5:00 PM",6226560888,CZ100120005,2064594,"Mar 27, 2026 9:33 AM","Apr 1, 2026 4:32 PM",VST,Closed,5d,,, +CZ10012 - Dr.Ales Urban,CZECH REPUBLIC,Part 2 DB Every 12 Weeks,"Mar 6, 2026 2:00 PM",6226560891,CZ100120004,2035331,"Mar 10, 2026 11:18 AM","Mar 10, 2026 12:50 PM",ADT201,Closed,1h 31m,Marcela Sedlackova,marcelasedlackova@seznam.cz,Investigator +CZ10012 - Dr.Ales Urban,CZECH REPUBLIC,Part 2 OL Induction Day 29,"Jan 2, 2026 12:00 PM",6226976943,CZ100120004,1936950,"Jan 6, 2026 12:29 PM","Jan 9, 2026 8:41 AM",DOB,Closed,2d,Marcela Sedlackova,marcelasedlackova@seznam.cz,Investigator +CZ10012 - Dr.Ales Urban,CZECH REPUBLIC,End of Phase/Treatment,"Mar 25, 2026 3:00 PM",6226752555,CZ100120006,2064606,"Mar 27, 2026 9:48 AM","Apr 1, 2026 4:32 PM",VST,Closed,5d,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Retest,"Dec 11, 2025 9:05 AM",6226935606,CZ100110003,1930555,"Dec 31, 2025 12:41 PM","Jan 3, 2026 5:26 PM","VST, AMT4164",Closed,3d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Retest,"Dec 11, 2025 9:05 AM",6226935606,CZ100110003,1908988,"Dec 16, 2025 2:17 PM","Dec 19, 2025 3:55 PM","VST, AMT4164",Closed,3d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Baseline,"Jan 6, 2026 10:11 AM",6227261836,CZ100110006,1943384,"Jan 9, 2026 2:23 PM",,VST,Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Baseline,"Jan 6, 2026 10:11 AM",6227261836,CZ100110006,1953531,"Jan 16, 2026 7:52 AM",,VST,Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Baseline,"Jan 6, 2026 10:11 AM",6227261836,CZ100110006,1965291,"Jan 23, 2026 11:05 AM","Jan 26, 2026 6:18 PM",VST,Closed,3d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 1 Screening,"Jan 21, 2026 10:11 AM",6227542160,CZ100110009,1965641,"Jan 23, 2026 12:41 PM","Jan 26, 2026 6:18 PM",ADT201,Closed,3d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Retest,"Apr 10, 2026 8:16 AM",6227542182,CZ100110010,2105984,"Apr 22, 2026 4:51 PM",,"AMT4164, ADT201",Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Retest,"Apr 10, 2026 8:16 AM",6227542182,CZ100110010,2117124,"Apr 29, 2026 5:13 PM",,"AMT4164, ADT201",Open,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Retest,"Apr 10, 2026 8:16 AM",6227542182,CZ100110010,2094889,"Apr 15, 2026 7:25 PM",,"AMT4164, ADT201",Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Day 29,"Feb 3, 2026 10:23 AM",6226561517,CZ100110006,2040081,"Mar 12, 2026 12:52 PM","Mar 20, 2026 9:35 AM",VST,Closed,7d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Day 29,"Feb 3, 2026 10:23 AM",6226561517,CZ100110006,2015993,"Feb 25, 2026 2:26 PM","Mar 4, 2026 4:37 PM",VST,Closed,7d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Day 29,"Feb 3, 2026 10:23 AM",6226561517,CZ100110006,2005997,"Feb 18, 2026 3:01 PM",,VST,Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,Part 2 OL Induction Day 29,"Feb 3, 2026 10:23 AM",6226561517,CZ100110006,1984511,"Feb 5, 2026 10:36 AM","Feb 10, 2026 5:12 PM",VST,Closed,5d,Marta Lendlova,studie@medipa.org,Investigator +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,End of Phase/Treatment,,6228234300,CZ100110010,2112166,"Apr 27, 2026 1:26 PM",,SCD,Closed,,,, +CZ10011 - Dr. Marta Lendlova,CZECH REPUBLIC,End of Phase/Treatment,,6228234300,CZ100110010,2124850,"May 5, 2026 1:37 PM",,SCD,Open,,,, +CZ10008 - Dr.Zdenek Solle,CZECH REPUBLIC,Part 1 Screening,"Aug 5, 2025 11:58 AM",6225351045,CZ100080002,1712216,"Aug 7, 2025 12:05 PM","Aug 7, 2025 12:45 PM",SCT,Closed,40m,Roman Gregar,r.gregar@clintrial.cz,Investigator +CZ10008 - Dr.Zdenek Solle,CZECH REPUBLIC,Part 2 OL Induction Baseline,"Sep 10, 2025 11:35 AM",6225351056,CZ100080001,1769239,"Sep 15, 2025 5:00 PM","Sep 16, 2025 8:14 AM",SCT,Closed,15h 14m,Roman Gregar,r.gregar@clintrial.cz,Investigator +CZ10008 - Dr.Zdenek Solle,CZECH REPUBLIC,Early Withdrawal,"Oct 14, 2025 12:30 PM",6225351066,CZ100080004,1817448,"Oct 16, 2025 12:29 PM","Oct 16, 2025 1:37 PM",ADT201,Closed,1h 7m,Barbora Sollova,b.sollova@clintrial.cz,Investigator +CZ10008 - Dr.Zdenek Solle,CZECH REPUBLIC,Part 2 DB Baseline,"Mar 10, 2026 11:10 AM",6226804962,CZ100080006,2039863,"Mar 12, 2026 12:07 PM","Mar 16, 2026 8:11 AM",VST,Closed,3d,Barbora Sollova,b.sollova@clintrial.cz,Investigator +CZ10005 - Dr.Lubos Janu,CZECH REPUBLIC,Retest,"Sep 16, 2025 10:00 AM",6225351036,CZ100050001,1776942,"Sep 19, 2025 11:34 AM","Sep 23, 2025 2:21 PM",VST,Closed,4d,,, +CZ10005 - Dr.Lubos Janu,CZECH REPUBLIC,Retest,"Nov 11, 2025 10:04 AM",6225351037,CZ100050002,1859363,"Nov 13, 2025 12:27 PM","Nov 18, 2025 10:16 AM",ADT201,Closed,4d,,, +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,End of Phase/Treatment,"Jan 9, 2026 10:20 AM",6227178908,CZ100040002,1947467,"Jan 13, 2026 10:55 AM","Jan 16, 2026 10:51 AM","PCFCOM, ADT201",Closed,2d,Gabriela Novotna,gnovotna@email.cz,Investigator +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,End of Phase/Treatment,"Mar 6, 2026 9:50 AM",6227178911,CZ100040002,2034798,"Mar 10, 2026 12:00 AM","Mar 12, 2026 5:11 PM",ADT201,Closed,2d,Gabriela Novotna,gnovotna@email.cz,Investigator +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,Part 1 Screening,"Feb 27, 2026 8:00 AM",6227547329,CZ100040007,2024391,"Mar 3, 2026 12:47 PM","Mar 4, 2026 6:56 PM",PID,Closed,1d,Gabriela Novotna,gnovotna@email.cz,Investigator +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,Part 1 DB Baseline,"Feb 27, 2026 11:35 AM",6227547332,CZ100040006,2024264,"Mar 3, 2026 12:10 PM","Mar 4, 2026 6:57 PM",PID,Closed,1d,Gabriela Novotna,gnovotna@email.cz,Investigator +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,Part 2 OL Induction Baseline,"Apr 7, 2026 9:45 AM",6227541258,CZ100040005,2083848,"Apr 8, 2026 8:50 PM","Apr 13, 2026 5:16 PM",ADT201,Closed,4d,Erik Herman,erik.herman@seznam.cz,Investigator +CZ10004 - Dr. Erik Herman,CZECH REPUBLIC,Part 2 DB Week 13,"Apr 7, 2026 8:35 AM",6227541264,CZ100040001,2090583,"Apr 13, 2026 6:24 PM","Apr 28, 2026 2:16 PM","VST, ADT201",Closed,14d,Gabriela Novotna,gnovotna@email.cz,Investigator +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"CZ10005 - Dr.Lubos Janu, CZ10008 - Dr.Zdenek Solle, CZ10011 - Dr. Marta Lendlova, CZ10004 - Dr. Erik Herman, CZ10012 - Dr.Ales Urban",,,,,,,,,,,,, +Unresponded Only?,FALSE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-kit-inventory-on-hand-expiration.csv b/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..8ea9be7 --- /dev/null +++ b/Covance/SourceData/Protocol 42847922MDD3003 sponsor-study-35472-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,367 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350973,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350970,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350974,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350976,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350978,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350979,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541248,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541247,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149461,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149462,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149463,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350980,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350983,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261232,"Nov 18, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261231,"Nov 18, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541250,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541253,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350985,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350986,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350987,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547334,"Dec 31, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547335,"Dec 31, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6225350989,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541256,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541255,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541254,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547339,"Dec 31, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547338,"Dec 31, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226573502,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226889397,"Oct 7, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227261233,"Nov 18, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541263,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541262,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541261,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226573503,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226889398,"Oct 7, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227043303,"Oct 23, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227261234,"Nov 18, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149464,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149465,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226649754,"Aug 29, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226889399,"Oct 7, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541265,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541267,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541268,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541266,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573504,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573505,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573507,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573506,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573508,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541269,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541270,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541272,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541271,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350990,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350991,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350992,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350993,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350994,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227178910,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768458,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768461,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350996,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350995,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350997,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350998,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350999,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768462,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768463,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768464,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768465,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6225351000,"Feb 24, 2025","Sep 1, 2025",-246 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227547340,"Dec 31, 2025","Sep 12, 2026",129 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227768466,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6225351001,"Feb 24, 2025","Jul 31, 2025",-278 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227547341,"Dec 31, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227768467,"Jan 27, 2026","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6225351003,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649755,"Aug 29, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649756,"Aug 29, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178914,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178913,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178915,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178916,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178917,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178919,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178918,"Nov 14, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351005,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351007,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351009,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351010,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351011,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351012,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351008,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6225351013,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6227268578,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6227268580,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6227268579,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,1,Part 1 Screening,6227537421,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6225351015,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6225351016,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6225351017,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6225351018,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6225351014,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227268581,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227268582,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227537422,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227537423,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227537424,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,2,Part 1 DB Baseline,6227537425,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6225351019,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6225351020,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6225351021,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6227268583,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6227537429,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6227537427,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6227537428,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,3,Part 2 Screening,6227537426,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6225351023,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6225351022,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6227268584,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6227537430,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6227537432,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,4,Part 2 OL Induction Baseline,6227537431,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,5,Part 2 OL Induction Day 29,6226794807,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,5,Part 2 OL Induction Day 29,6227268585,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,5,Part 2 OL Induction Day 29,6227537434,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,5,Part 2 OL Induction Day 29,6227537433,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,6,Part 2 DB Baseline,6226794808,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,6,Part 2 DB Baseline,6227268586,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,6,Part 2 DB Baseline,6227537435,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,6,Part 2 DB Baseline,6227537436,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,6,Part 2 DB Baseline,6227537437,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,7,Part 2 DB Week 13,6226794809,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,7,Part 2 DB Week 13,6227268587,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6226794811,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6226794814,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6226794813,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6226794810,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6226794812,"Sep 22, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-1,Part 2 DB Every 12 Weeks,6227268588,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6225351024,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6225351025,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6225351026,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6225351027,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6225351028,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6227268589,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6227537438,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-2,End of Phase/Treatment,6227537439,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6225351030,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6225351031,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6225351032,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6225351033,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6225351029,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-3,Early Withdrawal,6227268590,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-4,Liver Monitoring,6225351034,"Feb 24, 2025","Sep 1, 2025",-246 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-4,Liver Monitoring,6227268591,"Nov 25, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-4,Liver Monitoring,6227537440,"Dec 29, 2025","Sep 12, 2026",129 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-5,Suspected Liver Event FU,6225351035,"Feb 24, 2025","Jul 31, 2025",-278 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,T-5,Suspected Liver Event FU,6227268592,"Nov 25, 2025","Jun 30, 2026",55 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6226842761,"Sep 29, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6226842762,"Sep 29, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6227268594,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6227268593,"Nov 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6227537441,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10005 - Dr.Lubos Janu,U,Retest,6227537442,"Dec 29, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351038,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351039,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351043,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520226,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520225,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520227,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6225351048,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551696,"Aug 22, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551699,"Aug 22, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551700,"Aug 22, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655163,"Sep 5, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655166,"Sep 5, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655165,"Sep 5, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655162,"Sep 5, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655164,"Sep 5, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351053,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351054,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351055,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520230,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520228,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520229,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780849,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780851,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780848,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780852,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780850,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520231,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520233,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520232,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226550654,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226561520,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072416,"Oct 20, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072415,"Oct 20, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072418,"Oct 20, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072417,"Oct 20, 2025","Jul 31, 2026",86 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226313626,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226550655,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226561521,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520234,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520235,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520236,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226313627,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226550656,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226561522,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226804963,"Sep 25, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313628,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313629,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313630,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313631,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313632,"Jul 14, 2025","Apr 17, 2026",-18 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520237,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520239,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520240,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520241,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520238,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351058,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351059,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351061,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351062,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351060,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6226780854,"Sep 24, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520244,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520246,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351065,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351067,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351064,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351063,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520248,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520250,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520247,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520249,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520251,"Dec 26, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-4,Liver Monitoring,6225351068,"Feb 24, 2025","Sep 1, 2025",-246 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-5,Suspected Liver Event FU,6225351069,"Feb 24, 2025","Jul 31, 2025",-278 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6225351071,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023802,"Feb 25, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023803,"Feb 25, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351073,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351075,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351079,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542163,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542162,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149810,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149812,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149811,"Mar 13, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351085,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351086,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542165,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542164,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844727,"Feb 1, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844726,"Feb 1, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351087,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351088,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351089,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542167,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542168,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542169,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542166,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351091,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351090,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6226935605,"Oct 14, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6227261835,"Nov 20, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6228013045,"Feb 26, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226550647,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226561518,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226991312,"Oct 26, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228013046,"Feb 26, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228114461,"Mar 11, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228398393,"Apr 15, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226550648,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226561519,"Aug 21, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226991313,"Oct 26, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261837,"Nov 20, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261838,"Nov 20, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6228114462,"Mar 11, 2026","Oct 11, 2026",158 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550649,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550650,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550652,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550651,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550653,"Aug 18, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351092,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351096,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6227498378,"Dec 22, 2025","Aug 31, 2026",117 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232036,"Mar 25, 2026","Jan 3, 2027",242 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232038,"Mar 25, 2026","Jan 3, 2027",242 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234299,"Mar 30, 2026","Jan 3, 2027",242 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234298,"Mar 30, 2026","Jan 3, 2027",242 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351097,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351099,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351101,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351100,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351098,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542174,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542176,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542175,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542177,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6225351102,"Feb 24, 2025","Sep 1, 2025",-246 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542179,"Dec 25, 2025","Sep 12, 2026",129 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542178,"Dec 25, 2025","Sep 12, 2026",129 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6225351103,"Feb 24, 2025","Jul 31, 2025",-278 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542180,"Dec 25, 2025","Jun 30, 2026",55 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542181,"Dec 25, 2025","Jun 30, 2026",55 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351104,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351105,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6227542183,"Dec 25, 2025","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417882,"Apr 15, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417883,"Apr 15, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351107,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351108,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351112,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351113,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351114,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351115,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227767268,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775503,"Jan 23, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775504,"Jan 23, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351117,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351116,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351118,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351119,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767269,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767270,"Jan 27, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227775506,"Jan 23, 2026","Oct 7, 2026",154 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351123,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351122,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351121,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351124,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351125,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6226976944,"Oct 26, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6228521304,"Apr 30, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226560889,"Aug 20, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226752556,"Sep 17, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226976945,"Oct 26, 2025","May 31, 2026",25 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560890,"Aug 20, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560892,"Aug 20, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560894,"Aug 20, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560893,"Aug 20, 2025","Jul 1, 2026",56 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389162,"Apr 15, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389161,"Apr 15, 2026","Feb 28, 2027",298 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351129,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351128,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351130,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351127,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351131,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351132,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351133,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351134,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351135,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-4,Liver Monitoring,6225351136,"Feb 24, 2025","Sep 1, 2025",-246 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-5,Suspected Liver Event FU,6225351137,"Feb 24, 2025","Jul 31, 2025",-278 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351139,"Feb 24, 2025","Dec 1, 2025",-155 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351138,"Feb 24, 2025","Dec 1, 2025",-155 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10005 Dr.Lubos Janu, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance/_create_tables.py b/Covance/_create_tables.py new file mode 100644 index 0000000..0914209 --- /dev/null +++ b/Covance/_create_tables.py @@ -0,0 +1,52 @@ +""" +Vytvoří tabulku covance_samples v databázi studie. +Spusť jednorázově pro inicializaci. +""" + +import mysql.connector +import db_config + +DDL = """ +CREATE TABLE IF NOT EXISTS covance_samples ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + investigator_no VARCHAR(10), + investigator_name VARCHAR(100), + patient_no VARCHAR(20), + collection_date DATE, + protocol_visit_code VARCHAR(20), + kit_receipt_date DATE, + container_receipt_date DATE, + accession VARCHAR(20), + container_no TINYINT UNSIGNED, + container_barcode VARCHAR(30), + specimen_type VARCHAR(100), + sample_status VARCHAR(30), + expected_receipt_condition VARCHAR(50), + actual_receipt_condition VARCHAR(100), + label_line1 VARCHAR(100), + label_line2 VARCHAR(100), + sm_sample_status VARCHAR(50), + smart_class_description VARCHAR(100), + parent_barcode VARCHAR(30), + children_barcode VARCHAR(30), + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_patient (patient_no), + INDEX idx_accession (accession), + INDEX idx_barcode (container_barcode) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +""" + +conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, +) +cursor = conn.cursor() +cursor.execute(DDL) +conn.commit() +cursor.close() +conn.close() +print("Tabulka covance_samples OK.") diff --git a/Covance/_create_tables_equeries.py b/Covance/_create_tables_equeries.py new file mode 100644 index 0000000..64630c9 --- /dev/null +++ b/Covance/_create_tables_equeries.py @@ -0,0 +1,49 @@ +""" +Vytvoří tabulku covance_equeries v databázi studie. +Spusť jednorázově pro inicializaci. +""" + +import mysql.connector +import db_config + +DDL = """ +CREATE TABLE IF NOT EXISTS covance_equeries ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + site_code VARCHAR(10), + investigator_name VARCHAR(100), + country VARCHAR(30), + visit VARCHAR(100), + visit_collection_date DATETIME, + accession VARCHAR(20), + subject VARCHAR(20), + equery_id INT, + create_date DATETIME, + response_datetime DATETIME, + issue_type VARCHAR(100), + status VARCHAR(20), + time_before_response VARCHAR(20), + user_name VARCHAR(100), + email VARCHAR(100), + study_role VARCHAR(50), + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_site (site_code), + INDEX idx_subject (subject), + INDEX idx_equery (equery_id), + INDEX idx_status (status) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +""" + +conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, +) +cursor = conn.cursor() +cursor.execute(DDL) +conn.commit() +cursor.close() +conn.close() +print("Tabulka covance_equeries OK.") diff --git a/Covance/_create_tables_kit_inventory.py b/Covance/_create_tables_kit_inventory.py new file mode 100644 index 0000000..25e8fe6 --- /dev/null +++ b/Covance/_create_tables_kit_inventory.py @@ -0,0 +1,43 @@ +""" +Vytvoří tabulku covance_kit_inventory v databázi studie. +Spusť jednorázově pro inicializaci. +""" + +import mysql.connector +import db_config + +DDL = """ +CREATE TABLE IF NOT EXISTS covance_kit_inventory ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + project_no VARCHAR(10), + region VARCHAR(10), + country VARCHAR(10), + site_code VARCHAR(10), + investigator_name VARCHAR(100), + kit_type VARCHAR(10), + description VARCHAR(100), + accession VARCHAR(20), + shipped_date DATE, + expiration_date DATE, + days_to_expiration SMALLINT, + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_site (site_code), + INDEX idx_accession (accession), + INDEX idx_expiration (expiration_date) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +""" + +conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, +) +cursor = conn.cursor() +cursor.execute(DDL) +conn.commit() +cursor.close() +conn.close() +print("Tabulka covance_kit_inventory OK.") diff --git a/Covance/create_report.py b/Covance/create_report.py new file mode 100644 index 0000000..5aca60d --- /dev/null +++ b/Covance/create_report.py @@ -0,0 +1,604 @@ +""" +Covance samples report pro studii 42847922MDD3003. +Čte z MySQL (nejnovější import), generuje Excel s 7 listy: + 1. Přehled — agregát per pacient+visit (Received / Not Received / Cancelled) + 2. Chybějící — detail Not Received vzorků + 3. Kity — kit inventory: centra × typy kitů s expirací + 4. eQueries — přehled eQuery dotazů (Open červeně) + 5. ZDROJ Vzorky — surová data samples + 6. ZDROJ Kity — surová data kit inventory + 7. ZDROJ eQuery — surová data eQueries +""" + +import os +import datetime + +import mysql.connector +import pandas as pd +from openpyxl import Workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +import db_config + +STUDY = "42847922MDD3003" +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +CREATED_DIR = os.path.join(BASE_DIR, "CreatedReports") + +# ── styles ─────────────────────────────────────────────────────────────────── +HEADER_FILL = PatternFill("solid", fgColor="1F4E79") +HEADER_FONT = Font(name="Arial", bold=True, color="FFFFFF", size=10) +NORMAL_FONT = Font(name="Arial", size=10) +BOLD_FONT = Font(name="Arial", bold=True, size=10) +RED_FONT = Font(name="Arial", bold=True, size=10, color="C00000") + +THIN = Side(style="thin", color="CCCCCC") +BORDER = Border(left=THIN, right=THIN, top=THIN, bottom=THIN) + +EVEN_FILL = PatternFill("solid", fgColor="EBF3FB") +ODD_FILL = PatternFill("solid", fgColor="FFFFFF") +NOTRCV_FILL = PatternFill("solid", fgColor="FCE4D6") +CANCELLED_FILL = PatternFill("solid", fgColor="F2F2F2") +OPEN_FILL = PatternFill("solid", fgColor="FFC7CE") +OPEN_QUERY_FILL = PatternFill("solid", fgColor="FFD966") +HYPERLINK_FONT = Font(name="Arial", size=10, color="0563C1", underline="single") + +CENTER = Alignment(horizontal="center", vertical="center") +LEFT = Alignment(horizontal="left", vertical="center") + + +def unique_path(stem): + path = os.path.join(CREATED_DIR, f"{stem}.xlsx") + if not os.path.exists(path): + return path + tag = datetime.datetime.now().strftime("%H%M") + return os.path.join(CREATED_DIR, f"{stem} {tag}.xlsx") + + +# ── data load ──────────────────────────────────────────────────────────────── + +def load_data(): + conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + sql = """ + SELECT + investigator_no, investigator_name, patient_no, + collection_date, protocol_visit_code, + accession, container_no, container_barcode, + specimen_type, sample_status, + label_line1, label_line2 + FROM covance_samples + WHERE import_id = ( + SELECT MAX(import_id) FROM iwrs_import + WHERE study = %s AND report_type = 'covance_samples' + ) + ORDER BY investigator_no, patient_no, protocol_visit_code, container_no + """ + cursor = conn.cursor() + cursor.execute(sql, (STUDY,)) + cols = [d[0] for d in cursor.description] + rows = cursor.fetchall() + cursor.close() + conn.close() + return pd.DataFrame(rows, columns=cols) + + +def load_equery_data(): + conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + sql = """ + SELECT site_code, investigator_name, subject, visit, + accession, visit_collection_date, equery_id, + create_date, response_datetime, issue_type, status, + time_before_response, user_name, study_role + FROM covance_equeries + WHERE import_id = ( + SELECT MAX(import_id) FROM iwrs_import + WHERE study = %s AND report_type = 'covance_equeries' + ) + ORDER BY site_code ASC, create_date DESC + """ + cursor = conn.cursor() + cursor.execute(sql, (STUDY,)) + cols = [d[0] for d in cursor.description] + rows = cursor.fetchall() + cursor.close() + conn.close() + return pd.DataFrame(rows, columns=cols) + + +def load_kit_data(): + conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + sql = """ + SELECT site_code, investigator_name, kit_type, description, + accession, shipped_date, expiration_date, days_to_expiration + FROM covance_kit_inventory + WHERE import_id = ( + SELECT MAX(import_id) FROM iwrs_import + WHERE study = %s AND report_type = 'covance_kit_inventory' + ) + ORDER BY site_code, kit_type+0, kit_type, accession + """ + cursor = conn.cursor() + cursor.execute(sql, (STUDY,)) + cols = [d[0] for d in cursor.description] + rows = cursor.fetchall() + cursor.close() + conn.close() + return pd.DataFrame(rows, columns=cols) + + +# ── helpers ────────────────────────────────────────────────────────────────── + +def test_name(row): + l1 = str(row["label_line1"]).strip() if pd.notna(row["label_line1"]) else "" + l2 = str(row["label_line2"]).strip() if pd.notna(row["label_line2"]) else "" + return f"{l1} {l2}".strip() if l2 else l1 + +def write_headers(ws, headers, widths, row=2): + for c, (h, w) in enumerate(zip(headers, widths), 1): + cell = ws.cell(row=row, column=c, value=h) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = CENTER + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = w + ws.row_dimensions[row].height = 18 + +def write_title(ws, text, ncols): + ws.merge_cells(f"A1:{get_column_letter(ncols)}1") + cell = ws["A1"] + cell.value = text + cell.font = Font(name="Arial", bold=True, size=12, color="1F4E79") + cell.alignment = Alignment(horizontal="left", vertical="center") + ws.row_dimensions[1].height = 22 + + +# ── sheet 1: Přehled ───────────────────────────────────────────────────────── + +def write_prehled(wb, df, accession_eq_row=None): + if accession_eq_row is None: + accession_eq_row = {} + ws = wb.create_sheet("Přehled") + ws.sheet_view.showGridLines = False + + today = datetime.date.today().strftime("%d-%b-%Y") + write_title(ws, f"Covance Samples — {STUDY} ({today})", 9) + + headers = ["Site", "Investigátor", "Pacient", "Visit", "Accession", + "Datum odběru", "Celkem", "Received", "Not Received"] + widths = [9, 22, 14, 12, 13, 14, 8, 10, 13] + write_headers(ws, headers, widths) + + agg = ( + df.groupby(["investigator_no", "investigator_name", + "patient_no", "protocol_visit_code", "accession", "collection_date"]) + .agg( + celkem =("sample_status", "count"), + received =("sample_status", lambda x: (x == "Received").sum()), + not_received=("sample_status", lambda x: (x == "Not Received").sum()), + ) + .reset_index() + .sort_values(["investigator_no", "patient_no", "protocol_visit_code"]) + .reset_index(drop=True) + ) + + for r_idx, row in agg.iterrows(): + excel_row = r_idx + 3 + has_missing = row["not_received"] > 0 + accession = row["accession"] + eq_row = accession_eq_row.get(accession) # None pokud nemá Open query + + if eq_row: + fill = OPEN_QUERY_FILL + elif has_missing: + fill = NOTRCV_FILL + else: + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + + col_date = row["collection_date"] + date_str = col_date.strftime("%d-%b-%Y") if hasattr(col_date, "strftime") else str(col_date) + + values = [ + row["investigator_no"], row["investigator_name"], row["patient_no"], + row["protocol_visit_code"], accession, date_str, + int(row["celkem"]), int(row["received"]), int(row["not_received"]), + ] + for c_idx, val in enumerate(values, 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val) + cell.fill = fill + cell.border = BORDER + cell.alignment = CENTER if c_idx in (1, 4, 5, 6, 7, 8, 9) else LEFT + + if c_idx == 5 and eq_row: + cell.hyperlink = f"#'eQueries'!A{eq_row}" + cell.font = HYPERLINK_FONT + elif c_idx == 9 and has_missing: + cell.font = RED_FONT + else: + cell.font = NORMAL_FONT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + ws.auto_filter.ref = f"A2:I{len(agg) + 2}" + + +# ── sheet 2: Chybějící ──────────────────────────────────────────────────────── + +def write_chybejici(wb, df): + ws = wb.create_sheet("Chybějící") + ws.sheet_view.showGridLines = False + + today = datetime.date.today().strftime("%d-%b-%Y") + write_title(ws, f"Not Received vzorky — {STUDY} ({today})", 8) + + headers = ["Site", "Pacient", "Visit", "Datum odběru", + "Accession", "Container", "Typ vzorku", "Test"] + widths = [9, 14, 12, 14, 13, 10, 22, 30] + write_headers(ws, headers, widths) + + missing = df[df["sample_status"] == "Not Received"].copy() + missing["test"] = missing.apply(test_name, axis=1) + missing = missing.sort_values( + ["investigator_no", "patient_no", "protocol_visit_code", "container_no"] + ).reset_index(drop=True) + + for r_idx, row in missing.iterrows(): + excel_row = r_idx + 3 + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + + col_date = row["collection_date"] + date_str = col_date.strftime("%d-%b-%Y") if hasattr(col_date, "strftime") else str(col_date) + + values = [ + row["investigator_no"], row["patient_no"], + row["protocol_visit_code"], date_str, + row["accession"], int(row["container_no"]) if pd.notna(row["container_no"]) else "", + row["specimen_type"], row["test"], + ] + for c_idx, val in enumerate(values, 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val) + cell.fill = fill + cell.border = BORDER + cell.alignment = CENTER if c_idx in (1, 3, 4, 5, 6) else LEFT + cell.font = NORMAL_FONT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + ws.auto_filter.ref = f"A2:H{len(missing) + 2}" + + +# ── sheet 3: Kity (per centrum) ────────────────────────────────────────────── + +def kit_sort_key(kt): + try: + return (0, int(kt), "") + except ValueError: + pass + if str(kt).upper().startswith("T-"): + try: + return (1, int(str(kt)[2:]), "") + except ValueError: + pass + return (2, 0, str(kt)) + +SITE_HDR_FILL = PatternFill("solid", fgColor="2E75B6") +SITE_HDR_FONT = Font(name="Arial", bold=True, color="FFFFFF", size=10) +TOTAL_FILL = PatternFill("solid", fgColor="D6E4F0") +SOON_FILL = PatternFill("solid", fgColor="FCE4D6") + +def _cell(ws, row, col, value, font, fill, alignment, border): + c = ws.cell(row=row, column=col, value=value) + c.font = font; c.fill = fill; c.alignment = alignment; c.border = border + return c + +def write_kity(wb, df_kits): + ws = wb.create_sheet("Kity") + ws.sheet_view.showGridLines = False + + today = datetime.date.today() + cutoff = today + datetime.timedelta(days=30) + today_str = today.strftime("%d-%b-%Y") + + # sada kitů napříč celou studií (seřazeno) + kit_types = sorted(df_kits["kit_type"].dropna().unique(), key=kit_sort_key) + kt_desc = (df_kits.drop_duplicates("kit_type") + .set_index("kit_type")["description"].to_dict()) + + # centra seřazená + sites = (df_kits[["site_code", "investigator_name"]] + .drop_duplicates() + .sort_values("site_code") + .values.tolist()) + + # sloupce: A=Kit Type, B=Popis, C=≤30 dní, D=>30 dní, E=Celkem + ws.column_dimensions["A"].width = 9 + ws.column_dimensions["B"].width = 28 + ws.column_dimensions["C"].width = 14 + ws.column_dimensions["D"].width = 14 + ws.column_dimensions["E"].width = 10 + + write_title(ws, f"Kit Inventory — {STUDY} ({today_str})", 5) + + # sub-header (řádek 2) — bez pevné výšky, Excel si ji sám přizpůsobí + for col, txt in [(1, "Kit Type"), (2, "Popis"), + (3, f"Expiruje ≤30 dní\n({cutoff.strftime('%d-%b-%Y')})"), + (4, "Expiruje >30 dní"), + (5, "Celkem")]: + c = ws.cell(row=2, column=col, value=txt) + c.font = HEADER_FONT; c.fill = HEADER_FILL + c.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + c.border = BORDER + + cur_row = 3 + + for site_code, investigator in sites: + # ── site header ─────────────────────────────────────────────────────── + ws.merge_cells(f"A{cur_row}:E{cur_row}") + c = ws.cell(row=cur_row, column=1, + value=f"{site_code} — {investigator}") + c.font = SITE_HDR_FONT; c.fill = SITE_HDR_FILL + c.alignment = LEFT; c.border = BORDER + for col in range(2, 6): + ws.cell(row=cur_row, column=col).fill = SITE_HDR_FILL + ws.cell(row=cur_row, column=col).border = BORDER + ws.row_dimensions[cur_row].height = 17 + cur_row += 1 + + # kity tohoto centra + site_df = df_kits[df_kits["site_code"] == site_code].copy() + site_df["exp_date"] = pd.to_datetime(site_df["expiration_date"]).dt.date + + site_soon = 0 + site_later = 0 + + for kt_idx, kt in enumerate(kit_types): + kt_df = site_df[site_df["kit_type"] == kt] + soon = int((kt_df["exp_date"].apply( + lambda d: d is not None and today <= d <= cutoff)).sum()) + later = int((kt_df["exp_date"].apply( + lambda d: d is not None and d > cutoff)).sum()) + site_soon += soon + site_later += later + total = soon + later + + fill = EVEN_FILL if kt_idx % 2 == 0 else ODD_FILL + + _cell(ws, cur_row, 1, kt, BOLD_FONT, fill, CENTER, BORDER) + _cell(ws, cur_row, 2, kt_desc.get(kt, ""), NORMAL_FONT, fill, LEFT, BORDER) + _cell(ws, cur_row, 3, soon if soon else None, + RED_FONT if soon else NORMAL_FONT, + SOON_FILL if soon else fill, CENTER, BORDER) + _cell(ws, cur_row, 4, later if later else None, + NORMAL_FONT, fill, CENTER, BORDER) + _cell(ws, cur_row, 5, total if total else None, + BOLD_FONT, fill, CENTER, BORDER) + ws.row_dimensions[cur_row].height = 16 + cur_row += 1 + + # ── součet centra ───────────────────────────────────────────────────── + site_total = site_soon + site_later + _cell(ws, cur_row, 1, "Celkem", BOLD_FONT, TOTAL_FILL, CENTER, BORDER) + _cell(ws, cur_row, 2, "", BOLD_FONT, TOTAL_FILL, LEFT, BORDER) + _cell(ws, cur_row, 3, site_soon if site_soon else None, + BOLD_FONT, TOTAL_FILL, CENTER, BORDER) + _cell(ws, cur_row, 4, site_later if site_later else None, + BOLD_FONT, TOTAL_FILL, CENTER, BORDER) + _cell(ws, cur_row, 5, site_total if site_total else None, + BOLD_FONT, TOTAL_FILL, CENTER, BORDER) + ws.row_dimensions[cur_row].height = 16 + cur_row += 2 # prázdný řádek mezi centry + + ws.freeze_panes = "A3" + + +# ── sheet 4: eQueries ──────────────────────────────────────────────────────── + +def write_equeries(wb, df_eq): + ws = wb.create_sheet("eQueries") + ws.sheet_view.showGridLines = False + + today = datetime.date.today().strftime("%d-%b-%Y") + write_title(ws, f"eQueries — {STUDY} ({today})", 14) + + headers = ["Site", "Investigátor", "Pacient", "Visit", "Accession", + "Visit Datum", "eQuery ID", "Vytvořeno", "Odpovězeno", + "Issue Type", "Status", "Čas odpovědi", "Uživatel", "Role"] + widths = [9, 22, 14, 26, 13, 13, 10, 16, 16, 20, 9, 13, 22, 13] + write_headers(ws, headers, widths) + + def fmt_dt(val, fmt="%d-%b-%Y %H:%M"): + if val is None or (isinstance(val, float) and val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if hasattr(val, "strftime"): + return val.strftime(fmt) + return str(val) + + for r_idx, row in df_eq.iterrows(): + excel_row = r_idx + 3 + is_open = str(row.get("status", "")).strip().lower() == "open" + fill = OPEN_FILL if is_open else (EVEN_FILL if r_idx % 2 == 0 else ODD_FILL) + font = Font(name="Arial", bold=True, size=10, color="9C0006") if is_open else NORMAL_FONT + + values = [ + row["site_code"], row["investigator_name"], row["subject"], + row["visit"], row["accession"], + fmt_dt(row["visit_collection_date"], "%d-%b-%Y"), + row["equery_id"], + fmt_dt(row["create_date"]), + fmt_dt(row["response_datetime"]), + row["issue_type"], row["status"], + row["time_before_response"], row["user_name"], row["study_role"], + ] + for c_idx, val in enumerate(values, 1): + if isinstance(val, float) and val != val: + val = None + cell = ws.cell(row=excel_row, column=c_idx, value=val) + cell.fill = fill + cell.border = BORDER + cell.font = font + cell.alignment = CENTER if c_idx in (1, 6, 7, 8, 9, 11, 12) else LEFT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + ws.auto_filter.ref = f"A2:N{len(df_eq) + 2}" + + +# ── sheet 5: ZDROJ Vzorky ──────────────────────────────────────────────────── + +# ── sheet 6: ZDROJ Kity ────────────────────────────────────────────────────── + +def write_zdroj_kity(wb, df_kits): + ws = wb.create_sheet("ZDROJ Kity") + ws.sheet_view.showGridLines = True + + headers = list(df_kits.columns) + for c, h in enumerate(headers, 1): + cell = ws.cell(row=1, column=c, value=h) + cell.font = Font(name="Arial", bold=True, size=9, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="404040") + cell.alignment = LEFT + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = 20 + + for r_idx, (_, row) in enumerate(df_kits.iterrows(), 2): + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + for c_idx, col in enumerate(headers, 1): + val = row[col] + if pd.isna(val): + val = "" + elif hasattr(val, "strftime"): + val = val.strftime("%Y-%m-%d") + cell = ws.cell(row=r_idx, column=c_idx, value=val) + cell.font = Font(name="Arial", size=9) + cell.fill = fill + cell.border = BORDER + cell.alignment = LEFT + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +# ── sheet 4: ZDROJ ─────────────────────────────────────────────────────────── + +def write_zdroj(wb, df): + ws = wb.create_sheet("ZDROJ Vzorky") + ws.sheet_view.showGridLines = True + + headers = list(df.columns) + for c, h in enumerate(headers, 1): + cell = ws.cell(row=1, column=c, value=h) + cell.font = Font(name="Arial", bold=True, size=9, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="404040") + cell.alignment = LEFT + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = 18 + + for r_idx, (_, row) in enumerate(df.iterrows(), 2): + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + for c_idx, col in enumerate(headers, 1): + val = row[col] + if pd.isna(val): + val = "" + elif hasattr(val, "strftime"): + val = val.strftime("%Y-%m-%d") + cell = ws.cell(row=r_idx, column=c_idx, value=val) + cell.font = Font(name="Arial", size=9) + cell.fill = fill + cell.border = BORDER + cell.alignment = LEFT + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +def write_zdroj_equeries(wb, df_eq): + ws = wb.create_sheet("ZDROJ eQuery") + ws.sheet_view.showGridLines = True + + headers = list(df_eq.columns) + for c, h in enumerate(headers, 1): + cell = ws.cell(row=1, column=c, value=h) + cell.font = Font(name="Arial", bold=True, size=9, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="404040") + cell.alignment = LEFT + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = 20 + + for r_idx, (_, row) in enumerate(df_eq.iterrows(), 2): + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + for c_idx, col in enumerate(headers, 1): + val = row[col] + try: + is_na = pd.isna(val) + except (TypeError, ValueError): + is_na = False + if is_na or val is None: + val = "" + elif hasattr(val, "strftime"): + val = val.strftime("%Y-%m-%d %H:%M") + cell = ws.cell(row=r_idx, column=c_idx, value=val) + cell.font = Font(name="Arial", size=9) + cell.fill = fill + cell.border = BORDER + cell.alignment = LEFT + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + os.makedirs(CREATED_DIR, exist_ok=True) + + print("Načítám data z MySQL...") + df = load_data() + df_kits = load_kit_data() + df_eq = load_equery_data() + print(f" Vzorky: {len(df)} řádků, {df['patient_no'].nunique()} pacientů") + print(f" Kity: {len(df_kits)} kitů, {df_kits['site_code'].nunique()} center") + print(f" eQueries: {len(df_eq)} záznamů ({(df_eq['status']=='Open').sum()} Open)") + + # mapping accession → řádek v listu eQueries (jen Open queries, první výskyt) + open_accs = set(df_eq[df_eq["status"] == "Open"]["accession"].dropna()) + accession_eq_row = {} + for r_idx, row in df_eq.iterrows(): + acc = row.get("accession") + if acc and acc in open_accs and acc not in accession_eq_row: + accession_eq_row[acc] = r_idx + 3 # řádek 1=title, 2=header, data od 3 + + wb = Workbook() + wb.remove(wb.active) + + write_prehled(wb, df, accession_eq_row) + write_chybejici(wb, df) + write_kity(wb, df_kits) + write_equeries(wb, df_eq) + write_zdroj(wb, df) + write_zdroj_kity(wb, df_kits) + write_zdroj_equeries(wb, df_eq) + + now = datetime.datetime.now() + stamp = now.strftime("%Y-%m-%d %H%M%S") + out_path = unique_path(f"{stamp} {STUDY} Covance") + wb.save(out_path) + print(f"Uloženo: {out_path}") + + +main() diff --git a/Covance/db_config.py b/Covance/db_config.py new file mode 100644 index 0000000..bfa5959 --- /dev/null +++ b/Covance/db_config.py @@ -0,0 +1,5 @@ +DB_HOST = "192.168.1.76" +DB_PORT = 3306 +DB_USER = "root" +DB_PASSWORD = "Vlado9674+" +DB_NAME = "studie" diff --git a/Covance/import_equeries_to_mysql.py b/Covance/import_equeries_to_mysql.py new file mode 100644 index 0000000..25d7ece --- /dev/null +++ b/Covance/import_equeries_to_mysql.py @@ -0,0 +1,182 @@ +""" +Import Covance eQuery CSV do MySQL tabulky covance_equeries. +Strategie: versioning — každý import = nový import_id. +""" + +import os +import glob +import datetime + +import numpy as np +import pandas as pd +import mysql.connector + +import db_config + +STUDY = "42847922MDD3003" +SOURCE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "SourceData") + + +# ── type converters ────────────────────────────────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + +def to_datetime(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.to_pydatetime() + if isinstance(val, datetime.datetime): + return val + if isinstance(val, datetime.date): + return datetime.datetime(val.year, val.month, val.day) + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%b %d, %Y %I:%M %p", "%b %d, %Y", + "%Y-%m-%d %H:%M:%S", "%Y-%m-%d"): + try: + return datetime.datetime.strptime(s, fmt) + except ValueError: + pass + return None + + +# ── DB helpers ─────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + +def insert_import(cursor, study, source_file): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file, report_type) VALUES (%s, %s, %s, %s)", + (study, datetime.datetime.now(), source_file, "covance_equeries"), + ) + return cursor.lastrowid + + +# ── parser ─────────────────────────────────────────────────────────────────── + +def find_csv(study): + pattern = os.path.join(SOURCE_DIR, f"Protocol {study} *equery*.csv") + files = glob.glob(pattern) + if not files: + raise FileNotFoundError(f"Nenalezen CSV soubor: {pattern}") + return sorted(files)[-1] + +def parse_site(site_str): + """'CZ10004 - Dr. Erik Herman' → ('CZ10004', 'Dr. Erik Herman')""" + if not site_str: + return None, None + parts = site_str.split(" - ", 1) + code = parts[0].strip() + name = parts[1].strip() if len(parts) > 1 else None + return code, name + +def parse_csv(path): + df = pd.read_csv(path, dtype=str) + # odstraň metadata řádky (eQueryId není číslo) + df = df[pd.to_numeric(df["eQueryId"], errors="coerce").notna()].copy() + + rows = [] + for _, r in df.iterrows(): + site_code, investigator_name = parse_site(to_str(r.get("Site"))) + rows.append({ + "site_code": site_code, + "investigator_name": investigator_name, + "country": to_str(r.get("Country")), + "visit": to_str(r.get("Visit")), + "visit_collection_date": to_datetime(r.get("Visit Collection Date")), + "accession": to_str(r.get("Accession")), + "subject": to_str(r.get("Subject")), + "equery_id": to_int(r.get("eQueryId")), + "create_date": to_datetime(r.get("Create Date")), + "response_datetime": to_datetime(r.get("Response Date Time")), + "issue_type": to_str(r.get("Issue Type")), + "status": to_str(r.get("Status")), + "time_before_response": to_str(r.get("Time Before Response")), + "user_name": to_str(r.get("User Name")), + "email": to_str(r.get("Email")), + "study_role": to_str(r.get("Study Role")), + }) + return rows + + +# ── insert ─────────────────────────────────────────────────────────────────── + +def insert_equeries(cursor, import_id, rows): + sql = """INSERT INTO covance_equeries + (import_id, study, site_code, investigator_name, country, + visit, visit_collection_date, accession, subject, equery_id, + create_date, response_datetime, issue_type, status, + time_before_response, user_name, email, study_role) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, STUDY, + r["site_code"], r["investigator_name"], r["country"], + r["visit"], r["visit_collection_date"], r["accession"], + r["subject"], r["equery_id"], + r["create_date"], r["response_datetime"], + r["issue_type"], r["status"], + r["time_before_response"], r["user_name"], + r["email"], r["study_role"], + )) + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + csv_path = find_csv(STUDY) + print(f"Soubor: {os.path.basename(csv_path)}") + + rows = parse_csv(csv_path) + print(f"Načteno řádků: {len(rows)}") + + conn = get_conn() + cursor = conn.cursor() + + import_id = insert_import(cursor, STUDY, os.path.basename(csv_path)) + print(f"import_id = {import_id}") + + insert_equeries(cursor, import_id, rows) + conn.commit() + cursor.close() + conn.close() + + print(f"Hotovo — {len(rows)} eQuery záznamů importováno.") + + +main() diff --git a/Covance/import_kit_inventory_to_mysql.py b/Covance/import_kit_inventory_to_mysql.py new file mode 100644 index 0000000..c894c02 --- /dev/null +++ b/Covance/import_kit_inventory_to_mysql.py @@ -0,0 +1,172 @@ +""" +Import Covance kit inventory CSV do MySQL tabulky covance_kit_inventory. +Strategie: versioning — každý import = nový import_id. +Metadata řádky na konci CSV (začínají "title" / "Search" / ...) jsou ignorovány. +""" + +import os +import glob +import datetime + +import numpy as np +import pandas as pd +import mysql.connector + +import db_config + +STUDY = "42847922MDD3003" +SOURCE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "SourceData") + + +# ── type converters ────────────────────────────────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + +def to_date(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%b %d, %Y", "%d-%b-%Y", "%Y-%m-%d", "%d-%m-%Y"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + + +# ── DB helpers ─────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + +def insert_import(cursor, study, source_file): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file, report_type) VALUES (%s, %s, %s, %s)", + (study, datetime.datetime.now(), source_file, "covance_kit_inventory"), + ) + return cursor.lastrowid + + +# ── parser ─────────────────────────────────────────────────────────────────── + +def find_csv(study): + pattern = os.path.join(SOURCE_DIR, f"Protocol {study} sponsor-study-*kit-inventory*.csv") + files = glob.glob(pattern) + if not files: + raise FileNotFoundError(f"Nenalezen CSV soubor: {pattern}") + return sorted(files)[-1] + +def parse_site(site_str): + """'CZ10004 - Dr. Erik Herman' → ('CZ10004', 'Dr. Erik Herman')""" + if not site_str: + return None, None + parts = site_str.split(" - ", 1) + code = parts[0].strip() + name = parts[1].strip() if len(parts) > 1 else None + return code, name + +def parse_csv(path): + df = pd.read_csv(path, dtype=str) + # odstraň metadata řádky na konci (Project No. není číslo) + df = df[pd.to_numeric(df["Project No."], errors="coerce").notna()].copy() + + rows = [] + for _, r in df.iterrows(): + site_code, investigator_name = parse_site(to_str(r.get("Site"))) + rows.append({ + "project_no": to_str(r.get("Project No.")), + "region": to_str(r.get("Region")), + "country": to_str(r.get("Country")), + "site_code": site_code, + "investigator_name": investigator_name, + "kit_type": to_str(r.get("Kit Type")), + "description": to_str(r.get("Description")), + "accession": to_str(r.get("Accession")), + "shipped_date": to_date(r.get("Shipped Date")), + "expiration_date": to_date(r.get("Expiration Date")), + "days_to_expiration": to_int(r.get("Days to Expiration")), + }) + return rows + + +# ── insert ─────────────────────────────────────────────────────────────────── + +def insert_kits(cursor, import_id, rows): + sql = """INSERT INTO covance_kit_inventory + (import_id, study, project_no, region, country, site_code, investigator_name, + kit_type, description, accession, shipped_date, expiration_date, days_to_expiration) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, STUDY, + r["project_no"], r["region"], r["country"], + r["site_code"], r["investigator_name"], + r["kit_type"], r["description"], r["accession"], + r["shipped_date"], r["expiration_date"], r["days_to_expiration"], + )) + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + csv_path = find_csv(STUDY) + print(f"Soubor: {os.path.basename(csv_path)}") + + rows = parse_csv(csv_path) + print(f"Načteno řádků: {len(rows)}") + + conn = get_conn() + cursor = conn.cursor() + + import_id = insert_import(cursor, STUDY, os.path.basename(csv_path)) + print(f"import_id = {import_id}") + + insert_kits(cursor, import_id, rows) + conn.commit() + cursor.close() + conn.close() + + print(f"Hotovo — {len(rows)} kitů importováno.") + + +main() diff --git a/Covance/import_to_mysql.py b/Covance/import_to_mysql.py new file mode 100644 index 0000000..8ec4c3f --- /dev/null +++ b/Covance/import_to_mysql.py @@ -0,0 +1,179 @@ +""" +Import Covance "All Samples" CSV do MySQL tabulky covance_samples. +Strategie: versioning — každý import = nový import_id. +Aktuální data: WHERE import_id = (SELECT MAX(import_id) FROM iwrs_import + WHERE study = '...' AND report_type = 'covance_samples') +""" + +import os +import glob +import datetime + +import numpy as np +import pandas as pd +import mysql.connector + +import db_config + +SOURCE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "SourceData") +STUDY = "42847922MDD3003" + + +# ── type converters ────────────────────────────────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + +def to_date(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%d-%b-%Y", "%Y-%m-%d", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + + +# ── DB helpers ─────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + +def insert_import(cursor, study, source_file): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file, report_type) VALUES (%s, %s, %s, %s)", + (study, datetime.datetime.now(), source_file, "covance_samples"), + ) + return cursor.lastrowid + + +# ── parser ─────────────────────────────────────────────────────────────────── + +def find_csv(study): + pattern = os.path.join(SOURCE_DIR, f"Protocol {study} - All Samples.csv") + files = glob.glob(pattern) + if not files: + raise FileNotFoundError(f"Nenalezen CSV soubor: {pattern}") + return files[0] + +def parse_csv(path): + df = pd.read_csv(path, dtype=str) + rows = [] + for _, r in df.iterrows(): + rows.append({ + "study": to_str(r.get("Protocol Code")), + "investigator_no": to_str(r.get("Investigator No.")), + "investigator_name": to_str(r.get("Investigator Name")), + "patient_no": to_str(r.get("Patient No.")), + "collection_date": to_date(r.get("Collection Date")), + "protocol_visit_code": to_str(r.get("Protocol Visit Code")), + "kit_receipt_date": to_date(r.get("Kit Receipt Date")), + "container_receipt_date": to_date(r.get("Container Receipt Date")), + "accession": to_str(r.get("Accession")), + "container_no": to_int(r.get("Container No.")), + "container_barcode": to_str(r.get("Container Barcode No.")), + "specimen_type": to_str(r.get("Specimen Type")), + "sample_status": to_str(r.get("Sample Status")), + "expected_receipt_condition": to_str(r.get("Expected Receipt Condition")), + "actual_receipt_condition": to_str(r.get("Actual Receipt Condition")), + "label_line1": to_str(r.get("Container Label Line 1")), + "label_line2": to_str(r.get("Container Label Line 2")), + "sm_sample_status": to_str(r.get("SM Sample Status")), + "smart_class_description": to_str(r.get("SMART Specimen Class Description")), + "parent_barcode": to_str(r.get("Parent Barcode")), + "children_barcode": to_str(r.get("Children Barcode")), + }) + return rows + + +# ── insert ─────────────────────────────────────────────────────────────────── + +def insert_samples(cursor, import_id, rows): + sql = """INSERT INTO covance_samples + (import_id, study, investigator_no, investigator_name, patient_no, + collection_date, protocol_visit_code, kit_receipt_date, container_receipt_date, + accession, container_no, container_barcode, specimen_type, sample_status, + expected_receipt_condition, actual_receipt_condition, + label_line1, label_line2, sm_sample_status, smart_class_description, + parent_barcode, children_barcode) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, + r["study"], r["investigator_no"], r["investigator_name"], r["patient_no"], + r["collection_date"], r["protocol_visit_code"], + r["kit_receipt_date"], r["container_receipt_date"], + r["accession"], r["container_no"], r["container_barcode"], + r["specimen_type"], r["sample_status"], + r["expected_receipt_condition"], r["actual_receipt_condition"], + r["label_line1"], r["label_line2"], + r["sm_sample_status"], r["smart_class_description"], + r["parent_barcode"], r["children_barcode"], + )) + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + csv_path = find_csv(STUDY) + print(f"Soubor: {os.path.basename(csv_path)}") + + rows = parse_csv(csv_path) + print(f"Načteno řádků: {len(rows)}") + + conn = get_conn() + cursor = conn.cursor() + + import_id = insert_import(cursor, STUDY, os.path.basename(csv_path)) + print(f"import_id = {import_id}") + + insert_samples(cursor, import_id, rows) + conn.commit() + cursor.close() + conn.close() + + print(f"Hotovo — {len(rows)} vzorků importováno.") + + +main() diff --git a/Covance_MDD3003/Source/Zpracovano/2026-05-28_081852 sponsor-study-35472-samples-allSamples.csv b/Covance_MDD3003/Source/Zpracovano/2026-05-28_081852 sponsor-study-35472-samples-allSamples.csv new file mode 100644 index 0000000..f83ee76 --- /dev/null +++ b/Covance_MDD3003/Source/Zpracovano/2026-05-28_081852 sponsor-study-35472-samples-allSamples.csv @@ -0,0 +1,1189 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Parent Barcode,Children Barcode +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,11,622693560611,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,10,622675255510,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,11,622754218211,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,10,622656088810,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,11,622777550511,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,8,622811446008,"Urine, no preservative",Not Received,Ambient,,,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,1,622535104101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,1,622535104201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,1,622535104501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,1,622535104601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,1,622535104701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,1,622535107201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,1,622535107401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,1,622535107601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,1,622535107701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,1,622535107801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,1,622535108001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,1,622535108101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,1,622535110601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,1,622535110901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,1,622535111001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,1,622535111101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,1,622535100401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,1,622535100601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,1,622535104001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,1,622535097501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,1,622535097701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,1,622535097201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,1,622535097101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,2,622535097102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,2,622535097202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,2,622535097502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,2,622535097702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,2,622535104002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,2,622535100602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,2,622535100402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,2,622535111102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,2,622535111002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,2,622535110902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,2,622535110602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,2,622535108102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,2,622535107802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,2,622535108002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,2,622535107702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,2,622535107402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,2,622535107602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,2,622535107202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,2,622535104602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,2,622535104702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,2,622535104502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,2,622535104402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,2,622535104102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,2,622535104202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,3,622535104203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,3,622535104103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,3,622535104403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,3,622535104503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,3,622535104703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,3,622535104603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,3,622535107203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,3,622535107403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,3,622535107703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,3,622535107603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,3,622535107803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,3,622535108003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,3,622535108103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,3,622535110603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,3,622535111003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,3,622535111103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,3,622535110903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,3,622535100403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,3,622535100603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,3,622535104003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,3,622535097703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,3,622535097503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,3,622535097203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,3,622535097103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,5,622535097105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,5,622535097205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,5,622535097505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,5,622535097705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,5,622535104005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,5,622535100605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,5,622535100405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,5,622535111005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,5,622535110905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,5,622535110605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,5,622535108105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,5,622535108005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,5,622535107805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,5,622535107605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,5,622535107705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,5,622535107405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,5,622535107205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,5,622535111105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,5,622535104505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,5,622535104705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,5,622535104605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,5,622535104405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,5,622535104105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,5,622535104205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,4,622535104204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,4,622535104104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,4,622535104404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,4,622535104704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,4,622535104504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,4,622535104604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,4,622535107204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,4,622535107404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,4,622535107704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,4,622535107604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,4,622535107804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,4,622535108004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,4,622535108104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,4,622535110904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,4,622535110604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,4,622535111004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,4,622535111104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,4,622535100604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,4,622535100404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,4,622535104004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,4,622535097704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,4,622535097504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,4,622535097204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,4,622535097104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,6,622535097106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,6,622535097506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,6,622535097206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,6,622535097706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,6,622535104006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,6,622535100606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,6,622535100406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,6,622535111006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,6,622535110606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,6,622535110906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,6,622535108006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,6,622535108106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,6,622535107806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,6,622535107606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,6,622535107706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,6,622535107406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,6,622535107206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,6,622535111106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,6,622535104506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,6,622535104706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,6,622535104606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,6,622535104406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,6,622535104106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,6,622535104206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,8,622535104008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,28-Aug-2025,6225351042,8,622535104208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,8,622535104108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,8,622535104408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,8,622535104608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,8,622535104708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,8,622535104508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351111,8,622535111108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,8,622535107208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,8,622535107708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,07-Aug-2025,6225351076,8,622535107608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,8,622535107408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,8,622535107808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,06-Nov-2025,6225351080,8,622535108008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,8,622535108108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,05-Sep-2025,6225351109,8,622535110908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,08-Aug-2025,6225351106,8,622535110608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351110,8,622535111008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,8,622535100408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,8,622535100608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,15-Oct-2025,6225350977,8,622535097708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,24-Sep-2025,6225350972,8,622535097208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,12-Nov-2025,6225350975,8,622535097508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,12-Aug-2025,6225350971,8,622535097108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,7,622535097107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,7,622535097507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,7,622535097207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,7,622535097707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,7,622535100607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,7,622535100407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,7,622535104007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,7,622535111007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,7,622535110907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,7,622535110607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,7,622535108107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,7,622535108007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,7,622535107807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,7,622535107607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,7,622535107707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,7,622535107207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,7,622535107407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,7,622535111107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,7,622535104507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,7,622535104707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,7,622535104607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,7,622535104207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,7,622535104107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,9,622535104009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,9,622535104109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,9,622535104209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,9,622535104709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,9,622535104509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,9,622535104609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,9,622535111109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,9,622535107409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,9,622535107209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,9,622535107709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,9,622535107609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,9,622535107809,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,9,622535108009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,9,622535108109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,9,622535110609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,9,622535110909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,9,622535111009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,9,622535100409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,9,622535100609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,9,622535097709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,9,622535097209,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,9,622535097509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,9,622535097109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,10,622535097110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,10,622535097510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,10,622535097210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,10,622535097710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,10,622535100610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,10,622535100410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,10,622535111010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,10,622535110910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,10,622535110610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,10,622535108110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,10,622535108010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,10,622535107810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,10,622535107610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,10,622535107710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,10,622535107210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,10,622535107410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,10,622535111110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,10,622535104610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,10,622535104510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,10,622535104710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,10,622535104410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,10,622535104110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,10,622535104210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,10,622535104010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,2,622535104902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,2,622535105002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,2,622535105102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,2,622535105202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,2,622784472502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,2,622777550802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,2,622777550702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,2,622535112002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,2,622655169702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,2,622655169802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,2,622535108202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,2,622535108302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,2,622535108402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,2,622754733202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,2,622754733302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,2,622754125102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,2,622754125202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,2,622714456102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,2,622714456002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,2,622714456202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,2,622726123002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,2,622535098102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,2,622535098202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,2,622535098402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,1,622535098401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,1,622535098201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,1,622535098101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,1,622714456201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,1,622714456101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,1,622714456001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,1,622726123001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,1,622754125201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,1,622754125101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,1,622754733201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,1,622754733301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,1,622535108401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,1,622535108201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,1,622535108301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,1,622655169701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,1,622655169801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,1,622535112001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,1,622777550801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,1,622777550701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,1,622784472501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,1,622535105201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,1,622535105001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,1,622535105101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,1,622535104901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,3,622535104903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,3,622535105003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,28-Aug-2025,6225351051,3,622535105103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,3,622535105203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,3,622784472503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775507,3,622777550703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775508,3,622777550803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,24-Oct-2025,6225351120,3,622535112003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,3,622655169703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,3,622655169803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,3,622535108203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,3,622535108303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,3,622535108403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,3,622754733303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,04-Mar-2026,6227547332,3,622754733203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,25-Feb-2026,6227541252,3,622754125203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,3,622754125103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,10-Dec-2025,6227261230,3,622726123003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,3,622714456103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,16-Dec-2025,6227144562,3,622714456203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,3,622714456003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,12-Nov-2025,6225350982,3,622535098203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,09-Sep-2025,6225350981,3,622535098103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,22-Oct-2025,6225350984,3,622535098403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,5,622535098405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,5,622535098205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,5,622535098105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,5,622714456105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,5,622714456205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,5,622714456005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,5,622726123005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,5,622754125105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,5,622754125205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,5,622754733205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,5,622754733305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,5,622535108405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,5,622535108305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,5,622535108205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,5,622655169805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,5,622535112005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,5,622655169705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,5,622777550805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,5,622777550705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,5,622784472505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,5,622535105205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,5,622535105105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,5,622535105005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,5,622535104905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,6,622535104906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,6,622535105006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,6,622535105206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,6,622535105106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,6,622784472506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,6,622777550806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,6,622777550706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,6,622535112006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,6,622655169706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,6,622655169806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,6,622535108206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,6,622535108406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,6,622535108306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,6,622754733306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,6,622754733206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,6,622754125206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,6,622754125106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,6,622726123006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,6,622714456006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,6,622714456106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,6,622714456206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,6,622535098106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,6,622535098206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,6,622535098406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,4,622535098404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,4,622535098204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,4,622535098104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,4,622714456004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,4,622714456204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,4,622714456104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,4,622726123004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,4,622754125204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,4,622754125104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,4,622754733204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,4,622754733304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,4,622535108304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,4,622535108404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,4,622535108204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,4,622655169804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,4,622535112004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,4,622655169704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,4,622777550704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,4,622777550804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,4,622784472504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,4,622535105104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,4,622535105204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,4,622535105004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,4,622535104904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,2,622535105602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,2,622535105702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,2,622535098802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,1,622535098801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,1,622535105601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,1,622535105701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,1,622710690501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,1,622710690601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,23-Dec-2025,6227106906,3,622710690603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,03-Dec-2025,6227106905,3,622710690503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,3,622535105703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,3,622535105603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,22-Oct-2025,6225350988,3,622535098803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,7,622535098207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,7,622535098407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,7,622535098107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,7,622535105207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,7,622535105007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,7,622535105107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,7,622535104907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,7,622784472507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,7,622777550807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,7,622777550707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,7,622535112007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,7,622655169707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,7,622655169807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,7,622535108207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,7,622535108307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,7,622535108407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,7,622714456107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,7,622714456207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,7,622714456007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,7,622726123007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,7,622754733207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,7,622754733307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,7,622754125107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,7,622754125207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,5,622710690605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,5,622710690505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,5,622535105605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,5,622535105705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,5,622535098805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,7,622535098807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,7,622535105607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,7,622535105707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,7,622710690507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,7,622710690607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,6,622710690606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,6,622710690506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,6,622535105706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,6,622535105606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,6,622535098806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,4,622535098804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,4,622535105604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,4,622535105704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,1,622811446001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,1,622656088701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,1,622655064601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,1,622631362501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,1,622656151701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,1,622699131101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,1,622704330201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,1,622707241901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,1,622680496101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,1,622697694301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,1,622668695201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,1,622675255401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,1,622726183501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,1,622754125901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,1,622754126001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,1,622754126101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,2,622754126002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,2,622754125902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,2,622668695202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,2,622697694302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,2,622680496102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,2,622707241902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,2,622704330202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,2,622699131102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,2,622656151702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,2,622655064602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,7,622655064607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,7,622631362507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,7,622656088707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,7,622656151707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,7,622811446007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,7,622699131107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,7,622697694307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,7,622704330207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,7,622707241907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,7,622680496107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,7,622668695207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,7,622675255407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,7,622726183507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,7,622754126007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,7,622754126107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,7,622754125907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,6,622754125906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,6,622754126106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,6,622754126006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,6,622726183506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,6,622675255406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,6,622668695206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,6,622697694306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,6,622680496106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,6,622707241906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,6,622704330206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,6,622699131106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,6,622811446006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,6,622656151706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,6,622656088706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,6,622631362506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,6,622655064606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,1,622668695301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,1,622680496201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,2,622680496202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,2,622668695302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,7,622668695307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,7,622680496207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,5,622680496205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,5,622668695305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,3,622668695303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,3,622680496203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,4,622680496104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,4,622697694304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,4,622704330204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,4,622707241904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,4,622699131104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,4,622668695204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,4,622754126004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,4,622754125904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,4,622656151704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,4,622655064604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,9,622535105609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,9,622535105709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,9,622710690609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,9,622710690509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,9,622535098809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,21-May-2026,6227261835,3,622726183503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,3,622707241903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,3,622699131103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,19-Nov-2025,6227043302,3,622704330203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,31-Jan-2026,6226976943,3,622697694303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,3,622680496103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,3,622668695203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,3,622675255403,"Plasma, EDTA",Received,Frozen,Default Return Ambient,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,18-Feb-2026,6227541259,3,622754125903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,21-Jan-2026,6227541260,3,622754126003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,20-May-2026,6227541261,3,622754126103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,3,622811446003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,3,622655064603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,3,622631362503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,20-May-2026,6226560887,3,622656088703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,17-Feb-2026,6226561517,3,622656151703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,5,622656151705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,5,622656088705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,5,622631362505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,5,622655064605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,5,622811446005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,5,622754126105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,5,622754125905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,5,622754126005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,5,622668695205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,5,622675255405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,5,622680496105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,5,622704330205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,5,622699131105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,5,622697694305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,5,622707241905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,5,622726183505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,8,622535105708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,8,622535105608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,8,622535098808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,9,622668695309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,9,622680496209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,1,622754126401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,1,622668695401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,3,622668695403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,3,622754126403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,5,622754126405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,5,622668695405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,6,622668695406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,6,622754126406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,7,622754126407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,7,622668695407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,1,622656089101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,2,622656089102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,20-May-2026,6226560891,5,622656089105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,7,622656089107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,1,622535112601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,1,622535109301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,1,622535109401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,1,622535109501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,1,622678085301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,1,622678085501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,1,622678085601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,1,622678085701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,1,622717890901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,1,622717890801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,1,622717891201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,1,622717891001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,1,622717891101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,9,622656089109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,3,622656089103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,6,622535109406,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,6,622535109506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,6,622678085306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,7,622678085307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,7,622678085507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,7,622678085607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,7,622678085707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,7,622717890907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,7,622717891107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,7,622717891007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,7,622717891207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,7,622717890807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,7,622535109507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,7,622535109407,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,7,622535109307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,7,622535112607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,3,622535112603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,3,622535109403,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,3,622535109503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,3,622535109303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,3,622717890903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,3,622717891103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,3,622717891203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,3,622717891003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,3,622717890803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,3,622678085503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,3,622678085703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,3,622678085603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,3,622678085303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,8,622678085308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,8,622535109408,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,8,622535109508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,9,622535109409,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,9,622535109509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,9,622535109309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,9,622535112609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,9,622678085309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,9,622678085509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,9,622678085609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,9,622678085709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,9,622717890909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,9,622717891009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,9,622717891109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,9,622717891209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,9,622717890809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,2,622535106602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,3,622535106603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,4,622535106604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,4,622535109404,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,4,622535109504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,4,622717891204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,4,622678085304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,5,622678085305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,5,622678085505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226752555,5,622675255505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,5,622678085705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,5,622678085605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178912,5,622717891205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,20-May-2026,6227178910,5,622717891005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178908,5,622717890805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,11-Mar-2026,6227178911,5,622717891105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,04-Feb-2026,6227178909,5,622717890905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,5,622535109405,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,5,622535109505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,5,622535109305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,10-Dec-2025,6225351126,5,622535112605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226560888,5,622656088805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,2,622535112602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,2,622535109502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,2,622535109402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,2,622535109302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,2,622717890902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,2,622717891102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,2,622717890802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,2,622717891002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,2,622717891202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,2,622678085702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,2,622678085602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,2,622678085502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,2,622678085302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,5,622535106605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,1,622535106601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,6,622535106606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,9,622535106609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,8,622535106608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,7,622535106607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,1,622535107001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,1,622693560601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,1,622535100201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,1,622535103601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,1,622535103701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,3,622535103703,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,3,622535103603,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,3,622535100203,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,3,622693560603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,3,622535107003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,5,622535107005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,5,622535100205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,5,622535103605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,5,622535103705,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,6,622535103706,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,6,622535103606,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,21-Aug-2025,6225351002,6,622535100206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,6,622535107006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,16-Dec-2025,6226935606,6,622693560606,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,09-Sep-2025,6225351070,4,622535107004,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,4,622535100204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,4,622535103604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,4,622535103704,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,8,622535103708,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,8,622535103608,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,8,622535100208,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,8,622535107008,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,8,622693560608,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,8,622678574008,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,9,622535107009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,9,622535100209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,9,622535103609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,9,622535103709,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,7,622535103707,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,7,622535103607,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,7,622535100207,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,7,622535107007,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,10,622535107010,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,10,622678574010,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,19-Feb-2026,6226785739,10,622678573910,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,10,622693560610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,10,622535100210,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,10,622535103610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,10,622535103710,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,2,622535103702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,2,622535103602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,2,622535100202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,2,622693560602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,2,622535107002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,1,622535104401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,1,622779740801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,1,622777550501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,1,622779740601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,1,622779740701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,1,622776726701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,1,622754124901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,1,622754216101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,1,622754216001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,1,622754733101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,1,622754732901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,1,622754733001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,2,622754732902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,2,622754733102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,2,622754733002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,2,622754216102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,2,622754216002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,2,622754124902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,2,622776726702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,2,622777550502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,2,622779740602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,2,622779740702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,2,622779740802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,3,622779740803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,3,622777550503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,3,622779740703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,3,622779740603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,3,622776726703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,3,622754124903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,3,622754216103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,3,622754216003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,3,622754733103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,3,622754732903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,3,622754733003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,4,622754733004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,4,622754732904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,4,622754733104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,4,622754216004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,4,622754216104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,4,622754124904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,4,622776726704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,4,622779740604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,4,622779740704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,4,622777550504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,4,622779740804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,5,622779740705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,5,622779740605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,5,622779740805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,5,622777550505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,5,622776726705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,5,622754216005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,5,622754216105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,5,622754124905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,5,622754733105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,5,622754732905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,5,622754733005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,6,622754733006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,6,622754732906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,6,622754733106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,6,622754216106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,6,622754216006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,6,622754124906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,6,622776726706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,6,622777550506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,6,622779740606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,6,622779740806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,6,622779740706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,7,622779740707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,7,622779740607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,7,622779740807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,7,622777550507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,7,622776726707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,7,622535104407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,7,622754124907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,7,622754216007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,7,622754216107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,7,622754733107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,7,622754732907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,7,622754733007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,04-Feb-2026,6227547330,8,622754733008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,04-Mar-2026,6227547329,8,622754732908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,11-Mar-2026,6227547331,8,622754733108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,8,622754216108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,8,622754216008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,30-Jan-2026,6227541249,8,622754124908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,04-Feb-2026,6227767267,8,622776726708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,8,622779740608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,31-Jan-2026,6227775505,8,622777550508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,8,622779740708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,8,622779740808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,10,622779740810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,10,622779740710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,10,622777550510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,10,622779740610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,10,622776726710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,10,622754124910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,10,622754216010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,10,622754216110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,10,622754733010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,10,622754732910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,10,622754733110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,9,622754733109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,9,622754732909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,9,622754733009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,9,622754216109,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,9,622754216009,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,9,622754124909,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,9,622776726709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,9,622779740609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,9,622777550509,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,9,622779740809,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,9,622779740709,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,9,622535104409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,1,622754733601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,2,622754733602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,4,622754733604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,6,622754733606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,7,622754733607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,15-Apr-2026,6227547336,8,622754733608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,3,622754733603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,5,622754733605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,9,622754733609,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,1,622754733701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,1,622754733801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,1,622754125601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,1,622754125801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,1,622754125701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,2,622754125702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,2,622710690502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,2,622710690602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,4,622710690604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,4,622710690504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,4,622754125704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,5,622754125605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,5,622754125705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,5,622754125805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,5,622754733805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,5,622754733705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227547338,3,622754733803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,15-Apr-2026,6227547337,3,622754733703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,3,622754125803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227541256,3,622754125603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,21-Jan-2026,6227541257,3,622754125703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,7,622754125707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,7,622754125607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,7,622754125807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,7,622754733707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,7,622754733807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,8,622754125708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,8,622710690508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,8,622710690608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,10,622754733610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,6,622754733706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,6,622754733806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,6,622754125706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,6,622754125806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,6,622754125606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,9,622754125609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,9,622754125709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,9,622754125809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,9,622754733709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,9,622754733809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,4,622668695304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,6,622668695306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,8,622668695308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,4,622656089104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,6,622656089106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,8,622656089108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,2,622656088802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,2,622776846002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,2,622776845802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,2,622776845902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,2,622823429702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,2,622823203702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,2,622823429802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,2,622823430002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,2,622860565202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,2,622860565302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,2,622754217002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,2,622754217302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,2,622754217102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,2,622754217202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,2,622752024502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,2,622749838002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,2,622752024202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,2,622752024302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,2,622726183602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,2,622749837902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,2,622675255502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,1,622675255501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,1,622749837901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,1,622749838001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,1,622726183601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,1,622752024201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,1,622752024301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,1,622752024501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,1,622754217201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,1,622754217301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,1,622754217101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,1,622754217001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,1,622860565201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,1,622860565301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,1,622823430001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,1,622823429701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,1,622823429801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,1,622823203701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,1,622776846001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,1,622776845801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,1,622776845901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,1,622656088801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,3,622656088803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,3,622776845903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,3,622776846003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,3,622776845803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,3,622823203703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,3,622823429703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,3,622823430003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,3,622823429803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,3,622860565203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,3,622860565303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,3,622754217003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,3,622754217303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,3,622754217203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,3,622754217103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,3,622752024503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,3,622752024303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,3,622752024203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,3,622726183603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,3,622749838003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,3,622749837903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,3,622675255503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,4,622675255504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,4,622678085504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,4,622678085704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,4,622678085604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,4,622726183604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,4,622749837904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,4,622749838004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,4,622752024304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,4,622752024504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,4,622717890804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,4,622717890904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,4,622717891004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,4,622717891104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,4,622754217004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,4,622754217104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,4,622754217204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,4,622754217304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,4,622752024204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,4,622860565204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,4,622823430004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,4,622860565304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,4,622823429804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,4,622823429704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,4,622823203704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,4,622776845804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,4,622776845904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,4,622776846004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,4,622656088804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,4,622535112604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,4,622535109304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,6,622535109306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,6,622535112606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,6,622656088806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,6,622776845906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,6,622776845806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,6,622776846006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,6,622823203706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,6,622823429706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,6,622823429806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,6,622823430006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,6,622860565206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,6,622860565306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,6,622754217306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,6,622754217206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,6,622754217106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,6,622754217006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,6,622717891106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,6,622717890906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,6,622717891206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,6,622717891006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,6,622717890806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,6,622752024506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,6,622752024306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,6,622752024206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,6,622749837906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,6,622726183606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,6,622749838006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,6,622678085606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,6,622675255506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,6,622678085706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,6,622678085506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,7,622675255507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,7,622749838007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,7,622749837907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,7,622726183607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,7,622752024307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,7,622752024507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,7,622752024207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,7,622754217007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,7,622754217107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,7,622754217207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,7,622754217307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,7,622860565307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,7,622860565207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,7,622823430007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,7,622823429807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,7,622823203707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,7,622823429707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,7,622776845807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,7,622776845907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,7,622776846007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,7,622656088807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,8,622656088808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,8,622535112608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,8,622535109308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,8,622776846008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,8,622776845908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,8,622776845808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,8,622823429708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,8,622823203708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,8,622823430008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,8,622823429808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,8,622860565308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,8,622860565208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,8,622754217308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,8,622754217208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,8,622754217108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,8,622754217008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,8,622752024508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,8,622749837908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,8,622752024208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,8,622752024308,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,8,622726183608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,8,622749838008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,8,622717890808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,8,622717891108,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,8,622717891208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,8,622717890908,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,8,622717891008,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,8,622675255508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,8,622678085508,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,8,622678085708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,8,622678085608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,5,622749837905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,5,622726183605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,5,622752024205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,5,622749838005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,5,622752024305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,5,622752024505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,5,622754217005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,5,622754217105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,5,622754217205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,5,622754217305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,27-May-2026,6228605653,5,622860565305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,27-May-2026,6228605652,5,622860565205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,5,622823429805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,5,622823430005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,02-Apr-2026,6228232037,5,622823203705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,06-May-2026,6228234297,5,622823429705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,20-May-2026,6227768458,5,622776845805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,18-Mar-2026,6227768459,5,622776845905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,08-Apr-2026,6227768460,5,622776846005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,9,622776845809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,9,622776845909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,9,622776846009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,9,622823203709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,9,622823430009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,9,622823429709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,9,622823429809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,9,622860565209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,9,622860565309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,9,622656088809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,9,622754217309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,9,622754217209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,9,622754217109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,9,622754217009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,9,622752024509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,9,622752024309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,9,622752024209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,9,622749838009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,9,622749837909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,9,622726183609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,9,622675255509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,1,622678574001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,1,622678573901,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,1,622754218201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,2,622754218202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,2,622678574002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,2,622678573902,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,3,622678573903,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,3,622678574003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,3,622754218203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,4,622754218204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,4,622678574004,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,4,622693560604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,4,622678573904,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,6,622678573906,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,6,622678574006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,6,622754218206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,8,622754218208,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,8,622678573908,"Serum, SST",Not Received,Ambient,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,7,622678574007,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,7,622678573907,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,7,622693560607,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,7,622754218207,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,5,622754218205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,5,622693560605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,5,622678574005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,5,622678573905,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,10,622754218210,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,9,622754218209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,9,622678573909,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,9,622693560609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,9,622678574009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,4,622754125604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,4,622754125804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,4,622754733804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,4,622754733704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,10,622754125810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,10,622754733710,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,10,622754125610,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,10,622754733810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,8,622754733808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,8,622754733708,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,8,622754125808,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,8,622754125608,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,2,622754125802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,2,622754125602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,2,622754733802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,2,622754733702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,2,622754126102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,2,622675255402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,2,622726183502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,2,622811446002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,2,622656088702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,2,622631362502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,4,622631362504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,4,622656088704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,4,622811446004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,4,622726183504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,4,622675255404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,4,622754126104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,8,622726183508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,8,622675255408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,8,622754126108,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,8,622631362508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,8,622656088708,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,4,622668695404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,4,622754126404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,2,622754126402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,2,622668695402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,9,622668695409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,9,622754126409,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,8,622754126408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,8,622668695408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,8,622680496208,"Red Cells, Clot",Not Received,,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,6,622680496206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,10,622680496210,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,4,622680496204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,10,622754126410,"Serum, SST",Cancelled,Ambient,,TSH,,,,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,10,622668695410,"Serum, SST",Cancelled,Ambient,,TSH,,,,, diff --git a/Covance_MDD3003/Source/Zpracovano/2026-05-29_100908 sponsor-study-35472-samples-allSamples.csv b/Covance_MDD3003/Source/Zpracovano/2026-05-29_100908 sponsor-study-35472-samples-allSamples.csv new file mode 100644 index 0000000..94fee19 --- /dev/null +++ b/Covance_MDD3003/Source/Zpracovano/2026-05-29_100908 sponsor-study-35472-samples-allSamples.csv @@ -0,0 +1,1189 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,1,622535097101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,2,622535097102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,3,622535097103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,4,622535097104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,5,622535097105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,6,622535097106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,7,622535097107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,12-Aug-2025,6225350971,8,622535097108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,9,622535097109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,10,622535097110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,1,622535097201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,3,622535097203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,4,622535097204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,2,622535097202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,5,622535097205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,6,622535097206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,7,622535097207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,24-Sep-2025,6225350972,8,622535097208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,9,622535097209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,10,622535097210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,1,622535097501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,2,622535097502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,3,622535097503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,5,622535097505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,6,622535097506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,4,622535097504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,7,622535097507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,12-Nov-2025,6225350975,8,622535097508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,9,622535097509,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,10,622535097510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,1,622535097701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,2,622535097702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,3,622535097703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,4,622535097704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,5,622535097705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,6,622535097706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,7,622535097707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,15-Oct-2025,6225350977,8,622535097708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,9,622535097709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,10,622535097710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,1,622535098101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,2,622535098102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,09-Sep-2025,6225350981,3,622535098103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,4,622535098104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,5,622535098105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,6,622535098106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,2,622535098202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,12-Nov-2025,6225350982,3,622535098203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,1,622535098201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,7,622535098107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,4,622535098204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,5,622535098205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,6,622535098206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,7,622535098207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,1,622535098401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,2,622535098402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,22-Oct-2025,6225350984,3,622535098403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,4,622535098404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,5,622535098405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,6,622535098406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,7,622535098407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,5,622535098805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,6,622535098806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,7,622535098807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,8,622535098808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,1,622535098801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,9,622535098809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,2,622535098802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,22-Oct-2025,6225350988,3,622535098803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,4,622535098804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,1,622535100201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,2,622535100202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,3,622535100203,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,4,622535100204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,5,622535100205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,21-Aug-2025,6225351002,6,622535100206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,7,622535100207,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,8,622535100208,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,9,622535100209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,10,622535100210,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,1,622535100401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,2,622535100402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,3,622535100403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,4,622535100404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,5,622535100405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,6,622535100406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,7,622535100407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,8,622535100408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,9,622535100409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,10,622535100410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,2,622535100602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,1,622535100601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,3,622535100603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,4,622535100604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,5,622535100605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,6,622535100606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,7,622535100607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,8,622535100608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,9,622535100609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,10,622535100610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,1,622535103601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,3,622535103603,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,4,622535103604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,2,622535103602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,5,622535103605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,7,622535103607,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,8,622535103608,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,6,622535103606,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,2,622535103702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,9,622535103609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,3,622535103703,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,10,622535103610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,1,622535103701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,6,622535103706,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,9,622535103709,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,8,622535103708,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,10,622535103710,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,7,622535103707,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,4,622535103704,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,5,622535103705,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,2,622535104002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,1,622535104001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,5,622535104005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,4,622535104004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,6,622535104006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,8,622535104008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,9,622535104009,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,3,622535104003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,7,622535104007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,3,622535104103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,5,622535104105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,6,622535104106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,4,622535104104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,7,622535104107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,8,622535104108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,1,622535104101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,10,622535104010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,2,622535104102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,9,622535104109,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,10,622535104110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,1,622535104201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,4,622535104204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,3,622535104203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,5,622535104205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,6,622535104206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,2,622535104202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,10,622535104210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,28-Aug-2025,6225351042,8,622535104208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,9,622535104209,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,7,622535104207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,1,622535104401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,2,622535104402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,3,622535104403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,4,622535104404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,5,622535104405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,6,622535104406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,7,622535104407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,9,622535104409,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,10,622535104410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,1,622535104501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,2,622535104502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,3,622535104503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,8,622535104408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,4,622535104504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,5,622535104505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,7,622535104507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,8,622535104508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,6,622535104506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,9,622535104509,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,10,622535104510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,1,622535104601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,3,622535104603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,4,622535104604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,5,622535104605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,6,622535104606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,8,622535104608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,2,622535104602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,9,622535104609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,10,622535104610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,7,622535104607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,2,622535104702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,3,622535104703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,4,622535104704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,5,622535104705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,6,622535104706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,8,622535104708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,1,622535104701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,7,622535104707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,9,622535104709,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,10,622535104710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,1,622535104901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,2,622535104902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,3,622535104903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,4,622535104904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,5,622535104905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,6,622535104906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,7,622535104907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,1,622535105001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,2,622535105002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,4,622535105004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,5,622535105005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,6,622535105006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,3,622535105003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,1,622535105101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,2,622535105102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,28-Aug-2025,6225351051,3,622535105103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,7,622535105007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,4,622535105104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,6,622535105106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,5,622535105105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,7,622535105107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,3,622535105203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,5,622535105205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,6,622535105206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,2,622535105202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,4,622535105204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,1,622535105201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,7,622535105207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,1,622535105601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,2,622535105602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,3,622535105603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,4,622535105604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,5,622535105605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,6,622535105606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,7,622535105607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,8,622535105608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,9,622535105609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,1,622535105701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,2,622535105702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,3,622535105703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,4,622535105704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,5,622535105705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,6,622535105706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,7,622535105707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,8,622535105708,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,9,622535105709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,1,622535106601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,3,622535106603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,4,622535106604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,7,622535106607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,8,622535106608,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,9,622535106609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,6,622535106606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,5,622535106605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,2,622535106602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,3,622535107003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,09-Sep-2025,6225351070,4,622535107004,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,2,622535107002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,5,622535107005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,6,622535107006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,1,622535107001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,9,622535107009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,8,622535107008,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,7,622535107007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,10,622535107010,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,2,622535107202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,3,622535107203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,4,622535107204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,5,622535107205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,6,622535107206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,7,622535107207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,1,622535107201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,10,622535107210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,9,622535107209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,8,622535107208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,2,622535107402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,3,622535107403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,4,622535107404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,1,622535107401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,7,622535107407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,10,622535107410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,9,622535107409,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,6,622535107406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,5,622535107405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,2,622535107602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,1,622535107601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,8,622535107408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,3,622535107603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,5,622535107605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,6,622535107606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,4,622535107604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,7,622535107607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,9,622535107609,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,10,622535107610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,07-Aug-2025,6225351076,8,622535107608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,3,622535107703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,1,622535107701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,4,622535107704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,5,622535107705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,6,622535107706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,7,622535107707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,8,622535107708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,9,622535107709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,10,622535107710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,2,622535107702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,5,622535107805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,6,622535107806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,7,622535107807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,8,622535107808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,9,622535107809,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,4,622535107804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,3,622535107803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,2,622535107802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,1,622535107801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,10,622535107810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,1,622535108001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,2,622535108002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,7,622535108007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,06-Nov-2025,6225351080,8,622535108008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,9,622535108009,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,3,622535108003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,10,622535108010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,1,622535108101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,3,622535108103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,4,622535108004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,4,622535108104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,2,622535108102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,5,622535108105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,5,622535108005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,6,622535108006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,8,622535108108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,10,622535108110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,9,622535108109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,2,622535108202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,7,622535108107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,3,622535108203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,4,622535108204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,6,622535108106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,5,622535108205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,6,622535108206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,1,622535108301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,2,622535108302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,3,622535108303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,4,622535108304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,5,622535108305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,1,622535108201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,6,622535108306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,7,622535108207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,7,622535108307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,1,622535108401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,4,622535108404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,3,622535108403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,5,622535108405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,2,622535108402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,7,622535108407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,6,622535108406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,2,622535109302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,1,622535109301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,3,622535109303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,5,622535109305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,4,622535109304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,6,622535109306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,7,622535109307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,8,622535109308,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,9,622535109309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,1,622535109401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,3,622535109403,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,2,622535109402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,4,622535109404,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,5,622535109405,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,6,622535109406,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,7,622535109407,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,8,622535109408,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,1,622535109501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,2,622535109502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,3,622535109503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,5,622535109505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,7,622535109507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,8,622535109508,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,4,622535109504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,6,622535109506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,9,622535109409,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,9,622535109509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,1,622535110601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,2,622535110602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,4,622535110604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,5,622535110605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,3,622535110603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,6,622535110606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,7,622535110607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,08-Aug-2025,6225351106,8,622535110608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,9,622535110609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,10,622535110610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,1,622535110901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,4,622535110904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,5,622535110905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,6,622535110906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,7,622535110907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,05-Sep-2025,6225351109,8,622535110908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,2,622535110902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,9,622535110909,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,10,622535110910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,1,622535111001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,2,622535111002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,3,622535111003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,4,622535111004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,5,622535111005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,6,622535111006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,7,622535111007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,3,622535110903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,9,622535111009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351110,8,622535111008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,10,622535111010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,1,622535111101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,2,622535111102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,3,622535111103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,4,622535111104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,5,622535111105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,6,622535111106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351111,8,622535111108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,9,622535111109,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,7,622535111107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,10,622535111110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,1,622535112001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,2,622535112002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,24-Oct-2025,6225351120,3,622535112003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,4,622535112004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,5,622535112005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,6,622535112006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,7,622535112007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,2,622535112602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,1,622535112601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,3,622535112603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,4,622535112604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,10-Dec-2025,6225351126,5,622535112605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,6,622535112606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,8,622535112608,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,7,622535112607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,9,622535112609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,2,622631362502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,1,622631362501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,3,622631362503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,5,622631362505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,4,622631362504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,6,622631362506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,7,622631362507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,2,622655064602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,1,622655064601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,7,622655064607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,5,622655064605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,4,622655064604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,6,622655064606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,3,622655064603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,4,622655169704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,5,622655169705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,1,622655169701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,6,622655169706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,7,622655169707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,1,622655169801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,3,622655169703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,4,622655169804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,2,622655169702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,2,622655169802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,6,622655169806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,3,622655169803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,5,622655169805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,7,622655169807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,4,622656088704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,20-May-2026,6226560887,3,622656088703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,2,622656088702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,1,622656088701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,5,622656088705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,6,622656088706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,1,622656088801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,7,622656088707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,3,622656088803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,7,622656088807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,9,622656088809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226560888,5,622656088805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,4,622656088804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,8,622656088808,"Red Cells, Clot",Not Received,,,TSH,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,2,622656088802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,6,622656088806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,2,622656089102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,3,622656089103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,1,622656089101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,4,622656089104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,6,622656089106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,8,622656089108,"Red Cells, Clot",Not Received,,,TSH,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,20-May-2026,6226560891,5,622656089105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,14:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,7,622656089107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,9,622656089109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,17-Feb-2026,6226561517,3,622656151703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,4,622656151704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,5,622656151705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,2,622656151702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,1,622656151701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,6,622656151706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,7,622656151707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,1,622668695201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,2,622668695202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,3,622668695203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,4,622668695204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,5,622668695205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,6,622668695206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,7,622668695207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,1,622668695301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,2,622668695302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,3,622668695303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,4,622668695304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,5,622668695305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,6,622668695306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,7,622668695407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,8,622668695308,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,9,622668695309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,7,622668695307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,1,622668695401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,3,622668695403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,4,622668695404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,5,622668695405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,6,622668695406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,2,622668695402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,6,622675255406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,2,622675255502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,5,622675255405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,3,622675255503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,4,622675255404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,7,622675255407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,4,622675255504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226752555,5,622675255505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,2,622675255402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,3,622675255403,"Plasma, EDTA",Received,Frozen,Default Return Ambient,INSULIN,FROZEN,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,1,622675255401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,1,622675255501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,7,622675255507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,8,622675255508,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,9,622675255509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,6,622675255506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,1,622678085301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,5,622678085305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,2,622678085302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,3,622678085303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,4,622678085304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,8,622678085308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,9,622678085309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,6,622678085306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,7,622678085307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,1,622678085501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,2,622678085502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,4,622678085504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,5,622678085505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,6,622678085506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,7,622678085507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,8,622678085508,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,9,622678085509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,3,622678085503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,1,622678085601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,2,622678085602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,3,622678085603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,4,622678085604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,6,622678085606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,7,622678085607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,8,622678085608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,9,622678085609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,3,622678085703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,6,622678085706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,5,622678085705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,7,622678085707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,8,622678085708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,9,622678085709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,1,622678085701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,4,622678085704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,2,622678085702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,5,622678085605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,3,622678573903,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,2,622678573902,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,4,622678573904,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,7,622678573907,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,9,622678573909,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,5,622678573905,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,6,622678573906,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,8,622678573908,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,1,622678573901,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,19-Feb-2026,6226785739,10,622678573910,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,1,622678574001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,7,622678574007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,5,622678574005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,8,622678574008,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,2,622678574002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,6,622678574006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,3,622678574003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,4,622678574004,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,9,622678574009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,10,622678574010,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,2,622680496102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,4,622680496104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,3,622680496103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,5,622680496205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,7,622680496207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,9,622680496209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,6,622680496106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,5,622680496105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,3,622680496203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,1,622680496101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,4,622680496204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,8,622680496208,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,7,622680496107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,6,622680496206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,2,622680496202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,1,622680496201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,2,622693560602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,4,622693560604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,3,622693560603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,5,622693560605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,1,622693560601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,7,622693560607,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,16-Dec-2025,6226935606,6,622693560606,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,8,622693560608,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,9,622693560609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,1,622697694301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,2,622697694302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,31-Jan-2026,6226976943,3,622697694303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,4,622697694304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,6,622697694306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,7,622697694307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,5,622697694305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,4,622699131104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,5,622699131105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,6,622699131106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,7,622699131107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,3,622699131103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,1,622699131101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,2,622699131102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,1,622704330201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,4,622704330204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,5,622704330205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,19-Nov-2025,6227043302,3,622704330203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,2,622704330202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,6,622704330206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,7,622704330207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,1,622707241901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,2,622707241902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,4,622707241904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,6,622707241906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,3,622707241903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,7,622707241907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,5,622707241905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,2,622710690502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,1,622710690501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,03-Dec-2025,6227106905,3,622710690503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,4,622710690504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,6,622710690506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,5,622710690505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,7,622710690507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,8,622710690508,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,9,622710690509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,1,622710690601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,2,622710690602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,23-Dec-2025,6227106906,3,622710690603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,4,622710690604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,5,622710690605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,6,622710690606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,9,622710690609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,7,622710690607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,8,622710690608,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,6,622714456006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,7,622714456007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,1,622714456001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,2,622714456102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,5,622714456005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,1,622714456101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,4,622714456104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,3,622714456103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,5,622714456105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,3,622714456003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,6,622714456106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,4,622714456004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,2,622714456002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,1,622714456201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,5,622714456205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,7,622714456107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,7,622714456207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,4,622714456204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,2,622714456202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,16-Dec-2025,6227144562,3,622714456203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:13,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,6,622714456206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,7,622717890807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,9,622717890809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,3,622717890903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,6,622717890806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,4,622717890904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,2,622717890802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,1,622717890901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,8,622717890808,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,1,622717890801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,2,622717890902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,04-Feb-2026,6227178909,5,622717890905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,4,622717890804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,3,622717890803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,6,622717890906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,8,622717890908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,9,622717890909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,7,622717890907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,1,622717891001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,3,622717891003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,4,622717891004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,2,622717891002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,20-May-2026,6227178910,5,622717891005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178908,5,622717890805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,8,622717891008,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,9,622717891009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,2,622717891102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,7,622717891007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,1,622717891101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,4,622717891104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,11-Mar-2026,6227178911,5,622717891105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,6,622717891106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,7,622717891107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,9,622717891109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,6,622717891006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,3,622717891103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,1,622717891201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,8,622717891108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,2,622717891202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,3,622717891203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178912,5,622717891205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,4,622717891204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,7,622717891207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,8,622717891208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,6,622717891206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,9,622717891209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,1,622726123001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,2,622726123002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,4,622726123004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,5,622726123005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,10-Dec-2025,6227261230,3,622726123003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,6,622726123006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,7,622726123007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,1,622726183501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,2,622726183502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,21-May-2026,6227261835,3,622726183503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,4,622726183504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,5,622726183505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,6,622726183506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,7,622726183507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,1,622726183601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,2,622726183602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,3,622726183603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,4,622726183604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,5,622726183605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,6,622726183606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,7,622726183607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,8,622726183608,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,9,622726183609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,3,622749837903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,1,622749837901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,2,622749837902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,8,622749838008,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,7,622749838007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,7,622749837907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,9,622749838009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,9,622749837909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,1,622749838001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,6,622749838006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,3,622749838003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,5,622749837905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,2,622749838002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,5,622749838005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,4,622749837904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,4,622749838004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,8,622749837908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,6,622749837906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,9,622752024209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,3,622752024203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,7,622752024307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,5,622752024305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,4,622752024204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,1,622752024201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,3,622752024303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,6,622752024306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,1,622752024301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,4,622752024304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,8,622752024308,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,2,622752024202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,6,622752024206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,5,622752024205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,2,622752024302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,8,622752024208,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,7,622752024207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,9,622752024309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,2,622752024502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,3,622752024503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,8,622752024508,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,1,622752024501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,9,622752024509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,4,622752024504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,5,622752024505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,6,622752024506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,7,622752024507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,1,622754124901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,2,622754124902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,3,622754124903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,6,622754124906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,4,622754124904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,7,622754124907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,5,622754124905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,1,622754125101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,2,622754125102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,10,622754124910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,30-Jan-2026,6227541249,8,622754124908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,9,622754124909,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,6,622754125206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,1,622754125201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,7,622754125107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,25-Feb-2026,6227541252,3,622754125203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,4,622754125104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,2,622754125202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,4,622754125204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,6,622754125106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,5,622754125205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,7,622754125207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,5,622754125105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,1,622754125601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,5,622754125605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,2,622754125602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,4,622754125604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,7,622754125607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227541256,3,622754125603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,3,622754125103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,6,622754125606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,9,622754125609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,21-Jan-2026,6227541257,3,622754125703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,8,622754125608,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,8,622754125708,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,1,622754125701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,5,622754125705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,6,622754125706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,4,622754125704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,7,622754125707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,9,622754125709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,2,622754125802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,4,622754125904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,2,622754125702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,18-Feb-2026,6227541259,3,622754125903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,9,622754125809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,6,622754125906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,7,622754125907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,1,622754125801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,4,622754125804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,6,622754125806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,1,622754125901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,5,622754125805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,7,622754125807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,3,622754125803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,5,622754125905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,1,622754126001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,5,622754126005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,2,622754126002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,21-Jan-2026,6227541260,3,622754126003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:40,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,8,622754125808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,2,622754125902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,1,622754126101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,4,622754126004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,6,622754126006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,2,622754126102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,4,622754126104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,7,622754126007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,5,622754126105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,6,622754126106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,20-May-2026,6227541261,3,622754126103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,7,622754126107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,2,622754126402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,1,622754126401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,4,622754126404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,3,622754126403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,6,622754126406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,5,622754126405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,7,622754126407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,6,622754216006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,7,622754216007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,5,622754216005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,9,622754216009,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,2,622754216002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,10,622754216010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,1,622754216101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,8,622754216008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,1,622754216001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,4,622754216104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,2,622754216102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,8,622754216108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,3,622754216103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,6,622754216106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,10,622754216110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,4,622754216004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,3,622754216003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,9,622754216109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,7,622754216107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,5,622754216105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,5,622754217005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,1,622754217001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,7,622754217007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,3,622754217003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,8,622754217008,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,2,622754217002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,6,622754217006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,1,622754217101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,9,622754217009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,3,622754217103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,4,622754217004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,5,622754217105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,2,622754217102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,6,622754217106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,8,622754217108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,7,622754217107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,9,622754217109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,2,622754217202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,4,622754217104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,3,622754217203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,1,622754217201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,5,622754217205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,6,622754217206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,9,622754217209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,7,622754217207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,4,622754217204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,8,622754217208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,1,622754217301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,5,622754217305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,6,622754217306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,7,622754217307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,8,622754217308,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,2,622754217302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,9,622754217309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,3,622754217303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,4,622754217304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,2,622754218202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,3,622754218203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,4,622754218204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,5,622754218205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,8,622754218208,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,1,622754218201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,7,622754218207,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,9,622754218209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,6,622754218206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,10,622754218210,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,10,622693560610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,11,622693560611,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,2,622754732902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,3,622754732903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,4,622754732904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,6,622754732906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,7,622754732907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,5,622754732905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,04-Mar-2026,6227547329,8,622754732908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,10,622754732910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,9,622754732909,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,2,622754733002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,1,622754733001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,3,622754733003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,4,622754733004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,5,622754733005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,6,622754733006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,7,622754733007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,04-Feb-2026,6227547330,8,622754733008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:40,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,9,622754733009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,10,622754733010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,2,622754733102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,1,622754732901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,3,622754733103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,4,622754733104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,5,622754733105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,6,622754733106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,7,622754733107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,11-Mar-2026,6227547331,8,622754733108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,1,622754733201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,2,622754733202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,04-Mar-2026,6227547332,3,622754733203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,4,622754733204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,5,622754733205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,6,622754733206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,7,622754733207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,1,622754733101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,1,622754733301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,2,622754733302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,3,622754733303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,4,622754733304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,6,622754733306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,5,622754733305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,7,622754733307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,9,622754733109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,10,622754733110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,1,622754733601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,2,622754733602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,3,622754733603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,4,622754733604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,5,622754733605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,6,622754733606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,7,622754733607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,15-Apr-2026,6227547336,8,622754733608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,9,622754733609,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,2,622754733702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,15-Apr-2026,6227547337,3,622754733703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,4,622754733704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,6,622754733706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,5,622754733705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,9,622754733709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,2,622754733802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227547338,3,622754733803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,1,622754733801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,4,622754733804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,7,622754733807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,5,622754733805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,6,622754733806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,8,622754733708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,7,622754733707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,8,622754733808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,9,622754733809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,1,622754733701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,10,622754733610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,3,622776726703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,4,622776726704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,1,622776726701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,2,622776726702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,7,622776726707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,5,622776726705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,6,622776726706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,9,622776726709,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,04-Feb-2026,6227767267,8,622776726708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,10,622776726710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,2,622776845802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,4,622776845804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,1,622776845801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,3,622776845803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,20-May-2026,6227768458,5,622776845805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,6,622776845806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,8,622776845808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,7,622776845807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,1,622776845901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,3,622776845903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,4,622776845904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,9,622776845809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,4,622776846004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,6,622776845906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,08-Apr-2026,6227768460,5,622776846005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,2,622776846002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,7,622776845907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,3,622776846003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,8,622776845908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,18-Mar-2026,6227768459,5,622776845905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,9,622776845909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,7,622776846007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,8,622776846008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,1,622776846001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,9,622776846009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,2,622776845902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,6,622776846006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,1,622777550501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,5,622777550505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,4,622777550504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,6,622777550506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,7,622777550507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,2,622777550502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,3,622777550503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,9,622777550509,"Red Cells, Clot",Not Received,,,TSH,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,2,622777550802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,1,622777550701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,5,622777550805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775507,3,622777550703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:30,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,4,622777550704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775508,3,622777550803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:10,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,6,622777550706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,7,622777550707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,5,622777550705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,7,622777550807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,6,622777550806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,1,622777550801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,2,622777550702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,10,622777550510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,4,622777550804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,31-Jan-2026,6227775505,8,622777550508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:50,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,3,622779740603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,6,622779740606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,5,622779740605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,4,622779740604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,8,622779740608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,9,622779740609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,7,622779740607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,2,622779740602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,1,622779740601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,1,622779740701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,3,622779740703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,4,622779740704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,10,622779740610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,5,622779740705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,6,622779740706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,7,622779740707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,9,622779740709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,5,622779740805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,6,622779740806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,4,622779740804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,10,622779740710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,2,622779740702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,8,622779740708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,1,622779740801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,8,622779740808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,2,622779740802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,3,622779740803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,7,622779740807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,9,622779740809,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,10,622779740810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,3,622784472503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,6,622784472506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,5,622784472505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,4,622784472504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,7,622784472507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,1,622784472501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,2,622784472502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,11,622777550511,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,1,622811446001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,4,622811446004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,5,622811446005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,6,622811446006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,2,622811446002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,3,622811446003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,7,622811446007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,10,622680496210,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,8,622811446008,"Urine, no preservative",Not Received,Ambient,,,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,02-Apr-2026,6228232037,5,622823203705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,6,622823203706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,8,622823203708,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,9,622823203709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,7,622823203707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,1,622823203701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,3,622823203703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,4,622823203704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,2,622823203702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,1,622823429701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,2,622823429702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,3,622823429703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,7,622823429707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,8,622823429708,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,1,622823429801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,06-May-2026,6228234297,5,622823429705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,6,622823429706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,9,622823429709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,6,622823429806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,5,622823429805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,2,622823429802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,9,622823429809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,4,622823429804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,4,622823429704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,8,622823429808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,3,622823429803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,5,622823430005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,7,622823429807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,2,622823430002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,1,622823430001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,3,622823430003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,6,622823430006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,9,622823430009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,8,622823430008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,4,622823430004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,7,622823430007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,10,622656088810,"Urine, no preservative",Not Received,Ambient,,,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,10,622675255510,"Urine, no preservative",Not Received,Ambient,,,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,8,622631362508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,10,622668695410,"Serum, SST",Cancelled,Ambient,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,9,622668695409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,8,622668695408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,10,622754126410,"Serum, SST",Cancelled,Ambient,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,8,622754126408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,9,622754126409,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,10,622754125810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,11,622754218211,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,10,622754733710,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,8,622675255408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,8,622656088708,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,8,622754126108,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,10,622754125610,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,10,622754733810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,2,622860565202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,4,622860565204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,27-May-2026,6228605653,5,622860565305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,1,622860565201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,9,622860565209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,1,622860565301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,3,622860565203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,8,622860565308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,9,622860565309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,8,622860565208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,6,622860565206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,6,622860565306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,7,622860565307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,2,622860565302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,7,622860565207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,4,622860565304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,27-May-2026,6228605652,5,622860565205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,3,622860565303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,8,622726183508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, diff --git a/Covance_MDD3003/Source/Zpracovano/2026-05-29_111722 sponsor-study-35472-samples-allSamples.csv b/Covance_MDD3003/Source/Zpracovano/2026-05-29_111722 sponsor-study-35472-samples-allSamples.csv new file mode 100644 index 0000000..94fee19 --- /dev/null +++ b/Covance_MDD3003/Source/Zpracovano/2026-05-29_111722 sponsor-study-35472-samples-allSamples.csv @@ -0,0 +1,1189 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,1,622535097101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,2,622535097102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,3,622535097103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,4,622535097104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,5,622535097105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,6,622535097106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,7,622535097107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,12-Aug-2025,6225350971,8,622535097108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,9,622535097109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,10,622535097110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,1,622535097201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,3,622535097203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,4,622535097204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,2,622535097202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,5,622535097205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,6,622535097206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,7,622535097207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,24-Sep-2025,6225350972,8,622535097208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,9,622535097209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,10,622535097210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,1,622535097501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,2,622535097502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,3,622535097503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,5,622535097505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,6,622535097506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,4,622535097504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,7,622535097507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,12-Nov-2025,6225350975,8,622535097508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,9,622535097509,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,10,622535097510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,1,622535097701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,2,622535097702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,3,622535097703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,4,622535097704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,5,622535097705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,6,622535097706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,7,622535097707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,15-Oct-2025,6225350977,8,622535097708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,9,622535097709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,10,622535097710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,1,622535098101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,2,622535098102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,09-Sep-2025,6225350981,3,622535098103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,4,622535098104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,5,622535098105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,6,622535098106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,2,622535098202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,12-Nov-2025,6225350982,3,622535098203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,1,622535098201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,7,622535098107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,4,622535098204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,5,622535098205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,6,622535098206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,7,622535098207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,1,622535098401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,2,622535098402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,22-Oct-2025,6225350984,3,622535098403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,4,622535098404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,5,622535098405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,6,622535098406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,7,622535098407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,5,622535098805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,6,622535098806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,7,622535098807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,8,622535098808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,1,622535098801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,9,622535098809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,2,622535098802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,22-Oct-2025,6225350988,3,622535098803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,4,622535098804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,1,622535100201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,2,622535100202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,3,622535100203,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,4,622535100204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,5,622535100205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,21-Aug-2025,6225351002,6,622535100206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,7,622535100207,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,8,622535100208,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,9,622535100209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,10,622535100210,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,1,622535100401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,2,622535100402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,3,622535100403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,4,622535100404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,5,622535100405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,6,622535100406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,7,622535100407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,8,622535100408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,9,622535100409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,10,622535100410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,2,622535100602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,1,622535100601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,3,622535100603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,4,622535100604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,5,622535100605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,6,622535100606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,7,622535100607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,8,622535100608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,9,622535100609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,10,622535100610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,1,622535103601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,3,622535103603,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,4,622535103604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,2,622535103602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,5,622535103605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,7,622535103607,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,8,622535103608,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,6,622535103606,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,2,622535103702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,9,622535103609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,3,622535103703,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,10,622535103610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,1,622535103701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,6,622535103706,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,9,622535103709,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,8,622535103708,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,10,622535103710,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,7,622535103707,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,4,622535103704,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,5,622535103705,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,2,622535104002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,1,622535104001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,5,622535104005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,4,622535104004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,6,622535104006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,8,622535104008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,9,622535104009,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,3,622535104003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,7,622535104007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,3,622535104103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,5,622535104105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,6,622535104106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,4,622535104104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,7,622535104107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,8,622535104108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,1,622535104101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,10,622535104010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,2,622535104102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,9,622535104109,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,10,622535104110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,1,622535104201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,4,622535104204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,3,622535104203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,5,622535104205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,6,622535104206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,2,622535104202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,10,622535104210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,28-Aug-2025,6225351042,8,622535104208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,9,622535104209,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,7,622535104207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,1,622535104401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,2,622535104402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,3,622535104403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,4,622535104404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,5,622535104405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,6,622535104406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,7,622535104407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,9,622535104409,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,10,622535104410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,1,622535104501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,2,622535104502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,3,622535104503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,8,622535104408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,4,622535104504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,5,622535104505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,7,622535104507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,8,622535104508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,6,622535104506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,9,622535104509,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,10,622535104510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,1,622535104601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,3,622535104603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,4,622535104604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,5,622535104605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,6,622535104606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,8,622535104608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,2,622535104602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,9,622535104609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,10,622535104610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,7,622535104607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,2,622535104702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,3,622535104703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,4,622535104704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,5,622535104705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,6,622535104706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,8,622535104708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,1,622535104701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,7,622535104707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,9,622535104709,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,10,622535104710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,1,622535104901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,2,622535104902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,3,622535104903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,4,622535104904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,5,622535104905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,6,622535104906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,7,622535104907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,1,622535105001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,2,622535105002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,4,622535105004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,5,622535105005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,6,622535105006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,3,622535105003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,1,622535105101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,2,622535105102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,28-Aug-2025,6225351051,3,622535105103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,7,622535105007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,4,622535105104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,6,622535105106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,5,622535105105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,7,622535105107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,3,622535105203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,5,622535105205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,6,622535105206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,2,622535105202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,4,622535105204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,1,622535105201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,7,622535105207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,1,622535105601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,2,622535105602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,3,622535105603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,4,622535105604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,5,622535105605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,6,622535105606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,7,622535105607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,8,622535105608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,9,622535105609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,1,622535105701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,2,622535105702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,3,622535105703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,4,622535105704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,5,622535105705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,6,622535105706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,7,622535105707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,8,622535105708,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,9,622535105709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,1,622535106601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,3,622535106603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,4,622535106604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,7,622535106607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,8,622535106608,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,9,622535106609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,6,622535106606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,5,622535106605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,2,622535106602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,3,622535107003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,09-Sep-2025,6225351070,4,622535107004,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,2,622535107002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,5,622535107005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,6,622535107006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,1,622535107001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,9,622535107009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,8,622535107008,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,7,622535107007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,10,622535107010,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,2,622535107202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,3,622535107203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,4,622535107204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,5,622535107205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,6,622535107206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,7,622535107207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,1,622535107201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,10,622535107210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,9,622535107209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,8,622535107208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,2,622535107402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,3,622535107403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,4,622535107404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,1,622535107401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,7,622535107407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,10,622535107410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,9,622535107409,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,6,622535107406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,5,622535107405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,2,622535107602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,1,622535107601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,8,622535107408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,3,622535107603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,5,622535107605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,6,622535107606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,4,622535107604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,7,622535107607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,9,622535107609,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,10,622535107610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,07-Aug-2025,6225351076,8,622535107608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,3,622535107703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,1,622535107701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,4,622535107704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,5,622535107705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,6,622535107706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,7,622535107707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,8,622535107708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,9,622535107709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,10,622535107710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,2,622535107702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,5,622535107805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,6,622535107806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,7,622535107807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,8,622535107808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,9,622535107809,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,4,622535107804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,3,622535107803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,2,622535107802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,1,622535107801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,10,622535107810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,1,622535108001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,2,622535108002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,7,622535108007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,06-Nov-2025,6225351080,8,622535108008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,9,622535108009,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,3,622535108003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,10,622535108010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,1,622535108101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,3,622535108103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,4,622535108004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,4,622535108104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,2,622535108102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,5,622535108105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,5,622535108005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,6,622535108006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,8,622535108108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,10,622535108110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,9,622535108109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,2,622535108202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,7,622535108107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,3,622535108203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,4,622535108204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,6,622535108106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,5,622535108205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,6,622535108206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,1,622535108301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,2,622535108302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,3,622535108303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,4,622535108304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,5,622535108305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,1,622535108201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,6,622535108306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,7,622535108207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,7,622535108307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,1,622535108401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,4,622535108404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,3,622535108403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,5,622535108405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,2,622535108402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,7,622535108407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,6,622535108406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,2,622535109302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,1,622535109301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,3,622535109303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,5,622535109305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,4,622535109304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,6,622535109306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,7,622535109307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,8,622535109308,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,9,622535109309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,1,622535109401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,3,622535109403,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,2,622535109402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,4,622535109404,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,5,622535109405,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,6,622535109406,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,7,622535109407,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,8,622535109408,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,1,622535109501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,2,622535109502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,3,622535109503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,5,622535109505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,7,622535109507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,8,622535109508,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,4,622535109504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,6,622535109506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,9,622535109409,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,9,622535109509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,1,622535110601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,2,622535110602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,4,622535110604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,5,622535110605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,3,622535110603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,6,622535110606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,7,622535110607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,08-Aug-2025,6225351106,8,622535110608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,9,622535110609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,10,622535110610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,1,622535110901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,4,622535110904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,5,622535110905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,6,622535110906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,7,622535110907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,05-Sep-2025,6225351109,8,622535110908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,2,622535110902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,9,622535110909,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,10,622535110910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,1,622535111001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,2,622535111002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,3,622535111003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,4,622535111004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,5,622535111005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,6,622535111006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,7,622535111007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,3,622535110903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,9,622535111009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351110,8,622535111008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,10,622535111010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,1,622535111101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,2,622535111102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,3,622535111103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,4,622535111104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,5,622535111105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,6,622535111106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351111,8,622535111108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,9,622535111109,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,7,622535111107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,10,622535111110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,1,622535112001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,2,622535112002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,24-Oct-2025,6225351120,3,622535112003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,4,622535112004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,5,622535112005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,6,622535112006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,7,622535112007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,2,622535112602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,1,622535112601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,3,622535112603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,4,622535112604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,10-Dec-2025,6225351126,5,622535112605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,6,622535112606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,8,622535112608,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,7,622535112607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,9,622535112609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,2,622631362502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,1,622631362501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,3,622631362503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,5,622631362505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,4,622631362504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,6,622631362506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,7,622631362507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,2,622655064602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,1,622655064601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,7,622655064607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,5,622655064605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,4,622655064604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,6,622655064606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,3,622655064603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,4,622655169704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,5,622655169705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,1,622655169701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,6,622655169706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,7,622655169707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,1,622655169801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,3,622655169703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,4,622655169804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,2,622655169702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,2,622655169802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,6,622655169806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,3,622655169803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,5,622655169805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,7,622655169807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,4,622656088704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,20-May-2026,6226560887,3,622656088703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,2,622656088702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,1,622656088701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,5,622656088705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,6,622656088706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,1,622656088801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,7,622656088707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,3,622656088803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,7,622656088807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,9,622656088809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226560888,5,622656088805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,4,622656088804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,8,622656088808,"Red Cells, Clot",Not Received,,,TSH,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,2,622656088802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,6,622656088806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,2,622656089102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,3,622656089103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,1,622656089101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,4,622656089104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,6,622656089106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,8,622656089108,"Red Cells, Clot",Not Received,,,TSH,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,20-May-2026,6226560891,5,622656089105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,14:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,7,622656089107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,9,622656089109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,17-Feb-2026,6226561517,3,622656151703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,4,622656151704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,5,622656151705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,2,622656151702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,1,622656151701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,6,622656151706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,7,622656151707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,1,622668695201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,2,622668695202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,3,622668695203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,4,622668695204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,5,622668695205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,6,622668695206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,7,622668695207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,1,622668695301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,2,622668695302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,3,622668695303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,4,622668695304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,5,622668695305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,6,622668695306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,7,622668695407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,8,622668695308,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,9,622668695309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,7,622668695307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,1,622668695401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,3,622668695403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,4,622668695404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,5,622668695405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,6,622668695406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,2,622668695402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,6,622675255406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,2,622675255502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,5,622675255405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,3,622675255503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,4,622675255404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,7,622675255407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,4,622675255504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226752555,5,622675255505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,2,622675255402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,3,622675255403,"Plasma, EDTA",Received,Frozen,Default Return Ambient,INSULIN,FROZEN,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,1,622675255401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,1,622675255501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,7,622675255507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,8,622675255508,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,9,622675255509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,6,622675255506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,1,622678085301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,5,622678085305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,2,622678085302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,3,622678085303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,4,622678085304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,8,622678085308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,9,622678085309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,6,622678085306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,7,622678085307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,1,622678085501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,2,622678085502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,4,622678085504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,5,622678085505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,6,622678085506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,7,622678085507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,8,622678085508,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,9,622678085509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,3,622678085503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,1,622678085601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,2,622678085602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,3,622678085603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,4,622678085604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,6,622678085606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,7,622678085607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,8,622678085608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,9,622678085609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,3,622678085703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,6,622678085706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,5,622678085705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,7,622678085707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,8,622678085708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,9,622678085709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,1,622678085701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,4,622678085704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,2,622678085702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,5,622678085605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,3,622678573903,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,2,622678573902,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,4,622678573904,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,7,622678573907,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,9,622678573909,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,5,622678573905,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,6,622678573906,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,8,622678573908,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,1,622678573901,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,19-Feb-2026,6226785739,10,622678573910,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,1,622678574001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,7,622678574007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,5,622678574005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,8,622678574008,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,2,622678574002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,6,622678574006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,3,622678574003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,4,622678574004,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,9,622678574009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,10,622678574010,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,2,622680496102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,4,622680496104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,3,622680496103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,5,622680496205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,7,622680496207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,9,622680496209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,6,622680496106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,5,622680496105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,3,622680496203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,1,622680496101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,4,622680496204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,8,622680496208,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,7,622680496107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,6,622680496206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,2,622680496202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,1,622680496201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,2,622693560602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,4,622693560604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,3,622693560603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,5,622693560605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,1,622693560601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,7,622693560607,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,16-Dec-2025,6226935606,6,622693560606,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,8,622693560608,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,9,622693560609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,1,622697694301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,2,622697694302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,31-Jan-2026,6226976943,3,622697694303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,4,622697694304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,6,622697694306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,7,622697694307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,5,622697694305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,4,622699131104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,5,622699131105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,6,622699131106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,7,622699131107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,3,622699131103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,1,622699131101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,2,622699131102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,1,622704330201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,4,622704330204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,5,622704330205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,19-Nov-2025,6227043302,3,622704330203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,2,622704330202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,6,622704330206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,7,622704330207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,1,622707241901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,2,622707241902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,4,622707241904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,6,622707241906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,3,622707241903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,7,622707241907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,5,622707241905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,2,622710690502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,1,622710690501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,03-Dec-2025,6227106905,3,622710690503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,4,622710690504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,6,622710690506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,5,622710690505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,7,622710690507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,8,622710690508,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,9,622710690509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,1,622710690601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,2,622710690602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,23-Dec-2025,6227106906,3,622710690603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,4,622710690604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,5,622710690605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,6,622710690606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,9,622710690609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,7,622710690607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,8,622710690608,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,6,622714456006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,7,622714456007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,1,622714456001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,2,622714456102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,5,622714456005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,1,622714456101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,4,622714456104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,3,622714456103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,5,622714456105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,3,622714456003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,6,622714456106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,4,622714456004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,2,622714456002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,1,622714456201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,5,622714456205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,7,622714456107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,7,622714456207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,4,622714456204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,2,622714456202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,16-Dec-2025,6227144562,3,622714456203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:13,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,6,622714456206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,7,622717890807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,9,622717890809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,3,622717890903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,6,622717890806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,4,622717890904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,2,622717890802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,1,622717890901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,8,622717890808,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,1,622717890801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,2,622717890902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,04-Feb-2026,6227178909,5,622717890905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,4,622717890804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,3,622717890803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,6,622717890906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,8,622717890908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,9,622717890909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,7,622717890907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,1,622717891001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,3,622717891003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,4,622717891004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,2,622717891002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,20-May-2026,6227178910,5,622717891005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178908,5,622717890805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,8,622717891008,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,9,622717891009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,2,622717891102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,7,622717891007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,1,622717891101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,4,622717891104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,11-Mar-2026,6227178911,5,622717891105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,6,622717891106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,7,622717891107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,9,622717891109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,6,622717891006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,3,622717891103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,1,622717891201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,8,622717891108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,2,622717891202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,3,622717891203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178912,5,622717891205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,4,622717891204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,7,622717891207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,8,622717891208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,6,622717891206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,9,622717891209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,1,622726123001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,2,622726123002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,4,622726123004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,5,622726123005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,10-Dec-2025,6227261230,3,622726123003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,6,622726123006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,7,622726123007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,1,622726183501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,2,622726183502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,21-May-2026,6227261835,3,622726183503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,4,622726183504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,5,622726183505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,6,622726183506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,7,622726183507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,1,622726183601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,2,622726183602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,3,622726183603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,4,622726183604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,5,622726183605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,6,622726183606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,7,622726183607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,8,622726183608,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,9,622726183609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,3,622749837903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,1,622749837901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,2,622749837902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,8,622749838008,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,7,622749838007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,7,622749837907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,9,622749838009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,9,622749837909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,1,622749838001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,6,622749838006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,3,622749838003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,5,622749837905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,2,622749838002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,5,622749838005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,4,622749837904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,4,622749838004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,8,622749837908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,6,622749837906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,9,622752024209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,3,622752024203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,7,622752024307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,5,622752024305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,4,622752024204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,1,622752024201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,3,622752024303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,6,622752024306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,1,622752024301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,4,622752024304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,8,622752024308,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,2,622752024202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,6,622752024206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,5,622752024205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,2,622752024302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,8,622752024208,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,7,622752024207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,9,622752024309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,2,622752024502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,3,622752024503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,8,622752024508,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,1,622752024501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,9,622752024509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,4,622752024504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,5,622752024505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,6,622752024506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,7,622752024507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,1,622754124901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,2,622754124902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,3,622754124903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,6,622754124906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,4,622754124904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,7,622754124907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,5,622754124905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,1,622754125101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,2,622754125102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,10,622754124910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,30-Jan-2026,6227541249,8,622754124908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,9,622754124909,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,6,622754125206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,1,622754125201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,7,622754125107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,25-Feb-2026,6227541252,3,622754125203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,4,622754125104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,2,622754125202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,4,622754125204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,6,622754125106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,5,622754125205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,7,622754125207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,5,622754125105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,1,622754125601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,5,622754125605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,2,622754125602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,4,622754125604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,7,622754125607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227541256,3,622754125603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,3,622754125103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,6,622754125606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,9,622754125609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,21-Jan-2026,6227541257,3,622754125703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,8,622754125608,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,8,622754125708,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,1,622754125701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,5,622754125705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,6,622754125706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,4,622754125704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,7,622754125707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,9,622754125709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,2,622754125802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,4,622754125904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,2,622754125702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,18-Feb-2026,6227541259,3,622754125903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,9,622754125809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,6,622754125906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,7,622754125907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,1,622754125801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,4,622754125804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,6,622754125806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,1,622754125901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,5,622754125805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,7,622754125807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,3,622754125803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,5,622754125905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,1,622754126001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,5,622754126005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,2,622754126002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,21-Jan-2026,6227541260,3,622754126003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:40,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,8,622754125808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,2,622754125902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,1,622754126101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,4,622754126004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,6,622754126006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,2,622754126102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,4,622754126104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,7,622754126007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,5,622754126105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,6,622754126106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,20-May-2026,6227541261,3,622754126103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,7,622754126107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,2,622754126402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,1,622754126401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,4,622754126404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,3,622754126403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,6,622754126406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,5,622754126405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,7,622754126407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,6,622754216006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,7,622754216007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,5,622754216005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,9,622754216009,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,2,622754216002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,10,622754216010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,1,622754216101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,8,622754216008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,1,622754216001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,4,622754216104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,2,622754216102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,8,622754216108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,3,622754216103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,6,622754216106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,10,622754216110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,4,622754216004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,3,622754216003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,9,622754216109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,7,622754216107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,5,622754216105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,5,622754217005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,1,622754217001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,7,622754217007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,3,622754217003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,8,622754217008,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,2,622754217002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,6,622754217006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,1,622754217101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,9,622754217009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,3,622754217103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,4,622754217004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,5,622754217105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,2,622754217102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,6,622754217106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,8,622754217108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,7,622754217107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,9,622754217109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,2,622754217202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,4,622754217104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,3,622754217203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,1,622754217201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,5,622754217205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,6,622754217206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,9,622754217209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,7,622754217207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,4,622754217204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,8,622754217208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,1,622754217301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,5,622754217305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,6,622754217306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,7,622754217307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,8,622754217308,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,2,622754217302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,9,622754217309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,3,622754217303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,4,622754217304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,2,622754218202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,3,622754218203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,4,622754218204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,5,622754218205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,8,622754218208,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,1,622754218201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,7,622754218207,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,9,622754218209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,6,622754218206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,10,622754218210,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,10,622693560610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,11,622693560611,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,2,622754732902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,3,622754732903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,4,622754732904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,6,622754732906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,7,622754732907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,5,622754732905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,04-Mar-2026,6227547329,8,622754732908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,10,622754732910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,9,622754732909,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,2,622754733002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,1,622754733001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,3,622754733003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,4,622754733004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,5,622754733005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,6,622754733006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,7,622754733007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,04-Feb-2026,6227547330,8,622754733008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:40,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,9,622754733009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,10,622754733010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,2,622754733102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,1,622754732901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,3,622754733103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,4,622754733104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,5,622754733105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,6,622754733106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,7,622754733107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,11-Mar-2026,6227547331,8,622754733108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,1,622754733201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,2,622754733202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,04-Mar-2026,6227547332,3,622754733203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,4,622754733204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,5,622754733205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,6,622754733206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,7,622754733207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,1,622754733101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,1,622754733301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,2,622754733302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,3,622754733303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,4,622754733304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,6,622754733306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,5,622754733305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,7,622754733307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,9,622754733109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,10,622754733110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,1,622754733601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,2,622754733602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,3,622754733603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,4,622754733604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,5,622754733605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,6,622754733606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,7,622754733607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,15-Apr-2026,6227547336,8,622754733608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,9,622754733609,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,2,622754733702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,15-Apr-2026,6227547337,3,622754733703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,4,622754733704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,6,622754733706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,5,622754733705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,9,622754733709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,2,622754733802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227547338,3,622754733803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,1,622754733801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,4,622754733804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,7,622754733807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,5,622754733805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,6,622754733806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,8,622754733708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,7,622754733707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,8,622754733808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,9,622754733809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,1,622754733701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,10,622754733610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,3,622776726703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,4,622776726704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,1,622776726701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,2,622776726702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,7,622776726707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,5,622776726705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,6,622776726706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,9,622776726709,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,04-Feb-2026,6227767267,8,622776726708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,10,622776726710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,2,622776845802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,4,622776845804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,1,622776845801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,3,622776845803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,20-May-2026,6227768458,5,622776845805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,6,622776845806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,8,622776845808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,7,622776845807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,1,622776845901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,3,622776845903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,4,622776845904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,9,622776845809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,4,622776846004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,6,622776845906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,08-Apr-2026,6227768460,5,622776846005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,2,622776846002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,7,622776845907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,3,622776846003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,8,622776845908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,18-Mar-2026,6227768459,5,622776845905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,9,622776845909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,7,622776846007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,8,622776846008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,1,622776846001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,9,622776846009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,2,622776845902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,6,622776846006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,1,622777550501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,5,622777550505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,4,622777550504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,6,622777550506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,7,622777550507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,2,622777550502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,3,622777550503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,9,622777550509,"Red Cells, Clot",Not Received,,,TSH,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,2,622777550802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,1,622777550701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,5,622777550805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775507,3,622777550703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:30,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,4,622777550704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775508,3,622777550803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:10,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,6,622777550706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,7,622777550707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,5,622777550705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,7,622777550807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,6,622777550806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,1,622777550801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,2,622777550702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,10,622777550510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,4,622777550804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,31-Jan-2026,6227775505,8,622777550508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:50,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,3,622779740603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,6,622779740606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,5,622779740605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,4,622779740604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,8,622779740608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,9,622779740609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,7,622779740607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,2,622779740602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,1,622779740601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,1,622779740701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,3,622779740703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,4,622779740704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,10,622779740610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,5,622779740705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,6,622779740706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,7,622779740707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,9,622779740709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,5,622779740805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,6,622779740806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,4,622779740804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,10,622779740710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,2,622779740702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,8,622779740708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,1,622779740801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,8,622779740808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,2,622779740802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,3,622779740803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,7,622779740807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,9,622779740809,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,10,622779740810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,3,622784472503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,6,622784472506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,5,622784472505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,4,622784472504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,7,622784472507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,1,622784472501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,2,622784472502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,11,622777550511,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,1,622811446001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,4,622811446004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,5,622811446005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,6,622811446006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,2,622811446002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,3,622811446003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,7,622811446007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,10,622680496210,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,8,622811446008,"Urine, no preservative",Not Received,Ambient,,,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,02-Apr-2026,6228232037,5,622823203705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,6,622823203706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,8,622823203708,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,9,622823203709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,7,622823203707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,1,622823203701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,3,622823203703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,4,622823203704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,2,622823203702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,1,622823429701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,2,622823429702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,3,622823429703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,7,622823429707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,8,622823429708,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,1,622823429801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,06-May-2026,6228234297,5,622823429705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,6,622823429706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,9,622823429709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,6,622823429806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,5,622823429805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,2,622823429802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,9,622823429809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,4,622823429804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,4,622823429704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,8,622823429808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,3,622823429803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,5,622823430005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,7,622823429807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,2,622823430002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,1,622823430001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,3,622823430003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,6,622823430006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,9,622823430009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,8,622823430008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,4,622823430004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,7,622823430007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,10,622656088810,"Urine, no preservative",Not Received,Ambient,,,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,10,622675255510,"Urine, no preservative",Not Received,Ambient,,,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,8,622631362508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,10,622668695410,"Serum, SST",Cancelled,Ambient,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,9,622668695409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,8,622668695408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,10,622754126410,"Serum, SST",Cancelled,Ambient,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,8,622754126408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,9,622754126409,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,10,622754125810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,11,622754218211,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,10,622754733710,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,8,622675255408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,8,622656088708,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,8,622754126108,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,10,622754125610,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,10,622754733810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,2,622860565202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,4,622860565204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,27-May-2026,6228605653,5,622860565305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,1,622860565201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,9,622860565209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,1,622860565301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,3,622860565203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,8,622860565308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,9,622860565309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,8,622860565208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,6,622860565206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,6,622860565306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,7,622860565307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,2,622860565302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,7,622860565207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,4,622860565304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,27-May-2026,6228605652,5,622860565205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,3,622860565303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,8,622726183508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, diff --git a/Covance_MDD3003/Source/Zpracovano/2026-06-01_122357 sponsor-study-35472-samples-allSamples.csv b/Covance_MDD3003/Source/Zpracovano/2026-06-01_122357 sponsor-study-35472-samples-allSamples.csv new file mode 100644 index 0000000..76ec4fa --- /dev/null +++ b/Covance_MDD3003/Source/Zpracovano/2026-06-01_122357 sponsor-study-35472-samples-allSamples.csv @@ -0,0 +1,1199 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,1,622535097101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,2,622535097102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,3,622535097103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,4,622535097104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,5,622535097105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,6,622535097106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,7,622535097107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,12-Aug-2025,6225350971,8,622535097108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,,6225350971,9,622535097109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,08-Aug-2025,P1SCR,09-Aug-2025,09-Aug-2025,6225350971,10,622535097110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,1,622535097201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,3,622535097203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,4,622535097204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,2,622535097202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,5,622535097205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,6,622535097206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,7,622535097207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,24-Sep-2025,6225350972,8,622535097208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,,6225350972,9,622535097209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,19-Sep-2025,P1SCR,20-Sep-2025,20-Sep-2025,6225350972,10,622535097210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,22:00,Czech Republic,,22:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,1,622535097501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,2,622535097502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,3,622535097503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,5,622535097505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,6,622535097506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,4,622535097504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,7,622535097507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,12-Nov-2025,6225350975,8,622535097508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,,6225350975,9,622535097509,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,07-Nov-2025,P1SCR,08-Nov-2025,08-Nov-2025,6225350975,10,622535097510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,1,622535097701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,2,622535097702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,3,622535097703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,4,622535097704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,5,622535097705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,6,622535097706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,7,622535097707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,15-Oct-2025,6225350977,8,622535097708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,,6225350977,9,622535097709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,10-Oct-2025,P1SCR,11-Oct-2025,11-Oct-2025,6225350977,10,622535097710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,1,622535098101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,2,622535098102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,09-Sep-2025,6225350981,3,622535098103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,,6225350981,4,622535098104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,5,622535098105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,6,622535098106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,2,622535098202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,12-Nov-2025,6225350982,3,622535098203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,1,622535098201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,05-Sep-2025,P1DBBL,06-Sep-2025,06-Sep-2025,6225350981,7,622535098107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,,6225350982,4,622535098204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,5,622535098205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,6,622535098206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,07-Nov-2025,P1DBBL,08-Nov-2025,08-Nov-2025,6225350982,7,622535098207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,1,622535098401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,2,622535098402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,22-Oct-2025,6225350984,3,622535098403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,,6225350984,4,622535098404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,5,622535098405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,6,622535098406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,17-Oct-2025,P1DBBL,18-Oct-2025,18-Oct-2025,6225350984,7,622535098407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,5,622535098805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,6,622535098806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,7,622535098807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,8,622535098808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,1,622535098801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,18-Oct-2025,6225350988,9,622535098809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,2,622535098802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,22-Oct-2025,6225350988,3,622535098803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,17-Oct-2025,P2OLBL,18-Oct-2025,,6225350988,4,622535098804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,1,622535100201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,2,622535100202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,3,622535100203,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,4,622535100204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,5,622535100205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,21-Aug-2025,6225351002,6,622535100206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,7,622535100207,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,8,622535100208,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,9,622535100209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,19-Aug-2025,P1SCR,21-Aug-2025,,6225351002,10,622535100210,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,1,622535100401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,2,622535100402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,3,622535100403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,4,622535100404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,5,622535100405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,6,622535100406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,7,622535100407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,8,622535100408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,,6225351004,9,622535100409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351004,10,622535100410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,2,622535100602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,1,622535100601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,3,622535100603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,4,622535100604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,5,622535100605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,6,622535100606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,7,622535100607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,8,622535100608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,,6225351006,9,622535100609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,09-Sep-2025,P1SCR,10-Sep-2025,10-Sep-2025,6225351006,10,622535100610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,1,622535103601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,3,622535103603,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,4,622535103604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,2,622535103602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,5,622535103605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,7,622535103607,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,8,622535103608,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,6,622535103606,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,2,622535103702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,,6225351036,9,622535103609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,3,622535103703,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050001,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351036,10,622535103610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,1,622535103701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,6,622535103706,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,9,622535103709,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,8,622535103708,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,12-Nov-2025,6225351037,10,622535103710,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,7,622535103707,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,4,622535103704,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10005,Dr.Lubos Janu,CZ100050002,11-Nov-2025,P1SCR,12-Nov-2025,,6225351037,5,622535103705,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,2,622535104002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,1,622535104001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,5,622535104005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,4,622535104004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,6,622535104006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,8,622535104008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,9,622535104009,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,3,622535104003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,,6225351040,7,622535104007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,3,622535104103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,5,622535104105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,6,622535104106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,4,622535104104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,7,622535104107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,8,622535104108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,1,622535104101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,16-Sep-2025,P1SCR,17-Sep-2025,17-Sep-2025,6225351040,10,622535104010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,2,622535104102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,,6225351041,9,622535104109,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:43,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080003,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351041,10,622535104110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:43,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,1,622535104201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,4,622535104204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,3,622535104203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,5,622535104205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,6,622535104206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,2,622535104202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,27-Aug-2025,6225351042,10,622535104210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,28-Aug-2025,6225351042,8,622535104208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:08,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,9,622535104209,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,26-Aug-2025,P1SCR,27-Aug-2025,,6225351042,7,622535104207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:08,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,1,622535104401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,2,622535104402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,3,622535104403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,4,622535104404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,5,622535104405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,6,622535104406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,7,622535104407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,,6225351044,9,622535104409,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,10,622535104410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,1,622535104501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,2,622535104502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,3,622535104503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,10-Dec-2025,P1SCR,11-Dec-2025,11-Dec-2025,6225351044,8,622535104408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,4,622535104504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,5,622535104505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,7,622535104507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,8,622535104508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,6,622535104506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,,6225351045,9,622535104509,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,05-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351045,10,622535104510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,1,622535104601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,3,622535104603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,4,622535104604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,5,622535104605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,6,622535104606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,8,622535104608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,2,622535104602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,9,622535104609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,11-Sep-2025,6225351046,10,622535104610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:31,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,10-Sep-2025,P1SCR,11-Sep-2025,,6225351046,7,622535104607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:31,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,2,622535104702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,3,622535104703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,4,622535104704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,5,622535104705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,6,622535104706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,8,622535104708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,1,622535104701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,7,622535104707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,,6225351047,9,622535104709,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:12,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,02-Jul-2025,P1SCR,03-Jul-2025,03-Jul-2025,6225351047,10,622535104710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:12,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,1,622535104901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,2,622535104902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,3,622535104903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,,6225351049,4,622535104904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:55,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,5,622535104905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,6,622535104906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,30-Jul-2025,P1DBBL,31-Jul-2025,31-Jul-2025,6225351049,7,622535104907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:55,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,1,622535105001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,2,622535105002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,,6225351050,4,622535105004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:19,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,5,622535105005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,6,622535105006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,3,622535105003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,1,622535105101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,2,622535105102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,28-Aug-2025,6225351051,3,622535105103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,08-Oct-2025,P1DBBL,09-Oct-2025,09-Oct-2025,6225351050,7,622535105007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:19,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,,6225351051,4,622535105104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:47,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,6,622535105106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,5,622535105105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,26-Aug-2025,P1DBBL,27-Aug-2025,27-Aug-2025,6225351051,7,622535105107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:47,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,3,622535105203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,5,622535105205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,6,622535105206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,2,622535105202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,,6225351052,4,622535105204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,1,622535105201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,16-Sep-2025,P1DBBL,17-Sep-2025,17-Sep-2025,6225351052,7,622535105207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,1,622535105601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,2,622535105602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,3,622535105603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,4,622535105604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,5,622535105605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,6,622535105606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,7,622535105607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,,6225351056,8,622535105608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,10-Sep-2025,P2OLBL,11-Sep-2025,11-Sep-2025,6225351056,9,622535105609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,1,622535105701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,2,622535105702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,3,622535105703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,4,622535105704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,5,622535105705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,6,622535105706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,7,622535105707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,,6225351057,8,622535105708,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:02,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Oct-2025,P2OLBL,08-Oct-2025,08-Oct-2025,6225351057,9,622535105709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:02,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,1,622535106601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,3,622535106603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,4,622535106604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,7,622535106607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,8,622535106608,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,9,622535106609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,,6225351066,6,622535106606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,5,622535106605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,14-Oct-2025,EW,15-Oct-2025,15-Oct-2025,6225351066,2,622535106602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Early Withdrawal,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,3,622535107003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,09-Sep-2025,6225351070,4,622535107004,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,2,622535107002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,5,622535107005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,6,622535107006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,1,622535107001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,9,622535107009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,8,622535107008,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,7,622535107007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080004,08-Sep-2025,P1SCR,09-Sep-2025,,6225351070,10,622535107010,"Serum, SST",Not Received,Ambient,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,2,622535107202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,3,622535107203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,4,622535107204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,5,622535107205,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,6,622535107206,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,7,622535107207,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,1,622535107201,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,10,622535107210,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,,6225351072,9,622535107209,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351072,8,622535107208,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,2,622535107402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,3,622535107403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,4,622535107404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,1,622535107401,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,7,622535107407,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,10,622535107410,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,,6225351074,9,622535107409,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:40,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,6,622535107406,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,5,622535107405,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,2,622535107602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,1,622535107601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110005,03-Nov-2025,P1SCR,04-Nov-2025,04-Nov-2025,6225351074,8,622535107408,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:40,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,3,622535107603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,5,622535107605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,6,622535107606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,4,622535107604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,7,622535107607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,,6225351076,9,622535107609,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,06-Aug-2025,6225351076,10,622535107610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,03-Aug-2025,P1SCR,06-Aug-2025,07-Aug-2025,6225351076,8,622535107608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,3,622535107703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,1,622535107701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,4,622535107704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,5,622535107705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,6,622535107706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,7,622535107707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,8,622535107708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,,6225351077,9,622535107709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:33,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,10,622535107710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110004,03-Oct-2025,P1SCR,04-Oct-2025,04-Oct-2025,6225351077,2,622535107702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:33,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,5,622535107805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,6,622535107806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,7,622535107807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,8,622535107808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,9,622535107809,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,4,622535107804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,3,622535107803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,2,622535107802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,,6225351078,1,622535107801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,14-Nov-2025,P1SCR,15-Nov-2025,15-Nov-2025,6225351078,10,622535107810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,1,622535108001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,2,622535108002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,7,622535108007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,06-Nov-2025,6225351080,8,622535108008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,,6225351080,9,622535108009,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:03,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,3,622535108003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,10,622535108010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,1,622535108101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,3,622535108103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,4,622535108004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,4,622535108104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,2,622535108102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,5,622535108105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,5,622535108005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,04-Nov-2025,P1SCR,05-Nov-2025,05-Nov-2025,6225351080,6,622535108006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,07:03,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,8,622535108108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,10,622535108110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,9,622535108109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,2,622535108202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,,6225351081,7,622535108107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,3,622535108203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351082,4,622535108204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,26-Sep-2025,P1SCR,27-Sep-2025,27-Sep-2025,6225351081,6,622535108106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,5,622535108205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,6,622535108206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,1,622535108301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,2,622535108302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,3,622535108303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,,6225351083,4,622535108304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:07,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,5,622535108305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,1,622535108201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,6,622535108306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351082,7,622535108207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,28-Aug-2025,P1DBBL,29-Aug-2025,29-Aug-2025,6225351083,7,622535108307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:07,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,1,622535108401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,4,622535108404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,3,622535108403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,5,622535108405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351084,2,622535108402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,7,622535108407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351084,6,622535108406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,2,622535109302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,1,622535109301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,3,622535109303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,5,622535109305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,4,622535109304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,6,622535109306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,7,622535109307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,,6225351093,8,622535109308,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:23,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351093,9,622535109309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:23,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,1,622535109401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,3,622535109403,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,2,622535109402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,4,622535109404,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,5,622535109405,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,6,622535109406,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,7,622535109407,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,,6225351094,8,622535109408,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,1,622535109501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,2,622535109502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,3,622535109503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,5,622535109505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,7,622535109507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,8,622535109508,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,4,622535109504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,,6225351095,6,622535109506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110001,08-Oct-2025,EOT,09-Oct-2025,09-Oct-2025,6225351094,9,622535109409,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,09-Oct-2025,EOT,10-Oct-2025,10-Oct-2025,6225351095,9,622535109509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,1,622535110601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,2,622535110602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,4,622535110604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,5,622535110605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,3,622535110603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,6,622535110606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,7,622535110607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,08-Aug-2025,6225351106,8,622535110608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,,6225351106,9,622535110609,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120001,06-Aug-2025,P1SCR,07-Aug-2025,07-Aug-2025,6225351106,10,622535110610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,1,622535110901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,4,622535110904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,5,622535110905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,6,622535110906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,7,622535110907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,05-Sep-2025,6225351109,8,622535110908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,2,622535110902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,,6225351109,9,622535110909,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,10,622535110910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,1,622535111001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,2,622535111002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,3,622535111003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,4,622535111004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,5,622535111005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,6,622535111006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,7,622535111007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120002,03-Sep-2025,P1SCR,04-Sep-2025,04-Sep-2025,6225351109,3,622535110903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,,6225351110,9,622535111009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351110,8,622535111008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120003,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351110,10,622535111010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,1,622535111101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,2,622535111102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,3,622535111103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,4,622535111104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,5,622535111105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,6,622535111106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,03-Oct-2025,6225351111,8,622535111108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,9,622535111109,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,,6225351111,7,622535111107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,01-Oct-2025,P1SCR,02-Oct-2025,02-Oct-2025,6225351111,10,622535111110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,1,622535112001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,2,622535112002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,24-Oct-2025,6225351120,3,622535112003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,,6225351120,4,622535112004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,5,622535112005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,6,622535112006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,22-Oct-2025,P1DBBL,23-Oct-2025,23-Oct-2025,6225351120,7,622535112007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,2,622535112602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,1,622535112601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,3,622535112603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,4,622535112604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,10-Dec-2025,6225351126,5,622535112605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,6,622535112606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,,6225351126,8,622535112608,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,7,622535112607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,05-Dec-2025,EOT,06-Dec-2025,06-Dec-2025,6225351126,9,622535112609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,2,622631362502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,1,622631362501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,3,622631362503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,5,622631362505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,4,622631362504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,6,622631362506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,02-Apr-2026,6226313625,7,622631362507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,2,622655064602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,1,622655064601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,7,622655064607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,5,622655064605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,,6226550646,4,622655064604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,6,622655064606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Feb-2026,P2OLD29,17-Feb-2026,17-Feb-2026,6226550646,3,622655064603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,4,622655169704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,5,622655169705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,1,622655169701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,6,622655169706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,7,622655169707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,1,622655169801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,22-Jan-2026,6226551697,3,622655169703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,4,622655169804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,21-Jan-2026,P1DBBL,22-Jan-2026,,6226551697,2,622655169702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,,6226551698,2,622655169802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,6,622655169806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,3,622655169803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,5,622655169805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,29-Oct-2025,P1DBBL,30-Oct-2025,30-Oct-2025,6226551698,7,622655169807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,4,622656088704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,20-May-2026,6226560887,3,622656088703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,2,622656088702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,1,622656088701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,5,622656088705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,6,622656088706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,1,622656088801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,25-Apr-2026,6226560887,7,622656088707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,3,622656088803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,7,622656088807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,9,622656088809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226560888,5,622656088805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,4,622656088804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,8,622656088808,"Red Cells, Clot",Not Received,,,TSH,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226560888,2,622656088802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,17:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,6,622656088806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,2,622656089102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,3,622656089103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,1,622656089101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,4,622656089104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,6,622656089106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,,6226560891,8,622656089108,"Red Cells, Clot",Not Received,,,TSH,,,,,,14:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,20-May-2026,6226560891,5,622656089105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,14:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,7,622656089107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,06-Mar-2026,P2DBW25,07-Mar-2026,07-Mar-2026,6226560891,9,622656089109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,14:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Every 12 Weeks,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,17-Feb-2026,6226561517,3,622656151703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,4,622656151704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,5,622656151705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,,6226561517,2,622656151702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:23,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,1,622656151701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,6,622656151706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,03-Feb-2026,P2OLD29,04-Feb-2026,04-Feb-2026,6226561517,7,622656151707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:23,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,30-May-2026,6226649754,1,622664975401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,2,622664975402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,4,622664975404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,3,622664975403,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,INSULIN,FROZEN,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,30-May-2026,6226649754,5,622664975405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,30-May-2026,6226649754,6,622664975406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,30-May-2026,6226649754,7,622664975407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,1,622668695201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,2,622668695202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,3,622668695203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,,6226686952,4,622668695204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,5,622668695205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,6,622668695206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,08-Oct-2025,P2OLD29,09-Oct-2025,09-Oct-2025,6226686952,7,622668695207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,1,622668695301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,2,622668695302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,3,622668695303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,4,622668695304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,5,622668695305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,6,622668695306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,7,622668695407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,,6226686953,8,622668695308,"Red Cells, Clot",Not Received,,,TSH,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,9,622668695309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,13-Jan-2026,P2DBBL,14-Jan-2026,14-Jan-2026,6226686953,7,622668695307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,1,622668695401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,3,622668695403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,4,622668695404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,5,622668695405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6226686954,6,622668695406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:01,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,2,622668695402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,6,622675255406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,2,622675255502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,5,622675255405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,3,622675255503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,4,622675255404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,7,622675255407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,4,622675255504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,20-May-2026,6226752555,5,622675255505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,2,622675255402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,3,622675255403,"Plasma, EDTA",Received,Frozen,Default Return Ambient,INSULIN,FROZEN,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,23-Apr-2026,6226752554,1,622675255401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,1,622675255501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,7,622675255507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,8,622675255508,"Red Cells, Clot",Not Received,,,TSH,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,26-Mar-2026,6226752555,9,622675255509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,15:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,6,622675255506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,1,622678085301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,5,622678085305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,2,622678085302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,3,622678085303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,4,622678085304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,8,622678085308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,9,622678085309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,,6226780853,6,622678085306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080001,05-Nov-2025,EOT,06-Nov-2025,06-Nov-2025,6226780853,7,622678085307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,1,622678085501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,2,622678085502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,4,622678085504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,5,622678085505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,6,622678085506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,7,622678085507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,,6226780855,8,622678085508,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,9,622678085509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,09-Dec-2025,EOT,10-Dec-2025,10-Dec-2025,6226780855,3,622678085503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,1,622678085601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,2,622678085602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,3,622678085603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,4,622678085604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,6,622678085606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,7,622678085607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,,6226780856,8,622678085608,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:06,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,9,622678085609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,3,622678085703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,6,622678085706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,5,622678085705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,7,622678085707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,8,622678085708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,9,622678085709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,1,622678085701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,,6226780857,4,622678085704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:18,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,14-Jan-2026,EOT,15-Jan-2026,15-Jan-2026,6226780857,2,622678085702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:18,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,18-Nov-2025,EOT,19-Nov-2025,19-Nov-2025,6226780856,5,622678085605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:06,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,3,622678573903,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,2,622678573902,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,4,622678573904,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,7,622678573907,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,9,622678573909,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,5,622678573905,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,6,622678573906,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,8,622678573908,"Serum, SST",Not Received,Ambient,,TSH,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,,6226785739,1,622678573901,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,18-Feb-2026,P1DBBL,19-Feb-2026,19-Feb-2026,6226785739,10,622678573910,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,1,622678574001,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,7,622678574007,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,5,622678574005,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,8,622678574008,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,2,622678574002,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,6,622678574006,"Plasma, EDTA",Not Received,Frozen,,INSULIN,FROZEN,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,3,622678574003,"Urine, Cargile Preservative UA",Not Received,Ambient,,URINALYSIS,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,4,622678574004,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,,6226785740,9,622678574009,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:53,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,15-Dec-2025,P1SCR,16-Dec-2025,16-Dec-2025,6226785740,10,622678574010,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:53,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,2,622680496102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,,6226804961,4,622680496104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,3,622680496103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,5,622680496205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,7,622680496207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,9,622680496209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,6,622680496106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,5,622680496105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,3,622680496203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,1,622680496101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,4,622680496204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,8,622680496208,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,04-Nov-2025,P2OLD29,05-Nov-2025,05-Nov-2025,6226804961,7,622680496107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,6,622680496206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,2,622680496202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,11-Mar-2026,6226804962,1,622680496201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,2,622693560602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,4,622693560604,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,3,622693560603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,5,622693560605,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,1,622693560601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,7,622693560607,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,16-Dec-2025,6226935606,6,622693560606,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,8,622693560608,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,,6226935606,9,622693560609,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,1,622697694301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,2,622697694302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,31-Jan-2026,6226976943,3,622697694303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,,6226976943,4,622697694304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,6,622697694306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,7,622697694307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120004,02-Jan-2026,P2OLD29,03-Jan-2026,03-Jan-2026,6226976943,5,622697694305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,4,622699131104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,5,622699131105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,6,622699131106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,7,622699131107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,3,622699131103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,07-Nov-2025,6226991311,1,622699131101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:14,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,06-Nov-2025,P2OLD29,07-Nov-2025,,6226991311,2,622699131102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:14,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,1,622704330201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,4,622704330204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,5,622704330205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,19-Nov-2025,6227043302,3,622704330203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,,6227043302,2,622704330202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,6,622704330206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,14-Nov-2025,P2OLD29,15-Nov-2025,15-Nov-2025,6227043302,7,622704330207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,1,622707241901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,2,622707241902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,,6227072419,4,622707241904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:17,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,6,622707241906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,3,622707241903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,7,622707241907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080005,17-Dec-2025,P2OLD29,18-Dec-2025,18-Dec-2025,6227072419,5,622707241905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:17,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,2,622710690502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,1,622710690501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,03-Dec-2025,6227106905,3,622710690503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,4,622710690504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,6,622710690506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,5,622710690505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,7,622710690507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,,6227106905,8,622710690508,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,28-Nov-2025,P2OLBL,29-Nov-2025,29-Nov-2025,6227106905,9,622710690509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,1,622710690601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,2,622710690602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,23-Dec-2025,6227106906,3,622710690603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,4,622710690604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,5,622710690605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,6,622710690606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,9,622710690609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,20-Dec-2025,6227106906,7,622710690607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,19-Dec-2025,P2OLBL,20-Dec-2025,,6227106906,8,622710690608,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:25,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,6,622714456006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,7,622714456007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,1,622714456001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,2,622714456102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,5,622714456005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,1,622714456101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,,6227144561,4,622714456104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:04,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,3,622714456103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,5,622714456105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,28-Jan-2026,6227144560,3,622714456003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,6,622714456106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,4,622714456004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,27-Jan-2026,P1DBBL,28-Jan-2026,,6227144560,2,622714456002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,1,622714456201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,5,622714456205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,25-Nov-2025,P1DBBL,26-Nov-2025,26-Nov-2025,6227144561,7,622714456107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:04,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,7,622714456207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,4,622714456204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,,6227144562,2,622714456202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:13,,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,16-Dec-2025,6227144562,3,622714456203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:13,05:55,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,11-Dec-2025,P1DBBL,13-Dec-2025,13-Dec-2025,6227144562,6,622714456206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:13,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,7,622717890807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,9,622717890809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,3,622717890903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,6,622717890806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,4,622717890904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,2,622717890802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,1,622717890901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,8,622717890808,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,1,622717890801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,2,622717890902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,04-Feb-2026,6227178909,5,622717890905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,,6227178908,4,622717890804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:20,,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178908,3,622717890803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:20,08:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,6,622717890906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,,6227178909,8,622717890908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,9,622717890909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227178909,7,622717890907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,1,622717891001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,3,622717891003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,4,622717891004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,2,622717891002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,20-May-2026,6227178910,5,622717891005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178908,5,622717890805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:20,07:00,Czech Republic,,08:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,8,622717891008,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,9,622717891009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,2,622717891102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,06-May-2026,6227178910,7,622717891007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,1,622717891101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,4,622717891104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,11-Mar-2026,6227178911,5,622717891105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,6,622717891106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,7,622717891107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,9,622717891109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-May-2026,EOT,06-May-2026,,6227178910,6,622717891006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,07-Mar-2026,6227178911,3,622717891103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,1,622717891201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,06-Mar-2026,EOT,07-Mar-2026,,6227178911,8,622717891108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,2,622717891202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,3,622717891203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,14-Jan-2026,6227178912,5,622717891205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:10,07:00,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,4,622717891204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,7,622717891207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,8,622717891208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,,6227178912,6,622717891206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:10,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,09-Jan-2026,EOT,10-Jan-2026,10-Jan-2026,6227178912,9,622717891209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:10,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,1,622726123001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,2,622726123002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,,6227261230,4,622726123004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,5,622726123005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,10-Dec-2025,6227261230,3,622726123003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,6,622726123006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,05-Dec-2025,P1DBBL,06-Dec-2025,06-Dec-2025,6227261230,7,622726123007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,1,622726183501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,2,622726183502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,21-May-2026,6227261835,3,622726183503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,4,622726183504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,5,622726183505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,6,622726183506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,20-May-2026,6227261835,7,622726183507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,00:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,1,622726183601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,2,622726183602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,3,622726183603,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,4,622726183604,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,5,622726183605,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,6,622726183606,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,7,622726183607,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,,6227261836,8,622726183608,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,06-Jan-2026,EOT,08-Jan-2026,08-Jan-2026,6227261836,9,622726183609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,3,622749837903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,1,622749837901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,2,622749837902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,8,622749838008,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,7,622749838007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,7,622749837907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,9,622749838009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,9,622749837909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,1,622749838001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,6,622749838006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,3,622749838003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,03-Jan-2026,6227498379,5,622749837905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,2,622749838002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,31-Jan-2026,6227498380,5,622749838005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:36,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,4,622749837904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Jan-2026,EOT,31-Jan-2026,,6227498380,4,622749838004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:36,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,8,622749837908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110002,02-Jan-2026,EOT,03-Jan-2026,,6227498379,6,622749837906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:28,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,9,622752024209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,3,622752024203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,7,622752024307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,5,622752024305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,4,622752024204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,1,622752024201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,3,622752024303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,6,622752024306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,1,622752024301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,4,622752024304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,,6227520243,8,622752024308,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:20,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,2,622752024202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,6,622752024206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,5,622752024205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,2,622752024302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,,6227520242,8,622752024208,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,13-Jan-2026,EOT,14-Jan-2026,14-Jan-2026,6227520242,7,622752024207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,29-Apr-2026,EOT,30-Apr-2026,30-Apr-2026,6227520243,9,622752024309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:20,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,2,622752024502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,3,622752024503,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,8,622752024508,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,1,622752024501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,9,622752024509,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,4,622752024504,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,5,622752024505,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,,6227520245,6,622752024506,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,04-Mar-2026,EOT,05-Mar-2026,05-Mar-2026,6227520245,7,622752024507,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,1,622754124901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,2,622754124902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,3,622754124903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,6,622754124906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,4,622754124904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,7,622754124907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,5,622754124905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,1,622754125101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,2,622754125102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,28-Jan-2026,6227541249,10,622754124910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,30-Jan-2026,6227541249,8,622754124908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,27-Jan-2026,P1SCR,28-Jan-2026,,6227541249,9,622754124909,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,6,622754125206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,1,622754125201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,7,622754125107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,25-Feb-2026,6227541252,3,622754125203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:45,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,,6227541251,4,622754125104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,06:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,2,622754125202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,,6227541252,4,622754125204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:45,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,6,622754125106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,5,622754125205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,20-Feb-2026,P1DBBL,21-Feb-2026,21-Feb-2026,6227541252,7,622754125207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,5,622754125105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,1,622754125601,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,5,622754125605,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,2,622754125602,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,4,622754125604,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,7,622754125607,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227541256,3,622754125603,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227541251,3,622754125103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,06:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,6,622754125606,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227541256,9,622754125609,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,21-Jan-2026,6227541257,3,622754125703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,07:55,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,8,622754125608,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,8,622754125708,"Red Cells, Clot",Not Received,,,TSH,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,1,622754125701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,5,622754125705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,6,622754125706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,4,622754125704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,7,622754125707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,17-Jan-2026,6227541257,9,622754125709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,07:55,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,2,622754125802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,4,622754125904,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,16-Jan-2026,P2OLBL,17-Jan-2026,,6227541257,2,622754125702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,07:55,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,18-Feb-2026,6227541259,3,622754125903,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,9,622754125809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,6,622754125906,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,7,622754125907,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,1,622754125801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,4,622754125804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,6,622754125806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,1,622754125901,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,5,622754125805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,7,622754125807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,08-Apr-2026,6227541258,3,622754125803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,14-Feb-2026,6227541259,5,622754125905,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,1,622754126001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,5,622754126005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,2,622754126002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,21-Jan-2026,6227541260,3,622754126003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:40,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,8,622754125808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Feb-2026,P2OLD29,14-Feb-2026,,6227541259,2,622754125902,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,1,622754126101,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,,6227541260,4,622754126004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:40,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,6,622754126006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,2,622754126102,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,4,622754126104,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,16-Jan-2026,P2OLD29,17-Jan-2026,17-Jan-2026,6227541260,7,622754126007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:40,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,5,622754126105,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,6,622754126106,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,20-May-2026,6227541261,3,622754126103,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,06-May-2026,6227541261,7,622754126107,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,2,622754126402,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,1,622754126401,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,4,622754126404,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,3,622754126403,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,6,622754126406,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,5,622754126405,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,08-Apr-2026,6227541264,7,622754126407,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:35,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,6,622754216006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,7,622754216007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,5,622754216005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,9,622754216009,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,2,622754216002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,10,622754216010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,1,622754216101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,8,622754216008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,,6227542160,1,622754216001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:11,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,4,622754216104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,2,622754216102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,8,622754216108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,3,622754216103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,6,622754216106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,10,622754216110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,4,622754216004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110009,21-Jan-2026,P1SCR,22-Jan-2026,22-Jan-2026,6227542160,3,622754216003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,10:11,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,9,622754216109,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,,6227542161,7,622754216107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:58,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,05-Jan-2026,P1SCR,06-Jan-2026,06-Jan-2026,6227542161,5,622754216105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:58,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,5,622754217005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,1,622754217001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,7,622754217007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,3,622754217003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,8,622754217008,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,2,622754217002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,6,622754217006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,1,622754217101,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,11-Mar-2026,6227542170,9,622754217009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,3,622754217103,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,10-Mar-2026,EOT,11-Mar-2026,,6227542170,4,622754217004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,5,622754217105,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,2,622754217102,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,6,622754217106,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,8,622754217108,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,7,622754217107,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,17-Mar-2026,6227542171,9,622754217109,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:16,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,2,622754217202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Mar-2026,EOT,17-Mar-2026,,6227542171,4,622754217104,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:16,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,3,622754217203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,1,622754217201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,5,622754217205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,6,622754217206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,9,622754217209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,31-Mar-2026,6227542172,7,622754217207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:31,07:15,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,4,622754217204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,30-Mar-2026,EOT,31-Mar-2026,,6227542172,8,622754217208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:31,,Czech Republic,,07:15,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,1,622754217301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,5,622754217305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,6,622754217306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,7,622754217307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,8,622754217308,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,2,622754217302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,9,622754217309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,17-Jan-2026,6227542173,3,622754217303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:48,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,16-Jan-2026,EOT,17-Jan-2026,,6227542173,4,622754217304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:48,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,2,622754218202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,3,622754218203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,4,622754218204,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,5,622754218205,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,8,622754218208,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,1,622754218201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,7,622754218207,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,,6227542182,9,622754218209,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:16,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,6,622754218206,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,10,622754218210,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,10,622693560610,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110003,11-Dec-2025,EOT,13-Dec-2025,13-Dec-2025,6226935606,11,622693560611,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,09:05,21:00,Czech Republic,,21:00,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,2,622754732902,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,3,622754732903,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,4,622754732904,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,6,622754732906,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,7,622754732907,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,5,622754732905,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,04-Mar-2026,6227547329,8,622754732908,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,28-Feb-2026,6227547329,10,622754732910,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,9,622754732909,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,2,622754733002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,1,622754733001,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,3,622754733003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,4,622754733004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,5,622754733005,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,6,622754733006,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,7,622754733007,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,04-Feb-2026,6227547330,8,622754733008,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:40,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,,6227547330,9,622754733009,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:40,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,30-Jan-2026,P1SCR,31-Jan-2026,31-Jan-2026,6227547330,10,622754733010,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:40,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,2,622754733102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,27-Feb-2026,P1SCR,28-Feb-2026,,6227547329,1,622754732901,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,3,622754733103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,4,622754733104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,5,622754733105,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,6,622754733106,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,7,622754733107,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,11-Mar-2026,6227547331,8,622754733108,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,1,622754733201,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,2,622754733202,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,04-Mar-2026,6227547332,3,622754733203,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:35,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,,6227547332,4,622754733204,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:35,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,5,622754733205,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,6,622754733206,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,27-Feb-2026,P1DBBL,28-Feb-2026,28-Feb-2026,6227547332,7,622754733207,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:35,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,1,622754733101,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,1,622754733301,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,2,622754733302,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,3,622754733303,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,,6227547333,4,622754733304,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,6,622754733306,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,5,622754733305,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,25-Mar-2026,P1DBBL,26-Mar-2026,26-Mar-2026,6227547333,7,622754733307,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,,6227547331,9,622754733109,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227547331,10,622754733110,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,1,622754733601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,2,622754733602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,3,622754733603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,4,622754733604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,5,622754733605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,6,622754733606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,7,622754733607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,15-Apr-2026,6227547336,8,622754733608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,,6227547336,9,622754733609,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,2,622754733702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,15-Apr-2026,6227547337,3,622754733703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:15,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,4,622754733704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,6,622754733706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,5,622754733705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,9,622754733709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,2,622754733802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,20-May-2026,6227547338,3,622754733803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,1,622754733801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,4,622754733804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,7,622754733807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,5,622754733805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,6,622754733806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,8,622754733708,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,7,622754733707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,8,622754733808,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,06-May-2026,6227547338,9,622754733809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227547337,1,622754733701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,10-Apr-2026,P2SCR,11-Apr-2026,11-Apr-2026,6227547336,10,622754733610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,3,622776726703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,4,622776726704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,1,622776726701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,2,622776726702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,7,622776726707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,5,622776726705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,6,622776726706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,,6227767267,9,622776726709,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:25,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,04-Feb-2026,6227767267,8,622776726708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,01-Feb-2026,P1SCR,03-Feb-2026,03-Feb-2026,6227767267,10,622776726710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:25,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,2,622776845802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,4,622776845804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,1,622776845801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,3,622776845803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,20-May-2026,6227768458,5,622776845805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,6,622776845806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,,6227768458,8,622776845808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,7,622776845807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,1,622776845901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,3,622776845903,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,4,622776845904,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040008,05-May-2026,EOT,06-May-2026,06-May-2026,6227768458,9,622776845809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:45,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,4,622776846004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,6,622776845906,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,08-Apr-2026,6227768460,5,622776846005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,2,622776846002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,7,622776845907,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,3,622776846003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,,6227768459,8,622776845908,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,18-Mar-2026,6227768459,5,622776845905,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:00,07:00,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,9,622776845909,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,7,622776846007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,8,622776846008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,1,622776846001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,28-Mar-2026,6227768460,9,622776846009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040004,13-Mar-2026,EOT,14-Mar-2026,14-Mar-2026,6227768459,2,622776845902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:00,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040003,27-Mar-2026,EOT,28-Mar-2026,,6227768460,6,622776846006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:00,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,1,622777550501,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,5,622777550505,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,4,622777550504,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,6,622777550506,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,7,622777550507,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,2,622777550502,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,3,622777550503,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,,6227775505,9,622777550509,"Red Cells, Clot",Not Received,,,TSH,,,,,,16:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,2,622777550802,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,1,622777550701,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,5,622777550805,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775507,3,622777550703,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,13:30,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,4,622777550704,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,18-Feb-2026,6227775508,3,622777550803,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,15:10,07:10,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,6,622777550706,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,7,622777550707,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775507,5,622777550705,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,13:30,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,7,622777550807,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,6,622777550806,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,17-Feb-2026,6227775508,1,622777550801,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,15:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775507,2,622777550702,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,13:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,10,622777550510,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,15-Feb-2026,P1DBBL,17-Feb-2026,,6227775508,4,622777550804,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,15:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,31-Jan-2026,6227775505,8,622777550508,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,16:50,07:20,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,3,622779740603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,6,622779740606,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,5,622779740605,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,4,622779740604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,8,622779740608,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,9,622779740609,"Red Cells, Clot",Not Received,,,TSH,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,7,622779740607,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,2,622779740602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,,6227797406,1,622779740601,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,11:03,,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,1,622779740701,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,3,622779740703,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,4,622779740704,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,17-Feb-2026,P1SCR,18-Feb-2026,18-Feb-2026,6227797406,10,622779740610,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,11:03,07:10,Czech Republic,,07:10,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,5,622779740705,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,6,622779740706,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,7,622779740707,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,,6227797407,9,622779740709,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:22,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,5,622779740805,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,6,622779740806,"Urine, no preservative",Received,Ambient,Default Return Ambient,URINE DRUG SCREEN,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,4,622779740804,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,10,622779740710,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,2,622779740702,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110012,06-Mar-2026,P1SCR,07-Mar-2026,07-Mar-2026,6227797407,8,622779740708,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:22,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,1,622779740801,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,8,622779740808,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,2,622779740802,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,3,622779740803,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,"HEMATOLOGY, A1C, &",RETICULOCYTES,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,7,622779740807,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,,6227797408,9,622779740809,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:05,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110011,02-Mar-2026,P1SCR,03-Mar-2026,03-Mar-2026,6227797408,10,622779740810,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:05,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,3,622784472503,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,6,622784472506,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,5,622784472505,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,4,622784472504,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,7,622784472507,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,11-Mar-2026,6227844725,1,622784472501,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Mar-2026,P1DBBL,11-Mar-2026,,6227844725,2,622784472502,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 DB Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,28-Jan-2026,P1SCR,30-Jan-2026,30-Jan-2026,6227775505,11,622777550511,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,16:50,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 1 Screening,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,1,622811446001,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,4,622811446004,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,5,622811446005,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,6,622811446006,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY &,RETICULOCYTES,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,2,622811446002,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,3,622811446003,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,08-Apr-2026,6228114460,7,622811446007,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:21,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080006,10-Mar-2026,P2DBBL,11-Mar-2026,,6226804962,10,622680496210,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,07-Apr-2026,P2OLD29,08-Apr-2026,,6228114460,8,622811446008,"Urine, no preservative",Not Received,Ambient,,,,,,,,09:21,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,02-Apr-2026,6228232037,5,622823203705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,6,622823203706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,8,622823203708,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,9,622823203709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,7,622823203707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,1,622823203701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,3,622823203703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,,6228232037,4,622823203704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110006,31-Mar-2026,EOT,01-Apr-2026,01-Apr-2026,6228232037,2,622823203702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:10,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,1,622823429701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,2,622823429702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,3,622823429703,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,7,622823429707,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,8,622823429708,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,1,622823429801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,06-May-2026,6228234297,5,622823429705,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,6,622823429706,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,05-May-2026,6228234297,9,622823429709,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:44,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,6,622823429806,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,5,622823429805,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,2,622823429802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,9,622823429809,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,4,622823429804,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110008,04-May-2026,EOT,05-May-2026,,6228234297,4,622823429704,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,08:44,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,,6228234298,8,622823429808,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,3,622823429803,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,5,622823430005,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110007,13-May-2026,EOT,14-May-2026,14-May-2026,6228234298,7,622823429807,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,08:15,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,2,622823430002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,1,622823430001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,3,622823430003,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,6,622823430006,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,9,622823430009,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,8,622823430008,"Red Cells, Clot",Not Received,,,TSH,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,,6228234300,4,622823430004,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,10:37,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,21-Apr-2026,EOT,23-Apr-2026,23-Apr-2026,6228234300,7,622823430007,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,10:37,07:00,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,25-Mar-2026,EOT,26-Mar-2026,,6226560888,10,622656088810,"Urine, no preservative",Not Received,Ambient,,,,,,,,17:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,25-Mar-2026,EOT,26-Mar-2026,,6226752555,10,622675255510,"Urine, no preservative",Not Received,Ambient,,,,,,,,15:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080007,01-Apr-2026,P2OLD29,02-Apr-2026,,6226313625,8,622631362508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:10,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,10,622668695410,"Serum, SST",Canceled,Ambient,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,9,622668695409,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10008,Dr.Zdenek Solle,CZ100080002,07-Apr-2026,P2DBW13,08-Apr-2026,,6226686954,8,622668695408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,12:01,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,10,622754126410,"Serum, SST",Canceled,Ambient,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,8,622754126408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040001,07-Apr-2026,P2DBW13,08-Apr-2026,,6227541264,9,622754126409,"Red Cells, Clot",Not Received,,,TSH,,,,,,08:35,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,07-Apr-2026,P2OLBL,08-Apr-2026,,6227541258,10,622754125810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:45,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,10-Apr-2026,P2OLBL,11-Apr-2026,11-Apr-2026,6227542182,11,622754218211,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,08:16,07:20,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Retest,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,10-Apr-2026,P2OLBL,11-Apr-2026,,6227547337,10,622754733710,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,11:15,,Czech Republic,,07:20,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120006,22-Apr-2026,P2OLD29,23-Apr-2026,,6226752554,8,622675255408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,15:30,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10012,Dr.Ales Urban,CZ100120005,23-Apr-2026,P2OLD29,25-Apr-2026,,6226560887,8,622656088708,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,16:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,05-May-2026,P2OLD29,06-May-2026,,6227541261,8,622754126108,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,13:15,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040007,05-May-2026,P2OLBL,06-May-2026,,6227541256,10,622754125610,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,07:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040009,05-May-2026,P2OLBL,06-May-2026,,6227547338,10,622754733810,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:50,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Baseline,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,2,622860565202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,4,622860565204,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,27-May-2026,6228605653,5,622860565305,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,12:00,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,1,622860565201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,9,622860565209,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,1,622860565301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,3,622860565203,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,8,622860565308,"Red Cells, Clot",Not Received,,,TSH,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,9,622860565309,"Serum, SST",Received,Ambient,Default Return Ambient,TSH,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,8,622860565208,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,,6228605652,6,622860565206,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,09:20,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,6,622860565306,"Red Cells, Clot",Not Received,,,CHEMISTRY,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,7,622860565307,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,2,622860565302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,23-May-2026,6228605652,7,622860565207,"Serum, SST",Received,Ambient,Default Return Ambient,CHEMISTRY,,,,,,09:20,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,,6228605653,4,622860565304,"Whole Blood, EDTA, Dry",Not Received,,,INSULIN,,,,,,12:00,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040005,22-May-2026,EOT,23-May-2026,27-May-2026,6228605652,5,622860565205,"Plasma, EDTA",Received,Frozen,Default Return Frozen,INSULIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040006,22-May-2026,EOT,23-May-2026,23-May-2026,6228605653,3,622860565303,"Urine, Cargile Preservative UA",Received,Ambient,Default Return Ambient,URINALYSIS,,,,,,12:00,07:30,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,End of Phase/Treatment,, +42847922MDD3003,CZ10011,Dr. Marta Lendlova,CZ100110010,19-May-2026,P2OLD29,20-May-2026,,6227261835,8,622726183508,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,00:00,,Czech Republic,,07:00,,,212396,EMEA,,,,,,,,Part 2 OL Induction Day 29,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,10,622664975410,"Serum, SST",Canceled,Ambient,,TSH,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,8,622664975408,"Urine, no preservative",Not Received,Ambient,,URINE DRUG SCREEN,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, +42847922MDD3003,CZ10004,Dr. Erik Herman,CZ100040002,29-May-2026,P2DBW13,30-May-2026,,6226649754,9,622664975409,"Red Cells, Clot",Not Received,,,TSH,,,,,,09:30,,Czech Republic,,07:30,,,212396,EMEA,,,,,,,,Part 2 DB Week 13,, diff --git a/Covance_UCO3001/3001Specimeninventoryreport_262b2ff4.xlsx b/Covance_UCO3001/3001Specimeninventoryreport_262b2ff4.xlsx new file mode 100644 index 0000000..b9339ce Binary files /dev/null and b/Covance_UCO3001/3001Specimeninventoryreport_262b2ff4.xlsx differ diff --git a/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery.csv b/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery.csv new file mode 100644 index 0000000..2c896c5 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery.csv @@ -0,0 +1,75 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 8:40 AM",6227323295,CZ100222004,2047932,"Mar 17, 2026 3:49 PM","Mar 17, 2026 9:07 PM",VST,Closed,5h 17m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 7:45 AM",6227323297,CZ100222005,2047949,"Mar 17, 2026 3:56 PM","Mar 17, 2026 9:09 PM",VST,Closed,5h 12m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Mar 9, 2026 8:50 AM",6227323270,CZ100222003,2038559,"Mar 11, 2026 4:39 PM","Mar 11, 2026 8:32 PM","AGE, ADT201, AMT58660, AMT3542",Closed,3h 53m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 2,"Mar 27, 2026 7:10 AM",6227323272,CZ100222003,2073305,"Apr 1, 2026 7:54 PM","Apr 2, 2026 7:37 AM",AMT58660,Closed,11h 43m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 4,"Apr 8, 2026 8:05 AM",6227323274,CZ100222003,2086982,"Apr 10, 2026 1:00 PM","Apr 10, 2026 1:06 PM",AMT58660,Closed,5m,Katerina Havlikova,katerina.havlikova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 4, 2026 9:20 AM",6227810900,CZ100222005,2031896,"Mar 6, 2026 6:45 PM","Mar 6, 2026 7:25 PM","AMT58660, AMT3542",Closed,40m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 2, 2026 11:00 AM",6227810899,CZ100222003,2029805,"Mar 5, 2026 6:36 PM","Mar 6, 2026 9:01 AM","AMT58660, AMT3542",Closed,14h 24m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 3, 2026 12:10 PM",6227810901,CZ100222004,2029774,"Mar 5, 2026 6:23 PM","Mar 6, 2026 7:24 PM","AMT58660, AMT3542",Closed,1d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Apr 9, 2026 10:35 AM",6228173397,CZ100222005,2089669,"Apr 13, 2026 2:06 PM","Apr 23, 2026 12:53 PM",PCFCOM,Closed,9d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 10:37 AM",6227635207,CZ100212001,2085089,"Apr 9, 2026 2:54 PM","Apr 15, 2026 7:20 AM","AMT58660, AMT15602",Closed,5d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Screening,"Feb 25, 2026 12:15 PM",6227635204,CZ100212001,2019716,"Feb 27, 2026 12:09 PM","Mar 3, 2026 11:11 AM","AMT58660, AMT3542",Closed,3d,Zdenka Dvorakova,dvorakova.zdenka@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 2,"Apr 20, 2026 8:43 AM",6227635208,CZ100212001,2106304,"Apr 22, 2026 7:04 PM","Apr 23, 2026 9:21 AM",AMT58660,Closed,14h 16m,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 4,"May 5, 2026 10:00 AM",6227635211,CZ100212001,2133221,"May 9, 2026 6:24 PM","May 11, 2026 2:34 PM",AMT58660,Closed,1d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Screening,"Apr 13, 2026 12:20 PM",6227993962,CZ100201001,2094721,"Apr 15, 2026 6:02 PM","Apr 21, 2026 12:47 PM","AMT58660, AMT3542",Closed,5d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Induction Week 0,"May 18, 2026 9:28 AM",6227993966,CZ100201001,2156061,"May 22, 2026 9:37 PM","May 25, 2026 6:43 AM","ADT201, AMT58660, AMT3542",Closed,2d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2075611,"Apr 2, 2026 5:37 PM",,AMT58660,Closed,,,, +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2085558,"Apr 9, 2026 5:08 PM","Apr 10, 2026 2:06 PM",AMT58660,Closed,20h 58m,Jiri Pumprla,research@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Apr 16, 2026 12:00 PM",6227323332,CZ100092002,2101792,"Apr 20, 2026 6:19 PM","Apr 23, 2026 1:22 PM",AMT58660,Closed,2d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 0,"May 5, 2026 11:30 AM",6227323334,CZ100092001,2133224,"May 9, 2026 6:30 PM","May 13, 2026 10:10 AM","AMT58660, ADT809",Closed,3d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 2,"May 19, 2026 10:50 AM",6227323335,CZ100092001,2158952,"May 26, 2026 12:21 PM","May 27, 2026 9:03 AM",AMT58660,Closed,20h 42m,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2109874,"Apr 24, 2026 2:00 PM",,AMT58660,Closed,,,, +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2123465,"May 4, 2026 7:16 PM","May 5, 2026 10:04 AM",AMT58660,Closed,14h 48m,Petr Pekny,petr.pekny@nmskb.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2064220,"Mar 26, 2026 9:37 PM",,"AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2066330,"Mar 27, 2026 6:43 PM","Mar 30, 2026 10:41 PM",AMT58660,Closed,3d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2087084,"Apr 10, 2026 1:27 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2100086,"Apr 18, 2026 11:15 AM","Apr 22, 2026 7:51 PM",AMT58660,Closed,4d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2108501,"Apr 23, 2026 6:55 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2123492,"May 4, 2026 7:24 PM","May 5, 2026 3:30 PM",AMT58660,Closed,20h 6m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2101883,"Apr 20, 2026 6:49 PM","Apr 22, 2026 7:51 PM",AMT58660,Closed,2d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2090916,"Apr 13, 2026 9:15 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2079289,"Apr 6, 2026 3:21 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2033901,"Mar 9, 2026 3:53 PM","Mar 16, 2026 10:08 PM","SCD, AMT58660, AMT3542",Closed,7d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2023257,"Mar 2, 2026 6:47 PM",,"SCD, AGE, AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"May 6, 2026 10:45 AM",6227635141,CZ100132003,2137874,"May 12, 2026 8:03 PM","May 19, 2026 7:48 AM",AMT58660,Closed,6d,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2109534,"Apr 24, 2026 12:45 PM",,ADT8471,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2123486,"May 4, 2026 7:23 PM","May 5, 2026 3:30 PM",ADT8471,Closed,20h 7m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Unscheduled,,6227697745,,2140058,"May 13, 2026 7:02 PM","May 26, 2026 9:46 AM",PCFCOM,Response Received,12d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Screening,"Mar 18, 2026 9:18 AM",6227697718,CZ100122001,2053959,"Mar 20, 2026 2:52 PM","Mar 23, 2026 12:00 PM","SCT, AMT58660",Closed,2d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 11:45 AM",6227697719,CZ100122001,2085069,"Apr 9, 2026 2:48 PM","Apr 9, 2026 6:28 PM",AMT58660,Closed,3h 39m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 22, 2026 9:25 AM",6227697722,CZ100122001,2113315,"Apr 27, 2026 6:35 PM","Apr 27, 2026 8:50 PM",AMT58660,Closed,2h 14m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 4,"May 7, 2026 12:40 PM",6227697723,CZ100122001,2142322,"May 14, 2026 7:10 PM","May 14, 2026 7:42 PM",AMT58660,Closed,31m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Biopsy,"Mar 23, 2026 12:00 AM",6227697736,CZ100122001,2060524,"Mar 25, 2026 12:53 PM","Mar 25, 2026 2:09 PM",AMT23260,Closed,1h 15m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Unscheduled,"Mar 17, 2026 8:00 AM",6227323265,CZ100062001,2052144,"Mar 19, 2026 4:08 PM","Mar 24, 2026 9:29 AM","PSX, SCT, AGE",Closed,4d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Screening,"Apr 20, 2026 7:45 AM",6227323234,CZ100062002,2106334,"Apr 22, 2026 7:18 PM","Apr 22, 2026 7:36 PM",AMT58660,Closed,18m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2064023,"Mar 26, 2026 7:00 PM","Mar 27, 2026 9:04 AM",PCFCOM,Closed,14h 3m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2061456,"Mar 25, 2026 6:16 PM","Mar 26, 2026 8:38 AM",AMT58660,Closed,14h 22m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 8, 2026 7:10 AM",6227323240,CZ100062001,2086807,"Apr 10, 2026 12:21 PM","Apr 18, 2026 10:40 PM","AMT58660, ADT809",Closed,8d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 4,"Apr 15, 2026 8:45 AM",6227323242,CZ100062001,2102704,"Apr 21, 2026 11:22 AM","Apr 22, 2026 7:36 PM",AMT58660,Closed,1d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Biopsy,"Feb 19, 2026 12:00 AM",6227323254,CZ100062001,2014333,"Feb 24, 2026 4:13 PM","Feb 24, 2026 8:20 PM",VST,Closed,4h 6m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2032628,"Mar 9, 2026 10:33 AM","Mar 9, 2026 11:58 AM",AMT58660,Closed,1h 24m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2026645,"Mar 4, 2026 12:58 PM","Mar 6, 2026 6:01 PM","AMT58660, AMT3542",Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,,6227323206,,2112374,"Apr 27, 2026 2:17 PM","May 5, 2026 11:24 AM","PCFCOM, ADT201, AMT58660, AMT3542",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Apr 23, 2026 7:40 AM",6227323207,CZ100012002,2113312,"Apr 27, 2026 6:35 PM","Apr 28, 2026 9:06 PM",AMT58660,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Mar 4, 2026 7:00 AM",6227323208,CZ100012001,2030545,"Mar 6, 2026 11:02 AM","Mar 6, 2026 11:42 AM","AMT58660, AMT688",Closed,39m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"Mar 18, 2026 7:05 AM",6227323210,CZ100012001,2053955,"Mar 20, 2026 2:50 PM","Mar 25, 2026 3:29 PM","SCD, AMT58660",Closed,5d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1976585,"Jan 30, 2026 1:21 PM","Feb 6, 2026 2:37 PM","VST, AGE",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1991148,"Feb 9, 2026 7:43 PM","Feb 13, 2026 8:04 AM",AGE,Closed,3d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"Feb 5, 2026 12:00 AM",6227323223,CZ100012001,1989998,"Feb 9, 2026 1:42 PM","Feb 10, 2026 6:46 PM",VST,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323231,,2053405,"Mar 20, 2026 12:14 PM","Mar 30, 2026 12:54 AM",PCFCOM,Closed,9d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2141856,"May 14, 2026 4:23 PM","May 19, 2026 12:54 PM","SCD, AGE",Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2152157,"May 21, 2026 11:32 AM","May 26, 2026 8:15 AM",AGE,Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2112413,"Apr 27, 2026 2:24 PM","May 5, 2026 11:25 AM","PSX, SCT, VST, AGE, ADT201",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2126904,"May 6, 2026 12:02 PM","May 12, 2026 4:58 PM","SCT, VST, AGE",Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323233,,2053482,"Mar 20, 2026 12:40 PM","Mar 27, 2026 9:58 AM",PCFCOM,Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,"Apr 8, 2026 7:10 AM",6228036554,CZ100012002,2089973,"Apr 13, 2026 3:26 PM","Apr 21, 2026 1:32 PM",AMT15602,Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"May 13, 2026 12:00 AM",6228252073,CZ100012003,2147778,"May 19, 2026 10:13 AM","May 21, 2026 4:38 PM",VST,Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"May 6, 2026 8:05 AM",6227933142,CZ100012002,2134478,"May 11, 2026 2:54 PM","May 11, 2026 3:11 PM","AMT58660, AMT3542",Closed,16m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 12,"May 13, 2026 8:05 AM",6227933143,CZ100012001,2147202,"May 18, 2026 7:51 PM","May 19, 2026 8:38 AM",AMT58660,Closed,12h 47m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10003 - Dr. Leksa Vaclav,CZECH REPUBLIC,Screening,"May 13, 2026 8:15 AM",6227323299,CZ100032001,2154732,"May 22, 2026 12:36 PM","May 25, 2026 8:57 AM",AMT58660,Closed,2d,Leksa Vaclav,vaclav.leksa@seznam.cz,Investigator +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,FALSE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv b/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv new file mode 100644 index 0000000..652a478 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-28_093416 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv @@ -0,0 +1,9 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,TRUE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery.csv b/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery.csv new file mode 100644 index 0000000..687aab1 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery.csv @@ -0,0 +1,75 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 8:40 AM",6227323295,CZ100222004,2047932,"Mar 17, 2026 3:49 PM","Mar 17, 2026 9:07 PM",VST,Closed,5h 17m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 7:45 AM",6227323297,CZ100222005,2047949,"Mar 17, 2026 3:56 PM","Mar 17, 2026 9:09 PM",VST,Closed,5h 12m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Mar 9, 2026 8:50 AM",6227323270,CZ100222003,2038559,"Mar 11, 2026 4:39 PM","Mar 11, 2026 8:32 PM","AGE, ADT201, AMT58660, AMT3542",Closed,3h 53m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 2,"Mar 27, 2026 7:10 AM",6227323272,CZ100222003,2073305,"Apr 1, 2026 7:54 PM","Apr 2, 2026 7:37 AM",AMT58660,Closed,11h 43m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 4,"Apr 8, 2026 8:05 AM",6227323274,CZ100222003,2086982,"Apr 10, 2026 1:00 PM","Apr 10, 2026 1:06 PM",AMT58660,Closed,5m,Katerina Havlikova,katerina.havlikova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 2, 2026 11:00 AM",6227810899,CZ100222003,2029805,"Mar 5, 2026 6:36 PM","Mar 6, 2026 9:01 AM","AMT58660, AMT3542",Closed,14h 24m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 4, 2026 9:20 AM",6227810900,CZ100222005,2031896,"Mar 6, 2026 6:45 PM","Mar 6, 2026 7:25 PM","AMT58660, AMT3542",Closed,40m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 3, 2026 12:10 PM",6227810901,CZ100222004,2029774,"Mar 5, 2026 6:23 PM","Mar 6, 2026 7:24 PM","AMT58660, AMT3542",Closed,1d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Apr 9, 2026 10:35 AM",6228173397,CZ100222005,2089669,"Apr 13, 2026 2:06 PM","Apr 23, 2026 12:53 PM",PCFCOM,Closed,9d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Screening,"Feb 25, 2026 12:15 PM",6227635204,CZ100212001,2019716,"Feb 27, 2026 12:09 PM","Mar 3, 2026 11:11 AM","AMT58660, AMT3542",Closed,3d,Zdenka Dvorakova,dvorakova.zdenka@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 10:37 AM",6227635207,CZ100212001,2085089,"Apr 9, 2026 2:54 PM","Apr 15, 2026 7:20 AM","AMT58660, AMT15602",Closed,5d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 2,"Apr 20, 2026 8:43 AM",6227635208,CZ100212001,2106304,"Apr 22, 2026 7:04 PM","Apr 23, 2026 9:21 AM",AMT58660,Closed,14h 16m,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 4,"May 5, 2026 10:00 AM",6227635211,CZ100212001,2133221,"May 9, 2026 6:24 PM","May 11, 2026 2:34 PM",AMT58660,Closed,1d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Screening,"Apr 13, 2026 12:20 PM",6227993962,CZ100201001,2094721,"Apr 15, 2026 6:02 PM","Apr 21, 2026 12:47 PM","AMT58660, AMT3542",Closed,5d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Induction Week 0,"May 18, 2026 9:28 AM",6227993966,CZ100201001,2156061,"May 22, 2026 9:37 PM","May 25, 2026 6:43 AM","ADT201, AMT58660, AMT3542",Closed,2d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2109874,"Apr 24, 2026 2:00 PM",,AMT58660,Closed,,,, +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2123465,"May 4, 2026 7:16 PM","May 5, 2026 10:04 AM",AMT58660,Closed,14h 48m,Petr Pekny,petr.pekny@nmskb.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2064220,"Mar 26, 2026 9:37 PM",,"AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2066330,"Mar 27, 2026 6:43 PM","Mar 30, 2026 10:41 PM",AMT58660,Closed,3d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2087084,"Apr 10, 2026 1:27 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2100086,"Apr 18, 2026 11:15 AM","Apr 22, 2026 7:51 PM",AMT58660,Closed,4d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2108501,"Apr 23, 2026 6:55 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2123492,"May 4, 2026 7:24 PM","May 5, 2026 3:30 PM",AMT58660,Closed,20h 6m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2101883,"Apr 20, 2026 6:49 PM","Apr 22, 2026 7:51 PM",AMT58660,Closed,2d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2090916,"Apr 13, 2026 9:15 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2079289,"Apr 6, 2026 3:21 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2033901,"Mar 9, 2026 3:53 PM","Mar 16, 2026 10:08 PM","SCD, AMT58660, AMT3542",Closed,7d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2023257,"Mar 2, 2026 6:47 PM",,"SCD, AGE, AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"May 6, 2026 10:45 AM",6227635141,CZ100132003,2137874,"May 12, 2026 8:03 PM","May 19, 2026 7:48 AM",AMT58660,Closed,6d,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2109534,"Apr 24, 2026 12:45 PM",,ADT8471,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2123486,"May 4, 2026 7:23 PM","May 5, 2026 3:30 PM",ADT8471,Closed,20h 7m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Unscheduled,,6227697745,,2140058,"May 13, 2026 7:02 PM","May 26, 2026 9:46 AM",PCFCOM,Response Received,12d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Screening,"Mar 18, 2026 9:18 AM",6227697718,CZ100122001,2053959,"Mar 20, 2026 2:52 PM","Mar 23, 2026 12:00 PM","SCT, AMT58660",Closed,2d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 11:45 AM",6227697719,CZ100122001,2085069,"Apr 9, 2026 2:48 PM","Apr 9, 2026 6:28 PM",AMT58660,Closed,3h 39m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 22, 2026 9:25 AM",6227697722,CZ100122001,2113315,"Apr 27, 2026 6:35 PM","Apr 27, 2026 8:50 PM",AMT58660,Closed,2h 14m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 4,"May 7, 2026 12:40 PM",6227697723,CZ100122001,2142322,"May 14, 2026 7:10 PM","May 14, 2026 7:42 PM",AMT58660,Closed,31m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Biopsy,"Mar 23, 2026 12:00 AM",6227697736,CZ100122001,2060524,"Mar 25, 2026 12:53 PM","Mar 25, 2026 2:09 PM",AMT23260,Closed,1h 15m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2075611,"Apr 2, 2026 5:37 PM",,AMT58660,Closed,,,, +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2085558,"Apr 9, 2026 5:08 PM","Apr 10, 2026 2:06 PM",AMT58660,Closed,20h 58m,Jiri Pumprla,research@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Apr 16, 2026 12:00 PM",6227323332,CZ100092002,2101792,"Apr 20, 2026 6:19 PM","Apr 23, 2026 1:22 PM",AMT58660,Closed,2d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 0,"May 5, 2026 11:30 AM",6227323334,CZ100092001,2133224,"May 9, 2026 6:30 PM","May 13, 2026 10:10 AM","AMT58660, ADT809",Closed,3d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 2,"May 19, 2026 10:50 AM",6227323335,CZ100092001,2158952,"May 26, 2026 12:21 PM","May 27, 2026 9:03 AM",AMT58660,Closed,20h 42m,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Unscheduled,"Mar 17, 2026 8:00 AM",6227323265,CZ100062001,2052144,"Mar 19, 2026 4:08 PM","Mar 24, 2026 9:29 AM","PSX, SCT, AGE",Closed,4d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Screening,"Apr 20, 2026 7:45 AM",6227323234,CZ100062002,2106334,"Apr 22, 2026 7:18 PM","Apr 22, 2026 7:36 PM",AMT58660,Closed,18m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2064023,"Mar 26, 2026 7:00 PM","Mar 27, 2026 9:04 AM",PCFCOM,Closed,14h 3m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2061456,"Mar 25, 2026 6:16 PM","Mar 26, 2026 8:38 AM",AMT58660,Closed,14h 22m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 8, 2026 7:10 AM",6227323240,CZ100062001,2086807,"Apr 10, 2026 12:21 PM","Apr 18, 2026 10:40 PM","AMT58660, ADT809",Closed,8d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 4,"Apr 15, 2026 8:45 AM",6227323242,CZ100062001,2102704,"Apr 21, 2026 11:22 AM","Apr 22, 2026 7:36 PM",AMT58660,Closed,1d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Biopsy,"Feb 19, 2026 12:00 AM",6227323254,CZ100062001,2014333,"Feb 24, 2026 4:13 PM","Feb 24, 2026 8:20 PM",VST,Closed,4h 6m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10003 - Dr. Leksa Vaclav,CZECH REPUBLIC,Screening,"May 13, 2026 8:15 AM",6227323299,CZ100032001,2154732,"May 22, 2026 12:36 PM","May 25, 2026 8:57 AM",AMT58660,Closed,2d,Leksa Vaclav,vaclav.leksa@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2032628,"Mar 9, 2026 10:33 AM","Mar 9, 2026 11:58 AM",AMT58660,Closed,1h 24m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2026645,"Mar 4, 2026 12:58 PM","Mar 6, 2026 6:01 PM","AMT58660, AMT3542",Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,,6227323206,,2112374,"Apr 27, 2026 2:17 PM","May 5, 2026 11:24 AM","PCFCOM, ADT201, AMT58660, AMT3542",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Apr 23, 2026 7:40 AM",6227323207,CZ100012002,2113312,"Apr 27, 2026 6:35 PM","Apr 28, 2026 9:06 PM",AMT58660,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Mar 4, 2026 7:00 AM",6227323208,CZ100012001,2030545,"Mar 6, 2026 11:02 AM","Mar 6, 2026 11:42 AM","AMT58660, AMT688",Closed,39m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"Mar 18, 2026 7:05 AM",6227323210,CZ100012001,2053955,"Mar 20, 2026 2:50 PM","Mar 25, 2026 3:29 PM","SCD, AMT58660",Closed,5d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1976585,"Jan 30, 2026 1:21 PM","Feb 6, 2026 2:37 PM","VST, AGE",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1991148,"Feb 9, 2026 7:43 PM","Feb 13, 2026 8:04 AM",AGE,Closed,3d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"Feb 5, 2026 12:00 AM",6227323223,CZ100012001,1989998,"Feb 9, 2026 1:42 PM","Feb 10, 2026 6:46 PM",VST,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323231,,2053405,"Mar 20, 2026 12:14 PM","Mar 30, 2026 12:54 AM",PCFCOM,Closed,9d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2141856,"May 14, 2026 4:23 PM","May 19, 2026 12:54 PM","SCD, AGE",Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2152157,"May 21, 2026 11:32 AM","May 26, 2026 8:15 AM",AGE,Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2112413,"Apr 27, 2026 2:24 PM","May 5, 2026 11:25 AM","PSX, SCT, VST, AGE, ADT201",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2126904,"May 6, 2026 12:02 PM","May 12, 2026 4:58 PM","SCT, VST, AGE",Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323233,,2053482,"Mar 20, 2026 12:40 PM","Mar 27, 2026 9:58 AM",PCFCOM,Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,"Apr 8, 2026 7:10 AM",6228036554,CZ100012002,2089973,"Apr 13, 2026 3:26 PM","Apr 21, 2026 1:32 PM",AMT15602,Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"May 13, 2026 12:00 AM",6228252073,CZ100012003,2147778,"May 19, 2026 10:13 AM","May 21, 2026 4:38 PM",VST,Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"May 6, 2026 8:05 AM",6227933142,CZ100012002,2134478,"May 11, 2026 2:54 PM","May 11, 2026 3:11 PM","AMT58660, AMT3542",Closed,16m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 12,"May 13, 2026 8:05 AM",6227933143,CZ100012001,2147202,"May 18, 2026 7:51 PM","May 19, 2026 8:38 AM",AMT58660,Closed,12h 47m,Matej Falc,matesfalc@seznam.cz,Investigator +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,FALSE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv b/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv new file mode 100644 index 0000000..652a478 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_112244 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv @@ -0,0 +1,9 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,TRUE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140223 sponsor-study-36940-test-results-930525-standard.csv b/Covance_UCO3001/Source/2026-05-29_140223 sponsor-study-36940-test-results-930525-standard.csv new file mode 100644 index 0000000..65d2d3f --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140223 sponsor-study-36940-test-results-930525-standard.csv @@ -0,0 +1,709 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,20-May-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:44,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,22-May-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Alkaline Phosphatase,,68,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,GGT,,10,,,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,101,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Uric Acid,,255,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Time,Y,06:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.72,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.71,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.4,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.0,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,,H,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,294,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,LDH,,147,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatine Kinase,,112,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Magnesium,,0.76,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,102,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.68,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.92,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.94,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.40,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.7,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,308,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,14:15,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,15:25,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,14:15,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.2,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatine Kinase,,116,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Magnesium,,0.80,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Time,Y,05:55,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.07,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.83,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.67,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.1,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,314,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Direct HDL-C 4th Generation,,1.90,,H,,,1.03 - 1.53,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Triglycerides (GPO),,0.43,,L,,,0.56 - 3.62,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Cholesterol (High Performance),,3.22,,L,,,3.88 - 6.83,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,LDL Chol Friedewald 4th,,1.12,,,,,0 - 3.34,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:35,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:45,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:35,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,05:55,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,LDH,,225,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Urea Nitrogen,,10.1,,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,110,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Uric Acid,,455,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatine Kinase,,367,,H,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Bicarbonate,,24.7,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,76,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Time,Y,05:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.70,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.26,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.67,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,40.8,,,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,39.6,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,11.7,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,282,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,01-Apr-2026,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:46,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,03-Apr-2026,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,LDH,,170,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Urea Nitrogen,,9.4,R,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Uric Acid,,353,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Phosphorus,,1.32,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatine Kinase,,167,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Date,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.92,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.29,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.57,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.61,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.7,R,L,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.4,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.3,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,252,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Bilirubin,,3,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,GGT,,19,,,,,10 - 50,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Uric Acid,,429,,,,,149 - 494,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Calcium (EDTA),,2.07,,,,,2.07 - 2.64,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Protein,,55,,L,,,60 - 80,g/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,33 - 49,g/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,39 - 308,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Sodium,,148,,H,,,135 - 145,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Chloride,,110,,,,,94 - 112,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 0.98,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,GGT,,6,R,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Bicarbonate,,27.4,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,ALT (SGPT),,79,R,H,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,AST (SGOT),,51,R,H,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,GGT,,45,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,LDH,,228,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Urea Nitrogen,,8.3,,,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,106,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatine Kinase,,250,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,79,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Time,Y,08:55,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,1.08,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.4,,,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.9,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,16.1,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Triglycerides (GPO),,0.84,,,,,0.56 - 3.62,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Cholesterol (High Performance),,5.14,,,,,3.88 - 6.83,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,LDL Chol Friedewald 4th,,3.63,,H,,,0 - 3.34,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:05,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:55,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SUBJECT HEIGHT (CM),Height (cm),Y,190,,,,,cm, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.67,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.96,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.68,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.42,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.3,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.2,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.7,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,6.3,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,341,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,SUBJECT HEIGHT (CM),Height (cm),Y,188,,,,,cm, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,91,,L,,,125 - 170,g/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.31,,L,,,0.37 - 0.51, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.7,,L,,,4 - 5.8,TI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.98,,H,,,3.8 - 10.7,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.38,,H,,,1.96 - 7.23,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.49,,,,,0.8 - 3,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.88,,,,,0.12 - 0.92,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.18,,,,,0 - 0.57,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.4,,H,,,40.5 - 75,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,12.4,,L,,,15.4 - 48.5,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,465,,H,,,130 - 394,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,SUBJECT HEIGHT (CM),Height (cm),Y,158,,,,,cm, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,ALT (SGPT),,69,,H,,,5 - 48,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,GGT,,38,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,LDH,,213,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Urea Nitrogen,,8.9,,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,105,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Uric Acid,,414,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Magnesium,,0.74,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.87,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.24,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.46,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.79,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.2,R,L,,,40.5 - 75,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.9,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,13.5,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,302,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Feb-2026,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:39,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,INFLAMED AREA,Inflamed area?,,No,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Feb-2026,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,11-Feb-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,14:38,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,13-Feb-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,LDH,,190,,,,,53 - 234,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Urea Nitrogen,,8.5,,,,,1.4 - 8.6,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,115,,H,,,40 - 110,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Uric Acid,,337,,,,,125 - 488,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Phosphorus,,0.86,,,,,0.71 - 1.65,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatine Kinase,,144,,,,,39 - 308,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Bicarbonate,,27.5,,,,,19.3 - 29.3,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CKD-EPI 2021,CKD-EPI 2021 Without Race,,72,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,127 - 181,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.49,,,,,1.96 - 7.23,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,,,,0 - 0.57,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.7,,,,,40.5 - 75,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.7,,,,,15.4 - 48.5,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,224,,,,,140 - 400,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.4,,,,,0 - 6.2,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Alkaline Phosphatase,,140,,H,,,40 - 129,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,GGT,,136,,H,,,10 - 61,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Uric Acid,,408,,,,,125 - 488,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CKD-EPI 2021,CKD-EPI 2021 Without Race,,111,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,85,,L,,,127 - 181,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.30,,L,,,0.39 - 0.54, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,L,,,4.5 - 6.4,TI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,21,,L,,,26 - 34,pg +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,74,,L,,,79 - 96,fL +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,15.03,,H,,,3.8 - 10.7,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.38,,H,,,1.96 - 7.23,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.59,,,,,0.91 - 4.28,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.82,,,,,0.12 - 0.92,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,75.7,,H,,,40.5 - 75,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,529,,H,,,140 - 400,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140224 sponsor-study-36940-test-results-930525-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140224 sponsor-study-36940-test-results-930525-microbiology.csv new file mode 100644 index 0000000..a4242f9 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140224 sponsor-study-36940-test-results-930525-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100222001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 15, 2026 4:55 PM",6227323276,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R, +CZ100222002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 23, 2026 10:10 AM",6227323277,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100222004 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 12:20 PM",6227810905,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100222005 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 4, 2026 9:10 AM",6227810904,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140225 sponsor-study-36940-test-results-930556-standard.csv b/Covance_UCO3001/Source/2026-05-29_140225 sponsor-study-36940-test-results-930556-standard.csv new file mode 100644 index 0000000..3271150 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140225 sponsor-study-36940-test-results-930556-standard.csv @@ -0,0 +1,75 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,27-May-2026,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:10,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: Specimen received in expired coll. container; unable to perform test.,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,LDH,,128,,,,,53 - 234,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Uric Acid,,192,,,,,125 - 428,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Phosphorus,,1.00,,,,,0.71 - 1.65,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatine Kinase,,85,,,,,26 - 192,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,116 - 164,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.80,,,,,3.8 - 10.7,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.53,,,,,1.96 - 7.23,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.91 - 4.28,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.2,,,,,40.5 - 75,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.0,,L,,,15.4 - 48.5,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.0,,,,,0 - 6.8,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,513,,H,,,140 - 400,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-05-29_140241 sponsor-study-36940-test-results-930556-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140241 sponsor-study-36940-test-results-930556-microbiology.csv new file mode 100644 index 0000000..fba7493 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140241 sponsor-study-36940-test-results-930556-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100032001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 13, 2026 9:30 AM",6227323309,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140304 sponsor-study-36940-test-results-930549-standard.csv b/Covance_UCO3001/Source/2026-05-29_140304 sponsor-study-36940-test-results-930549-standard.csv new file mode 100644 index 0000000..533a201 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140304 sponsor-study-36940-test-results-930549-standard.csv @@ -0,0 +1,242 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Alkaline Phosphatase,,82,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,GGT,,11,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatine Kinase,,55,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Date,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Time,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,Result verified by repeat analysis,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,Result verified by repeat analysis,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.41,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.73,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.41,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.0,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,340,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,12:40,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,14:20,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,12:40,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,LDH,,138,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Uric Acid,,296,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Phosphorus,,0.77,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Time,Y,05:30,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,Result verified by repeat analysis,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,26,,,,Result verified by repeat analysis,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,Result verified by repeat analysis,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.60,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.39,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.54,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.6,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.5,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,Result verified by repeat analysis,0 - 2,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:25,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:25,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:30,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Uric Acid,,258,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Phosphorus,,0.84,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Bicarbonate,,23.0,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,131,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,115,R,L,,,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,R,L,,,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,80,,,,,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.11,,,,,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.54,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.3,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.6,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,386,,,,,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Direct HDL-C 4th Generation,,1.35,,,,,1.03 - 1.53,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Triglycerides (GPO),,1.11,,,,,0.41 - 1.63,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Cholesterol (High Performance),,4.41,,,,,3.31 - 5.64,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,LDL Chol Friedewald 4th,,2.55,,,,,0 - 3.34,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:45,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:35,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:45,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ANATOMICAL SITE,Anatomical Site,Y,15 cm,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,23-Mar-2026,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:42,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,25-Mar-2026,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Bilirubin,,<3,R,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Uric Acid,,226,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatine Kinase,,84,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Bicarbonate,,19.2,,L,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,111,R,L,,,116 - 164,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,78,R,L,,,79 - 98,fL +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.66,,,,,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.37,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.63,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.55,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.2,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,412,R,H,,,140 - 400,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140310 sponsor-study-36940-test-results-930549-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140310 sponsor-study-36940-test-results-930549-microbiology.csv new file mode 100644 index 0000000..a05daf8 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140310 sponsor-study-36940-test-results-930549-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100122001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 17, 2026 5:30 PM",6227697725,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140313 sponsor-study-36940-test-results-930555-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140313 sponsor-study-36940-test-results-930555-microbiology.csv new file mode 100644 index 0000000..90a8458 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140313 sponsor-study-36940-test-results-930555-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100062001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 16, 2026 7:20 AM",6227323244,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 11, 2026 9:15 AM",6227323245,STOOL CULTURE,,,,Test group cancelled: Specimen received beyond stability,,,,,,,,,,, +CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 17, 2026 9:00 AM",6227323243,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,, +CZ100062002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 7:45 AM",6228194341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140319 sponsor-study-36940-test-results-930555-standard.csv b/Covance_UCO3001/Source/2026-05-29_140319 sponsor-study-36940-test-results-930555-standard.csv new file mode 100644 index 0000000..71d4c30 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140319 sponsor-study-36940-test-results-930555-standard.csv @@ -0,0 +1,409 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.8,,,,,0 - 6.2,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,40 - 129,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,LDH,,124,,,,,53 - 234,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Uric Acid,,298,,,,,125 - 488,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatine Kinase,,106,,,,,39 - 308,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,127 - 181,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,L,,,4.5 - 6.4,TI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.10,,,,,3.8 - 10.7,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.34,,,,,1.96 - 7.23,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.09,,,,,0.91 - 4.28,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.4,,,,,15.4 - 48.5,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.5,,,,,2.6 - 10.1,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,270,,,,,140 - 400,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,IS SUBJECT FASTING?,Is Subject Fasting?,Y,,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Direct HDL-C 4th Generation,,0.90,,L,,,1.03 - 1.53,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.62 - 3.69,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Cholesterol (High Performance),,2.48,,L,,Result verified by repeat analysis,4.19 - 7.24,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,LDL Chol Friedewald 4th,,1.18,,,,,0 - 3.34,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ANATOMICAL SITE,Anatomical Site,Y,15-20,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,14-May-2026,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:15,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,16-May-2026,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatine Kinase,,281,,,,,39 - 308,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Bicarbonate,,26.0,,,,,19.3 - 29.3,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,108,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.17,,,,,3.8 - 10.7,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.25,,,,,1.96 - 7.23,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.20,,,,,0.91 - 4.28,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.22,,,,,0 - 0.57,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.9,,,,,15.4 - 48.5,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.3,,,,,0 - 6.8,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.7,,H,,,0 - 2,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,306,,,,,140 - 400,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,LDH,,118,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Urea Nitrogen,,1.6,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Uric Acid,,424,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Phosphorus,,1.29,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Magnesium,,0.93,,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Date,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Time,Y,20:30,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,R,L,,,127 - 181,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,79 - 96,fL +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,14.93,R,H,,,3.8 - 10.7,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,10.00,R,H,,,1.96 - 7.23,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.79,R,H,,,0.12 - 0.92,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.60,R,H,,,0 - 0.57,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.0,,,,,40.5 - 75,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.0,R,H,,,2.6 - 10.1,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,647,R,H,,,140 - 400,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:40,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,20:30,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,LDH,,113,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Urea Nitrogen,,2.0,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Uric Acid,,410,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Phosphorus,,1.28,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Magnesium,,0.93,R,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,115,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Time,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,LDH,,141,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Glucose,,4.0,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Uric Acid,,415,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,128,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Time,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,L,,,127 - 181,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 96,fL +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.09,,H,,,3.8 - 10.7,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.29,,H,,,1.96 - 7.23,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.23,,,,,0.91 - 4.28,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.31,,H,,,0.12 - 0.92,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.0,,,,,40.5 - 75,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.0,,,,,2.6 - 10.1,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,445,,H,,,140 - 400,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Direct HDL-C 4th Generation,,1.53,,,,,1.03 - 1.53,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.42 - 1.67,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Cholesterol (High Performance),,4.16,,,,,2.95 - 5.12,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,LDL Chol Friedewald 4th,,2.26,,,,,0 - 3.34,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,TB Testing,,"Mar 11, 2026 9:10 AM",6227323253,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ANATOMICAL SITE,Anatomical Site,Y,18,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY COLLECTION METHOD,Collection Method,Y,sigmoidoscopy,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-Feb-2026,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Feb-2026,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Alkaline Phosphatase,,93,,,,,55 - 149,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,GGT,,64,,H,,,10 - 61,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Urea Nitrogen,,1.5,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Uric Acid,,288,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Phosphorus,,0.85,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Albumin-BCG,,39,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatine Kinase,,34,,L,,,39 - 308,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Bicarbonate,,25.5,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Magnesium,,0.95,,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CKD-EPI 2021,CKD-EPI 2021 Without Race,,133,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,TB Testing,,"Feb 16, 2026 7:03 AM",6227323252,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Indeterminate,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140326 sponsor-study-36940-test-results-930547-standard.csv b/Covance_UCO3001/Source/2026-05-29_140326 sponsor-study-36940-test-results-930547-standard.csv new file mode 100644 index 0000000..d606dbc --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140326 sponsor-study-36940-test-results-930547-standard.csv @@ -0,0 +1,500 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Uric Acid,,346,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatine Kinase,,206,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Time,Y,07:00,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,H,,,79 - 96,fL +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.61,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.81,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.50,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.0,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.1,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.9,,,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,283,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:05,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:10,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:05,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:00,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,25-May-2026,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:05,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,INFLAMED AREA,Inflamed area?,,,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,27-May-2026,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Glucose,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Calcium (EDTA),,2.48,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatine Kinase,,204,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Time,Y,08:50,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.64,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.04,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.59,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.9,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.4,,H,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,275,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Direct HDL-C 4th Generation,,1.26,,,,,1.03 - 1.53,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Triglycerides (GPO),,1.63,,,,,0.5 - 2.81,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Cholesterol (High Performance),,4.71,,,,,3.31 - 6.1,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,LDL Chol Friedewald 4th,,2.70,,,,,0 - 3.34,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:25,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:30,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:25,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:50,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,35 - 104,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,GGT,,34,,,,,4 - 49,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Urea Nitrogen,,2.8,,,,,1.4 - 8.6,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,125 - 428,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,95,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,116 - 164,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 98,fL +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.91,,,,,3.8 - 10.7,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.94,,,,,1.96 - 7.23,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.35,,,,,0.91 - 4.28,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.5,,,,,40.5 - 75,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.5,,,,,15.4 - 48.5,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,271,,,,,140 - 400,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,GGT,,21,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,LDH,,172,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Urea Nitrogen,,6.2,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Uric Acid,,297,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Bicarbonate,,26.7,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,123,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Date,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.31,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.98,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.0,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.0,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.0,,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,226,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:50,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,21-Apr-2026,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:45,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Apr-2026,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Bicarbonate,,26.5,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,150,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.89,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.84,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.7,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.7,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,R,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,217,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:00,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,LDH,,130,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,82,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Glucose,,7.1,,H,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Uric Acid,,301,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Phosphorus,,1.42,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatine Kinase,,91,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,114,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,R,L,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,34,,,,,26 - 34,pg +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.60,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.44,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.11,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.28,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.8,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.6,,,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.7,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,256,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Urea Nitrogen,,7.7,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Phosphorus,,1.04,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Magnesium,,0.78,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Date,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Time,Y,07:30,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.53,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.3,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.6,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.4,R,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,235,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Direct HDL-C 4th Generation,,1.91,,H,,,1.03 - 1.53,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Triglycerides (GPO),,0.67,,,,,0.5 - 2.81,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Cholesterol (High Performance),,4.26,,,,,3.31 - 6.1,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,LDL Chol Friedewald 4th,,2.04,,,,,0 - 3.34,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:40,R,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:40,R,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,07:30,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,12-Mar-2026,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:52,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,14-Mar-2026,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Glucose,,6.6,,H,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Uric Acid,,358,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.88,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,49.4,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.9,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,9.9,,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,222,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,SUBJECT HEIGHT (CM),Height (cm),Y,163,,,,,cm, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140330 sponsor-study-36940-test-results-930547-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140330 sponsor-study-36940-test-results-930547-microbiology.csv new file mode 100644 index 0000000..b9b31df --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140330 sponsor-study-36940-test-results-930547-microbiology.csv @@ -0,0 +1,5 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100132001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 26, 2026 10:35 AM",6227635149,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100132002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 1, 2026 8:30 AM",6227635148,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100132003 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 7, 2026 5:45 AM",6227635150,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140333 sponsor-study-36940-test-results-930539-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140333 sponsor-study-36940-test-results-930539-microbiology.csv new file mode 100644 index 0000000..035d1ae --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140333 sponsor-study-36940-test-results-930539-microbiology.csv @@ -0,0 +1,5 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 24, 2026 8:45 AM",6227635182,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 6, 2026 9:30 AM",6228610564,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,, +CZ100162002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 27, 2026 1:15 PM",6227635180,STOOL CULTURE,,,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140341 sponsor-study-36940-test-results-930539-standard.csv b/Covance_UCO3001/Source/2026-05-29_140341 sponsor-study-36940-test-results-930539-standard.csv new file mode 100644 index 0000000..54c2205 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140341 sponsor-study-36940-test-results-930539-standard.csv @@ -0,0 +1,178 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Alkaline Phosphatase,,50,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,AST (SGOT),,10,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,GGT,,15,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,LDH,,167,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Glucose,,5.7,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Uric Acid,,239,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Calcium (EDTA),,2.22,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Protein,,60,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatine Kinase,,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Sodium,,140,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Bicarbonate,,26.1,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Chloride,,102,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Magnesium,,0.88,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Date,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Time,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.78,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.55,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.58,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.8,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.3,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.6,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,371,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,IS SUBJECT FASTING?,Is Subject Fasting?,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Direct HDL-C 4th Generation,,1.18,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Triglycerides (GPO),,1.61,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Cholesterol (High Performance),,4.55,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,LDL Chol Friedewald 4th,,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,,,,,,, +Removed,,,,,,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,,,, +CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Alkaline Phosphatase,,105,,,,,40 - 129,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,LDH,,194,,,,,53 - 234,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,40 - 110,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,125 - 488,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatine Kinase,,67,,,,,39 - 308,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.92,,,,,3.8 - 10.7,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.54,,,,,1.96 - 7.23,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.20,,,,,0.12 - 0.92,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,80.1,,H,,,40.5 - 75,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.5,,,,,15.4 - 48.5,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,2.8,,,,,2.6 - 10.1,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,363,,,,,140 - 400,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-May-2026,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:40,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,21-May-2026,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,,,, +CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,5 - 48,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Urea Nitrogen,,6.8,,,,,1.4 - 8.6,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,125 - 488,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Phosphorus,,0.76,,,,,0.71 - 1.65,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatine Kinase,,36,R,L,,,39 - 308,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Bicarbonate,,26.8,,,,,19.3 - 29.3,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,84,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.56,,H,,,3.8 - 10.7,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.03,,H,,,1.96 - 7.23,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.36,,,,,0 - 0.57,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,81.3,,H,,,40.5 - 75,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,10.2,,L,,,15.4 - 48.5,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,233,,,,,140 - 400,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-microbiology.csv new file mode 100644 index 0000000..e9d3b93 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100012001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R, +CZ100012001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Apr 22, 2026 7:00 AM",6228137359,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100012002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 1:00 PM",6227323212,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100012003 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 29, 2026 7:55 AM",6227323213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-standard.csv b/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-standard.csv new file mode 100644 index 0000000..969a6a7 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140350 sponsor-study-36940-test-results-930557-standard.csv @@ -0,0 +1,738 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,40 - 129,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,GGT,,63,R,H,,,10 - 61,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Glucose,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatine Kinase,,217,,,,,39 - 308,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.70,,,,,3.8 - 10.7,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.42,,,,,1.96 - 7.23,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.25,,,,,0.91 - 4.28,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.75,,,,,0.12 - 0.92,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.0,,,,,40.5 - 75,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.4,,,,,15.4 - 48.5,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,483,R,H,,,140 - 400,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,40 - 129,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Urea Nitrogen,,6.4,,,,,1.4 - 8.6,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 119,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Uric Acid,,324,,,,,149 - 494,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,39 - 308,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Bicarbonate,,20.6,,,,,19.3 - 29.3,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Magnesium,,0.84,,,,,0.66 - 1.07,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Date,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Time,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.50,,,,,0.39 - 0.54, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.01,,,,,3.8 - 10.7,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,7.04,,,,,1.96 - 7.23,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.1,,H,,,40.5 - 75,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.3,,L,,,15.4 - 48.5,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.9,,,,,2.6 - 10.1,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,265,,,,,140 - 400,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Triglycerides (GPO),,0.65,,,,,0.65 - 3.61,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Cholesterol (High Performance),,4.32,,L,,,4.4 - 7.53,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,LDL Chol Friedewald 4th,,2.68,,,,,0 - 3.34,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,GGT,,30,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,LDH,,238,,H,,,53 - 234,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,84,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Uric Acid,,328,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatine Kinase,,96,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.67,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.93,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.10,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.4,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.3,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Direct HDL-C 4th Generation,,2.02,,H,,,1.03 - 1.53,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Triglycerides (GPO),,1.21,,,,,0.62 - 3.69,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Cholesterol (High Performance),,5.32,,,,,4.19 - 7.24,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:30,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,13-May-2026,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:00,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,15-May-2026,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,LDH,,181,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,54,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Glucose,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Uric Acid,,293,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Protein,,79,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Bicarbonate,,22.3,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.54,,,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.11,,,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.5,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.4,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,117,R,L,,,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,06-May-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,08-May-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Alkaline Phosphatase,,115,,,,,40 - 129,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 119,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Uric Acid,,306,,,,,149 - 494,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 1.07,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,,,,,127 - 181,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.5,,,,,4.5 - 6.4,TI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.61,,,,,3.8 - 10.7,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.63,,,,,1.96 - 7.23,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.0,,,,,40.5 - 75,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.7,,,,,15.4 - 48.5,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,242,,,,,140 - 400,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Alkaline Phosphatase,,102,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Glucose,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Uric Acid,,252,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Protein,,76,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Date,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Time,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,Result verified by repeat analysis,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,Result verified by repeat analysis,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,Result verified by repeat analysis,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.47,,L,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.78,,L,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.46,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.16,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.4,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.2,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,Result verified by repeat analysis,0 - 2,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,118,,L,,Result verified by repeat analysis,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.7,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Alkaline Phosphatase,,96,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,GGT,,19,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Glucose,,6.2,R,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Uric Acid,,284,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Magnesium,,0.97,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.59,R,L,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.64,R,L,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.19,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.6,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.9,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,126,R,L,,,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Direct HDL-C 4th Generation,,2.07,R,H,,,1.03 - 1.53,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Triglycerides (GPO),,1.04,,,,,0.63 - 2.71,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Cholesterol (High Performance),,4.56,R,L,,,5.35 - 9.1,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,LDL Chol Friedewald 4th,,2.01,,,,,0 - 3.34,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:15,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,ALT (SGPT),,50,,H,,,5 - 48,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,GGT,,25,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Urea Nitrogen,,6.7,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Uric Acid,,302,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Phosphorus,,1.95,R,H,,,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Bicarbonate,,24.8,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Magnesium,,0.95,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,92,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Date,Y,17-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.77,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.03,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.25,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.3,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.6,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,327,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,17-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ANATOMICAL SITE,Anatomical Site,Y,25 DISTANCE IN CM FROM ANAL VERGE,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Mar-2026,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:30,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Mar-2026,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALP<2XULN,ALP<2XULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN,ALT >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Uric Acid,,276,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Bicarbonate,,20.3,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Date,Y,03-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,155,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.57,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.08,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.16,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,73.3,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.7,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.7,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:00,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,03-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,GGT,,27,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,LDH,,120,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,49,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Glucose,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Protein,,75,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatine Kinase,,101,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,93,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,80 - 100,fL +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.95,,,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.86,,L,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.1,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,45.7,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,150,,,,,130 - 394,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Bilirubin,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Glucose,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Protein,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Albumin-BCG,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Sodium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Chloride,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Magnesium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CKD-EPI 2021,CKD-EPI 2021 Without Race,,Required testing unavailable,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Date,Y,18-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.88,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.46,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.78,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.4,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.2,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,330,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Direct HDL-C 4th Generation,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Triglycerides (GPO),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Cholesterol (High Performance),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:20,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:20,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,18-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,05-Feb-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:30,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,07-Feb-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,LDH,,146,,,,,53 - 234,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Phosphorus,,0.48,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatine Kinase,,60,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Magnesium,,0.92,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CKD-EPI 2021,CKD-EPI 2021 Without Race,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.92,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.40,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.00,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.1,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.2,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,309,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140353 sponsor-study-36940-test-results-930553-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140353 sponsor-study-36940-test-results-930553-microbiology.csv new file mode 100644 index 0000000..95b16c0 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140353 sponsor-study-36940-test-results-930553-microbiology.csv @@ -0,0 +1,4 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100092001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 2, 2026 6:15 AM",6227323340,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100092002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 6:10 AM",6227323341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140402 sponsor-study-36940-test-results-930553-standard.csv b/Covance_UCO3001/Source/2026-05-29_140402 sponsor-study-36940-test-results-930553-standard.csv new file mode 100644 index 0000000..2a84d67 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140402 sponsor-study-36940-test-results-930553-standard.csv @@ -0,0 +1,250 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Bilirubin,,17,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.0,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,GGT,,15,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Uric Acid,,196,,,,,149 - 446,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Date,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.57,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.33,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.9,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.9,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,258,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:50,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:50,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,LDH,,152,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Uric Acid,,178,,,,,149 - 446,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.60,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.94,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.22,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.5,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,207,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,,1.03 - 1.53,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Triglycerides (GPO),,0.59,,,,,0.59 - 2.96,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Cholesterol (High Performance),,4.49,,,,,4.42 - 7.53,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,LDL Chol Friedewald 4th,,2.52,,,,,0 - 3.34,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,12:45,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092002,,,,,Female,TB Testing,,"May 5, 2026 9:00 AM",6227323348,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,24-Apr-2026,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:09,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,29-Apr-2026,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,GGT,,10,,,,,4 - 49,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,90,,,,,31 - 101,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Uric Acid,,268,,,,,149 - 446,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatine Kinase,,176,,,,,26 - 192,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Bicarbonate,,27.2,,,,,19.3 - 29.3,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Magnesium,,0.93,,,,,0.66 - 1.07,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,65,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.05,,,,,3.8 - 10.7,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.87,,L,,,1.96 - 7.23,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.1,,,,,40.5 - 75,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.6,,,,,15.4 - 48.5,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,216,,,,,140 - 400,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Positive,,RX,,Result verified by repeat analysis,Normal=Negative, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Quantitative",,0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,LDH,,137,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Uric Acid,,207,,,,,125 - 428,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatine Kinase,,81,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.74,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.76,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.18,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.26,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.6,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.5,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,263,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-05-29_140413 sponsor-study-36940-test-results-930536-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140413 sponsor-study-36940-test-results-930536-microbiology.csv new file mode 100644 index 0000000..4dfdeb2 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140413 sponsor-study-36940-test-results-930536-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100201001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 13, 2026 6:00 AM",6227993971,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140415 sponsor-study-36940-test-results-930536-standard.csv b/Covance_UCO3001/Source/2026-05-29_140415 sponsor-study-36940-test-results-930536-standard.csv new file mode 100644 index 0000000..0f4a823 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140415 sponsor-study-36940-test-results-930536-standard.csv @@ -0,0 +1,127 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,191,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Alkaline Phosphatase,,282,,,,,82 - 331,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,6 - 43,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,AST (SGOT),,26,,,,,10 - 40,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,GGT,,15,,,,,0 - 51,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,LDH,,214,,,,,105 - 235,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,23 - 83,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,184 - 416,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.1 - 2.57,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Phosphorus,,1.58,,,,,0.71 - 1.65,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Protein,,85,,H,,,61 - 84,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,29 - 47,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatine Kinase,,65,,,,,18 - 363,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.7 - 0.9,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CRP COPY,C Reactive Protein COPY,,1.9,,,,,0.4 - 2,mg/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL CALPROTECTIN COPY,Fecal Calprotectin COPY,,3749.9,,H,,,Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Date,Y,17-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,127 - 181,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,,4.5 - 6.4,TI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,,26 - 34,pg +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.73,,,,,4.35 - 13.15,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.06,,,,,1.65 - 8.15,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.42,,,,,0.95 - 5.25,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.83,,,,,0.4 - 1.3,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,H,,,0 - 0.3,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.0,,,,,40.5 - 75,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.5,,H,,,4 - 8,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.5,,H,,,0 - 2.8,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 1,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,607,,H,,,140 - 400,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Direct HDL-C 4th Generation,,1.27,,,,,1.03 - 1.53,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.42 - 1.67,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Cholesterol (High Performance),,3.50,,,,,2.95 - 5.12,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,LDL Chol Friedewald 4th,,1.69,,,,,0 - 3.34,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:28,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:52,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:28,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,17-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ANATOMICAL SITE,Anatomical Site,Y,20-25,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,15-Apr-2026,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,17-Apr-2026,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,211,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Alkaline Phosphatase,,322,,,,,82 - 331,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,6 - 43,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,AST (SGOT),,29,,,,,10 - 40,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,GGT,,17,,,,,0 - 51,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,LDH,,221,,,,,105 - 235,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,46,,,,,23 - 83,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Glucose,,4.1,,,,,3.9 - 5.6,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Uric Acid,,326,,,,,184 - 416,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.1 - 2.57,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Phosphorus,,1.72,,H,,,0.71 - 1.65,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Protein,,87,,H,,,61 - 84,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,29 - 47,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatine Kinase,,94,,,,,18 - 363,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Bicarbonate,,20.7,,,,,19.3 - 29.3,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.7 - 0.9,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,,L,,Result verified by repeat analysis,127 - 181,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,Result verified by repeat analysis,4.5 - 6.4,TI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,Result verified by repeat analysis,26 - 34,pg +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.04,,,,Result verified by repeat analysis,4.35 - 13.15,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.19,,,,Result verified by repeat analysis,1.65 - 8.15,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.73,,,,,0.95 - 5.25,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.77,,,,Result verified by repeat analysis,0.4 - 1.3,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,Result verified by repeat analysis,0 - 0.3,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.7,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,Result verified by repeat analysis,4 - 8,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,H,,Result verified by repeat analysis,0 - 2.8,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 1,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,490,,H,,Result verified by repeat analysis,140 - 400,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm, +CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140431 sponsor-study-36940-test-results-930531-microbiology.csv b/Covance_UCO3001/Source/2026-05-29_140431 sponsor-study-36940-test-results-930531-microbiology.csv new file mode 100644 index 0000000..9f10aa5 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140431 sponsor-study-36940-test-results-930531-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100212001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 1, 2026 2:00 PM",6227635213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-05-29_140435 sponsor-study-35472-test-results-898745-standard.csv b/Covance_UCO3001/Source/2026-05-29_140435 sponsor-study-35472-test-results-898745-standard.csv new file mode 100644 index 0000000..d9b79db --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140435 sponsor-study-35472-test-results-898745-standard.csv @@ -0,0 +1,2448 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,GGT,,30,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,49,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Uric Acid,,314,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Creatine Kinase,,202,,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.81,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.47,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.67,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.7,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.7,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,504,,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.6,,H,,,<6.5 %, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,23.94,,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Triglycerides (GPO),,2.54,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Cholesterol (High Performance),,6.04,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,LDL Chol Friedewald 4th,,3.54,,H,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,TSH,TSH 3rd IS-QT,,3.138,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,C-REACTIVE PROTEIN,C Reactive Protein HS,,10.2,,H,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,GGT,,22,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,LDH,,185,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,64,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Glucose Fasting,,6.3,R,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Uric Acid,,316,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Total Protein,,80,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Albumin-BCG,,47,R,H,,,33 - 46,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Sodium,,136,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Bicarbonate,,18.7,R,L,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,163,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.50,R,H,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.22,R,H,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.82,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.47,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.75,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.8,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,285,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.9,,,,,<6.5 %, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.61,,,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Triglycerides (GPO),,2.89,R,H,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Cholesterol (High Performance),,7.08,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,LDL Chol Friedewald 4th,,4.40,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,TSH,TSH 3rd IS-QT,,0.546,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.3,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CELLULAR ELEMENTS,Ur WBC/HPF,,8,,,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,GGT,,32,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Uric Acid,,383,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Creatine Kinase,,201,,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Bicarbonate,,21.6,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,95,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.33,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.06,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.53,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.53,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.6,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.1,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,525,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.12,,,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Direct HDL-C 4th Generation,,1.37,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Triglycerides (GPO),,2.79,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Cholesterol (High Performance),,6.50,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,LDL Chol Friedewald 4th,,3.85,,H,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,35 - 104,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,GGT,,36,,,,,4 - 49,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,LDH,,192,,,,,53 - 234,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,149 - 446,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Calcium (EDTA),,2.08,,,,,2.07 - 2.64,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Total Protein,,62,,,,,61 - 84,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Creatine Kinase,,84,,,,,26 - 192,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Sodium,,144,,,,,132 - 147,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Potassium,,3.5,,,,,3.5 - 5.2,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.40,,,,,3.8 - 10.7,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.63,,,,,1.96 - 7.23,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.90,,,,,0.91 - 4.28,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.78,,,,,0.12 - 0.92,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,48.8,,,,,40.5 - 75,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,14.4,R,H,,,2.6 - 10.1,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,248,,,,,140 - 400,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.25,,,,,1.9 - 23,uIU/mL +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Direct HDL-C 4th Generation,,1.92,,H,,,1.03 - 1.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Triglycerides (GPO),,1.20,,,,,0.59 - 2.96,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Cholesterol (High Performance),,3.66,,L,,,4.42 - 7.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,LDL Chol Friedewald 4th,,1.19,,,,,0 - 3.34,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,TSH,TSH 3rd IS-QT,,3.352,,,,,0.45 - 5.33,mIU/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Alkaline Phosphatase,,137,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,GGT,,14,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,LDH,,170,,,,,53 - 234,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,61,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Uric Acid,,204,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Creatine Kinase,,78,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Sodium,,145,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Bicarbonate,,21.6,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,150,,,,,115 - 158,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.17,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.80,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.79,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.0,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,239,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.88,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Direct HDL-C 4th Generation,,1.85,,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Triglycerides (GPO),,0.61,,L,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Cholesterol (High Performance),,5.06,,,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,LDL Chol Friedewald 4th,,2.93,,,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,TSH,TSH 3rd IS-QT,,0.955,,,,,0.45 - 5.33,mIU/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.2,,,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,GGT,,16,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,64,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Creatine Kinase,,151,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Chloride,,108,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.94,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.03,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.45,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,75.9,R,H,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.3,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,244,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.00,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Triglycerides (GPO),,0.74,,,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Cholesterol (High Performance),,4.25,,L,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,TSH,TSH 3rd IS-QT,,1.798,,,,,0.45 - 5.33,mIU/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Alkaline Phosphatase,,81,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,GGT,,19,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,LDH,,193,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Uric Acid,,206,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Phosphorus,,1.36,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Sodium,,145,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Bicarbonate,,25.9,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.84,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.66,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.78,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.0,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.8,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.31,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Direct HDL-C 4th Generation,,1.64,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Triglycerides (GPO),,0.68,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Cholesterol (High Performance),,5.02,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,LDL Chol Friedewald 4th,,3.07,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,TSH,TSH 3rd IS-QT,,1.896,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.6,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,GGT,,32,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,39,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Uric Acid,,335,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Calcium (EDTA),,2.12,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Albumin-BCG,,39,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Bicarbonate,,20.2,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,DIRECT LDL,Direct LDL-C 3rd Gen,,3.40,,H,,,<3.36 mmol/L, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.75,,H,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.71,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,4.08,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.60,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.7,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,550,,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.7,R,H,,,<6.5 %, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,73.67,R,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Direct HDL-C 4th Generation,,1.00,,L,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Triglycerides (GPO),,5.91,,H SF,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Cholesterol (High Performance),,5.54,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,LDL Chol Friedewald 4th,,,,,Test cancelled: Invalid/High Triglycerides,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,TSH,TSH 3rd IS-QT,,2.578,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,35 - 104,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,AST (SGOT),,36,,,,,8 - 40,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,GGT,,43,,,,,4 - 49,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,LDH,,193,,,,,53 - 234,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Uric Acid,,321,,,,,149 - 446,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Calcium (EDTA),,2.13,,,,,2.07 - 2.64,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Creatine Kinase,,93,,,,,26 - 192,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Potassium,,3.7,,,,,3.5 - 5.2,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Bicarbonate,,25.6,,,,,19.3 - 29.3,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Chloride,,107,,,,,94 - 112,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.65,,,,,1.25 - 1.92,mL/sec +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.1,,,,,kg, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,GFR,EGFR by MDRD,,81,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.08,,,,,3.8 - 10.7,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.60,,,,,1.96 - 7.23,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.91 - 4.28,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.1,,,,,40.5 - 75,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.3,,,,,15.4 - 48.5,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.2,R,H,,,2.6 - 10.1,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,267,,,,,140 - 400,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.13,,,,,1.9 - 23,uIU/mL +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Direct HDL-C 4th Generation,,2.21,,H,,,1.03 - 1.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.59 - 2.96,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Cholesterol (High Performance),,3.95,,L,,,4.42 - 7.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,LDL Chol Friedewald 4th,,1.37,,,,,0 - 3.34,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,TSH,TSH 3rd IS-QT,,3.004,,,,,0.45 - 5.33,mIU/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,GGT,,17,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Uric Acid,,265,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Phosphorus,,1.45,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Albumin-BCG,,47,R,H,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Creatine Kinase,,80,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.76,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.09,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.77,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.73,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.1,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.6,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.5,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,307,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.8,,,,,<6.5 %, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Triglycerides (GPO),,3.03,,H,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Cholesterol (High Performance),,7.15,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,LDL Chol Friedewald 4th,,4.40,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,TSH,TSH 3rd IS-QT,,1.854,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,LDH,,235,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Uric Acid,,308,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.03,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.95,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.62,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.6,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.2,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.28,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Cholesterol (High Performance),,6.97,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,LDL Chol Friedewald 4th,,5.09,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,TSH,TSH 3rd IS-QT,,,,,Test group cancelled: No specimen received,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.8,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.1,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Alkaline Phosphatase,,86,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,ALT (SGPT),,61,R,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,AST (SGOT),,37,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,GGT,,25,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,LDH,,181,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Glucose Fasting,,6.1,R,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Uric Acid,,287,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Bicarbonate,,25.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.52,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.64,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.27,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.7,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.2,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,310,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,18.47,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Direct HDL-C 4th Generation,,0.95,R,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Cholesterol (High Performance),,2.38,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,LDL Chol Friedewald 4th,,0.91,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,TSH,TSH 3rd IS-QT,,0.827,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Total Bilirubin,,19,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.6,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Alkaline Phosphatase,,122,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,GGT,,12,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Uric Acid,,223,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Creatine Kinase,,85,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,115 - 158,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.41,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.51,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.33,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.7,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.2,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,232,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.38,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Direct HDL-C 4th Generation,,1.74,R,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Triglycerides (GPO),,0.57,R,L,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Cholesterol (High Performance),,4.75,R,L,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.5,R,H,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,GGT,,14,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Uric Acid,,207,,,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Creatine Kinase,,78,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Chloride,,107,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.75,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.15,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.07,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,72.1,,,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.6,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,234,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.19,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Direct HDL-C 4th Generation,,1.30,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Triglycerides (GPO),,0.41,,L,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Cholesterol (High Performance),,4.53,,L,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,LDL Chol Friedewald 4th,,3.04,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,GGT,,23,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,LDH,,214,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Uric Acid,,248,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Phosphorus,,0.93,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Creatine Kinase,,128,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Bicarbonate,,25.8,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.44,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.15,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,290,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.23,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Direct HDL-C 4th Generation,,1.67,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Cholesterol (High Performance),,5.28,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,LDL Chol Friedewald 4th,,3.21,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,TSH,TSH 3rd IS-QT,,1.525,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.4,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Alkaline Phosphatase,,81,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,GGT,,52,,H,,,4 - 49,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,66,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Creatine Kinase,,118,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.38,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.04,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.60,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.6,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,40.7,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.6,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,315,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.83,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Triglycerides (GPO),,2.24,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Cholesterol (High Performance),,5.71,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,LDL Chol Friedewald 4th,,2.98,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,TSH,TSH 3rd IS-QT,,4.319,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Alkaline Phosphatase,,130,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,GGT,,13,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Urea Nitrogen,,5.6,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Phosphorus,,0.93,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Creatine Kinase,,59,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.61,,,,,1.25 - 1.92,mL/sec +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.5,,,,,kg, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,FSH,Follicle Stimulating Hormone,,57.83,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,GFR,EGFR by MDRD,,83,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,R,H,,,115 - 158,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,R,H,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.19,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.31,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.30,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.18,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,255,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.27,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Triglycerides (GPO),,0.84,,,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Cholesterol (High Performance),,5.60,,,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,LDL Chol Friedewald 4th,,3.52,,H,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,TSH,TSH 3rd IS-QT,,0.932,,,,,0.45 - 5.33,mIU/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CELLULAR ELEMENTS,Ur WBC/HPF,,48,R,H,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,GGT,,28,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,LDH,,141,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Glucose Fasting,,6.7,R,H,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Uric Acid,,325,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Creatine Kinase,,205,R,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.95,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.30,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.84,R,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.62,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.3,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.6,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.2,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,486,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,118.97,R,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Triglycerides (GPO),,2.60,R,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Cholesterol (High Performance),,5.47,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,LDL Chol Friedewald 4th,,2.96,,,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Specific Gravity,,1.033,R,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Protein,,+2,R,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Ketones,,Trace,R,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,R,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,C-REACTIVE PROTEIN,C Reactive Protein HS,,9.0,R,H,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CELLULAR ELEMENTS,Ur WBC/HPF,,6,,,,,0 - 12,/HPF +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CELLULAR ELEMENTS,Ur Squamous Epithelial Cells,,38,,,,,0 - 3,/HPF +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,GGT,,16,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,LDH,,183,,,,,53 - 234,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Uric Acid,,133,R,L,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.29,,,,,1.25 - 1.92,mL/sec +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,58.2,,,,,kg, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,GFR,EGFR by MDRD,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.46,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.63,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.19,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.4,,,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.7,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.0,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,247,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.23,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Direct HDL-C 4th Generation,,1.28,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Triglycerides (GPO),,0.70,,,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Cholesterol (High Performance),,4.86,,,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,LDL Chol Friedewald 4th,,3.26,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,TSH,TSH 3rd IS-QT,,1.723,,,,,0.45 - 5.33,mIU/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Glucose,,Trace,R,H,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.1,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,GGT,,17,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Urea Nitrogen,,6.7,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,70,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Glucose Fasting,,5.7,R,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Uric Acid,,312,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Phosphorus,,1.48,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.57,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.16,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.42,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.76,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.8,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.0,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.83,,,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Direct HDL-C 4th Generation,,1.33,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Triglycerides (GPO),,2.03,,,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Cholesterol (High Performance),,6.94,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,LDL Chol Friedewald 4th,,4.68,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CELLULAR ELEMENTS,Ur Transitional Epi Cells,,1,,,,,0 /HPF, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Alkaline Phosphatase,,79,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,GGT,,17,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,LDH,,205,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Uric Acid,,239,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.66,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.75,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.6,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.4,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,312,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.82,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Triglycerides (GPO),,0.71,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Cholesterol (High Performance),,5.23,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,LDL Chol Friedewald 4th,,3.22,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CELLULAR ELEMENTS,Ur WBC/HPF,,>150,,HT,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Alkaline Phosphatase,,76,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,GGT,,25,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,LDH,,130,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Creatine Kinase,,154,,,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Bicarbonate,,23.0,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.63,,H,,,1.25 - 1.92,mL/sec +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.2,,,,,kg, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,GFR,EGFR by MDRD,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.22,R,H,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.93,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.51,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.50,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.22,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.8,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.3,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,509,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,39.05,,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Direct HDL-C 4th Generation,,1.21,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Triglycerides (GPO),,3.23,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Cholesterol (High Performance),,5.80,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,LDL Chol Friedewald 4th,,3.11,,,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,TSH,TSH 3rd IS-QT,,2.280,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CELLULAR ELEMENTS,Ur WBC/HPF,,32,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,ALT (SGPT),,55,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,LDH,,175,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Glucose Fasting,,7.2,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Uric Acid,,263,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Phosphorus,,0.95,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Creatine Kinase,,38,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.29,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.53,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.07,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.2,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.5,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.2,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.1,,,,,0 - 2,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,296,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.25,,H,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Direct HDL-C 4th Generation,,1.02,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Triglycerides (GPO),,1.15,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Cholesterol (High Performance),,2.80,,L,,,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,LDL Chol Friedewald 4th,,1.25,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,TSH,TSH 3rd IS-QT,,0.595,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.8,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,GGT,,15,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Glucose Fasting,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Uric Acid,,320,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Phosphorus,,1.31,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.29,,,,,1.25 - 1.92,mL/sec +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.5,,,,,kg, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,FSH,Follicle Stimulating Hormone,,78.10,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,GFR,EGFR by MDRD,,81,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,165,,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.07,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.15,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.08,,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.0,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.6,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,269,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.9,,,,,<6.5 %, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,47.53,,H,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Direct HDL-C 4th Generation,,1.28,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Triglycerides (GPO),,1.84,,,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Cholesterol (High Performance),,6.82,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,LDL Chol Friedewald 4th,,4.70,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,TSH,TSH 3rd IS-QT,,1.806,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.0,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CELLULAR ELEMENTS,Ur WBC/HPF,,27,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,ALT (SGPT),,53,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,GGT,,26,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,LDH,,172,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Uric Acid,,279,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Creatine Kinase,,45,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.45,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.94,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.68,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.7,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,302,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,13.07,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Direct HDL-C 4th Generation,,0.98,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Triglycerides (GPO),,0.95,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Cholesterol (High Performance),,2.57,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,LDL Chol Friedewald 4th,,1.15,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CELLULAR ELEMENTS,Ur Transitional Epi Cells,,1,,,,,0 /HPF, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,LDH,,203,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,70,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Uric Acid,,221,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Creatine Kinase,,96,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Bicarbonate,,27.1,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.16,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.30,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.50,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.2,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.0,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,272,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.94,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Direct HDL-C 4th Generation,,1.49,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Triglycerides (GPO),,0.80,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Cholesterol (High Performance),,4.76,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,LDL Chol Friedewald 4th,,2.90,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,TSH,TSH 3rd IS-QT,,1.175,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.8,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Total Bilirubin,,4,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,GGT,,49,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Uric Acid,,300,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Phosphorus,,1.35,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.94,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.95,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.05,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.61,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.5,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.9,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.7,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.2,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,341,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.23,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Direct HDL-C 4th Generation,,1.37,,,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Triglycerides (GPO),,1.49,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Cholesterol (High Performance),,4.70,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,LDL Chol Friedewald 4th,,2.65,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,RETICULOCYTES,Reticulocyte Count %,,2.7,,H,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,TSH,TSH 3rd IS-QT,,3.282,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,LDH,,205,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Uric Acid,,323,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Calcium (EDTA),,2.27,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Creatine Kinase,,161,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Potassium,,3.7,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.41,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.46,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.53,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.8,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.3,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.57,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Direct HDL-C 4th Generation,,1.14,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Triglycerides (GPO),,1.23,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Cholesterol (High Performance),,6.67,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,LDL Chol Friedewald 4th,,4.97,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,TSH,TSH 3rd IS-QT,,2.238,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.3,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CELLULAR ELEMENTS,Ur WBC/HPF,,9,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.8,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,ALT (SGPT),,50,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,GGT,,24,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Uric Acid,,274,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Creatine Kinase,,45,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Potassium,,5.0,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Bicarbonate,,25.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.24,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.24,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.33,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.6,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.3,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,330,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.1,,,,,<6.5 %, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.65,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Direct HDL-C 4th Generation,,1.03,,,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Triglycerides (GPO),,1.18,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Cholesterol (High Performance),,2.69,,L,,,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,LDL Chol Friedewald 4th,,1.12,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,TSH,TSH 3rd IS-QT,,1.264,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.8,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,LDH,,199,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Bicarbonate,,29.7,,H,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.80,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.73,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.58,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,308,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,1.74,,L,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Direct HDL-C 4th Generation,,1.50,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Cholesterol (High Performance),,5.66,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,LDL Chol Friedewald 4th,,3.76,,H,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur pH,,7.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Alkaline Phosphatase,,72,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,GGT,,45,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,LDH,,135,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,59,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Creatine Kinase,,94,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,125,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,R,L,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.92,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.08,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.93,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.56,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.31,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,44.5,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.3,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.1,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.4,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,304,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.03,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Triglycerides (GPO),,2.05,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Cholesterol (High Performance),,5.46,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,LDL Chol Friedewald 4th,,3.16,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,TSH,TSH 3rd IS-QT,,1.135,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,GGT,,17,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,LDH,,257,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Uric Acid,,318,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Creatine Kinase,,276,,H,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.48,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.40,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.1,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.9,R,H,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,143,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.90,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Direct HDL-C 4th Generation,,1.12,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Triglycerides (GPO),,1.26,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Cholesterol (High Performance),,5.71,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,LDL Chol Friedewald 4th,,4.01,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CELLULAR ELEMENTS,Ur WBC/HPF,,10,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.2,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,ALT (SGPT),,49,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Uric Acid,,282,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Phosphorus,,1.34,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.87,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.64,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.53,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.42,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.9,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.3,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,294,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,12.54,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Direct HDL-C 4th Generation,,0.96,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Triglycerides (GPO),,0.90,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Cholesterol (High Performance),,2.39,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,LDL Chol Friedewald 4th,,1.02,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,GGT,,21,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,LDH,,206,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Glucose Fasting,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Uric Acid,,260,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Creatine Kinase,,107,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Bicarbonate,,22.4,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.58,,,,,1.25 - 1.92,mL/sec +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,78,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,81.6,,,,,kg, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,GFR,EGFR by MDRD,,67,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.09,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.99,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.2,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.3,,H,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,313,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.1,,,,,<6.5%, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.19,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Direct HDL-C 4th Generation,,1.52,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Triglycerides (GPO),,1.01,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Cholesterol (High Performance),,5.29,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,LDL Chol Friedewald 4th,,3.31,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,TSH,TSH 3rd IS-QT,,1.461,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.5,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,GGT,,45,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Creatine Kinase,,99,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Bicarbonate,,21.9,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.55,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.59,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.09,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.63,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.9,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.7,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.3,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,324,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.08,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Direct HDL-C 4th Generation,,1.54,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Triglycerides (GPO),,2.08,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Cholesterol (High Performance),,5.37,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,LDL Chol Friedewald 4th,,2.88,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,AST (SGOT),,32,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,LDH,,232,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Uric Acid,,392,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Creatine Kinase,,160,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.39,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.58,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.36,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.8,,,,,<6.5%, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Direct HDL-C 4th Generation,,1.11,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Triglycerides (GPO),,1.60,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Cholesterol (High Performance),,6.83,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,LDL Chol Friedewald 4th,,4.99,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,TSH,TSH 3rd IS-QT,,2.025,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.9,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CELLULAR ELEMENTS,Ur WBC/HPF,,42,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,ALT (SGPT),,69,,H RX,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,AST (SGOT),,40,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,LDH,,190,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Glucose Fasting,,7.5,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Uric Acid,,309,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Phosphorus,,1.28,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Creatine Kinase,,48,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Bicarbonate,,24.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.65,,,,,1.25 - 1.92,mL/sec +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,79.2,,,,,kg, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,GFR,EGFR by MDRD,,74,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.69,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.48,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.44,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.8,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.1,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.9,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,324,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.6,,H,,,<6.5%, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,13.86,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Direct HDL-C 4th Generation,,0.89,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Cholesterol (High Performance),,2.44,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,LDL Chol Friedewald 4th,,1.03,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,TSH,TSH 3rd IS-QT,,1.524,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Alkaline Phosphatase,,82,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,GGT,,47,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Uric Acid,,322,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Total Protein,,79,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Creatine Kinase,,104,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.88,,,,,1.25 - 1.92,mL/sec +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,78.6,,,,,kg, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,Result verified by repeat analysis,Neg;$Cutoff = 50 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,GFR,EGFR by MDRD,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,106,,H,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.54,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.64,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.0,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.6,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,301,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.36,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Direct HDL-C 4th Generation,,1.94,,H,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Cholesterol (High Performance),,6.28,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,LDL Chol Friedewald 4th,,3.63,,H,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,TSH,TSH 3rd IS-QT,,1.391,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,GGT,,20,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,LDH,,224,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Uric Acid,,358,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Phosphorus,,1.33,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Creatine Kinase,,159,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Bicarbonate,,23.6,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.17,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.12,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.7,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,44.7,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.1,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,157,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,11.38,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Direct HDL-C 4th Generation,,1.10,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Triglycerides (GPO),,1.77,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Cholesterol (High Performance),,6.54,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,LDL Chol Friedewald 4th,,4.63,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,RETICULOCYTES,Reticulocyte Count %,,3.5,,H,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Retest,,"Aug 19, 2025 10:00 AM",6225351002,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Retest,,"Aug 19, 2025 10:00 AM",6225351002,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CELLULAR ELEMENTS,Ur WBC/HPF,,10,,,,,0 - 12,/HPF +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Alkaline Phosphatase,,106,,H,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,ALT (SGPT),,28,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,GGT,,19,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,LDH,,241,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Glucose Fasting,,6.5,,H,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Uric Acid,,349,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Phosphorus,,0.95,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Creatine Kinase,,140,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.23,,L,,,1.25 - 1.92,mL/sec +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,87,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,72.5,,,,,kg, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,FSH,Follicle Stimulating Hormone,,50.25,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,GFR,EGFR by MDRD,,59,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.40,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.88,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.5,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,39.4,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,163,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.7,,,,,<6.5%, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Triglycerides (GPO),,3.99,,H,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Cholesterol (High Performance),,6.69,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,LDL Chol Friedewald 4th,,3.89,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,RETICULOCYTES,Reticulocyte Count %,,2.9,,H,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,TSH,TSH 3rd IS-QT,,2.272,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE diff --git a/Covance_UCO3001/Source/2026-05-29_140436 sponsor-study-36940-test-results-930531-standard.csv b/Covance_UCO3001/Source/2026-05-29_140436 sponsor-study-36940-test-results-930531-standard.csv new file mode 100644 index 0000000..4d4b87b --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140436 sponsor-study-36940-test-results-930531-standard.csv @@ -0,0 +1,243 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Bilirubin,,4,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Alkaline Phosphatase,,113,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,GGT,,23,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,LDH,,195,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Glucose,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Uric Acid,,409,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatine Kinase,,159,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,100,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Time,Y,06:50,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,98,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.34,,L,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,22,,L,,Result verified by repeat analysis,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,76,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.13,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.41,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.93,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.6,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.1,,,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,812,,HT,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:50,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Alkaline Phosphatase,,112,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,GGT,,27,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Glucose,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Albumin-BCG,,40,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,106,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,L,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,77,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.30,,,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.94,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.35,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.2,,H,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,796,,HT,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:24,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Alkaline Phosphatase,,121,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,LDH,,158,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Uric Acid,,446,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,97,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Date,Y,06-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Time,Y,16:00,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,113,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.49,,H,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,8.91,,H,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.14,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.3,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.2,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,584,,H,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Direct HDL-C 4th Generation,,1.01,R,L,,,1.03 - 1.53,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Triglycerides (GPO),,1.57,,,,,0.65 - 2.94,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Cholesterol (High Performance),,5.40,,,,,4.53 - 7.71,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,LDL Chol Friedewald 4th,,3.67,,H,,,0 - 3.34,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:37,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:37,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,06-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,16:00,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ANATOMICAL SITE,Anatomical Site,Y,20,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,16-Mar-2026,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,19-Mar-2026,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Alkaline Phosphatase,,120,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Bicarbonate,,18.4,,L,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,120,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.37 - 0.51, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.50,,,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.09,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.97,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.07,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.27,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.9,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.6,,H,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,567,,H,,,130 - 394,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm, diff --git a/Covance_UCO3001/Source/2026-05-29_140506 sponsor-study-35472-test-results-898739-standard.csv b/Covance_UCO3001/Source/2026-05-29_140506 sponsor-study-35472-test-results-898739-standard.csv new file mode 100644 index 0000000..777a3b4 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140506 sponsor-study-35472-test-results-898739-standard.csv @@ -0,0 +1,1899 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 5,/HPF +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,GGT,,43,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,LDH,,168,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Uric Acid,,351,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Phosphorus,,0.86,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Bicarbonate,,26.0,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.24,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.54,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.12,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.53,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.2,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.7,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.4,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,193,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,10.23,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Triglycerides (GPO),,3.09,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Cholesterol (High Performance),,5.48,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,LDL Chol Friedewald 4th,,3.14,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,TSH,TSH 3rd IS-QT,,1.690,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.7,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,ALT (SGPT),,53,,H,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,AST (SGOT),,47,,H,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,GGT,,101,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Urea Nitrogen,,1.4,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Uric Acid,,426,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Calcium (EDTA),,2.60,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Creatine Kinase,,164,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Sodium,,135,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Chloride,,94,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.45,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.74,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.85,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.1,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.8,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.9,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,261,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.91,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Direct HDL-C 4th Generation,,1.71,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Triglycerides (GPO),,1.73,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Cholesterol (High Performance),,3.78,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,LDL Chol Friedewald 4th,,1.28,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,TSH,TSH 3rd IS-QT,,,,,Test group cancelled: No specimen received,,, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,GGT,,41,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Uric Acid,,379,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Total Protein,,81,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Bicarbonate,,24.1,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.35,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.03,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.94,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.6,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.4,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,202,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.79,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Direct HDL-C 4th Generation,,0.94,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Triglycerides (GPO),,2.61,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Cholesterol (High Performance),,5.47,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,LDL Chol Friedewald 4th,,3.33,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,GGT,,34,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Uric Acid,,266,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Bicarbonate,,19.7,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.90,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.20,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.94,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.58,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.7,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.8,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,259,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.04,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Direct HDL-C 4th Generation,,1.20,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Triglycerides (GPO),,2.38,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Cholesterol (High Performance),,6.59,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,LDL Chol Friedewald 4th,,4.30,,H,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,TSH,TSH 3rd IS-QT,,1.196,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,R,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,C-REACTIVE PROTEIN,C Reactive Protein HS,,5.2,,H,,,0 - 5,mg/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,GGT,,42,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Uric Acid,,370,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Phosphorus,,0.84,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Creatine Kinase,,127,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Bicarbonate,,26.2,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.86,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.05,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,48.0,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.2,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.2,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.45,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Direct HDL-C 4th Generation,,0.78,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Triglycerides (GPO),,3.51,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Cholesterol (High Performance),,4.45,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,LDL Chol Friedewald 4th,,2.06,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,TSH,TSH 3rd IS-QT,,1.040,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Specific Gravity,,1.033,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Urobilinogen,,+2,,H,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Alkaline Phosphatase,,52,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,GGT,,49,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Uric Acid,,359,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Phosphorus,,0.64,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Sodium,,143,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Bicarbonate,,25.8,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.27,,H,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,85.4,,,,,kg, +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,GGT,,54,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,LDH,,155,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Urea Nitrogen,,2.6,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,81,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Uric Acid,,385,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Calcium (EDTA),,2.59,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Phosphorus,,0.57,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Total Protein,,79,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Creatine Kinase,,110,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Bicarbonate,,26.8,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.5,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.67,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.99,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.20,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,185,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,9.79,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Direct HDL-C 4th Generation,,0.84,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Triglycerides (GPO),,3.38,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Cholesterol (High Performance),,4.73,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,LDL Chol Friedewald 4th,,2.34,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.1,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,GGT,,40,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,LDH,,180,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Uric Acid,,222,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,R,H,,,79 - 98,fL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.87,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.51,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.6,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.6,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,281,,,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.73,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Direct HDL-C 4th Generation,,2.34,R,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Cholesterol (High Performance),,5.38,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,LDL Chol Friedewald 4th,,2.52,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,TSH,TSH 3rd IS-QT,,1.897,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.9,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Alkaline Phosphatase,,68,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,ALT (SGPT),,70,,H RX,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,AST (SGOT),,56,,H,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,GGT,,98,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,LDH,,188,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Uric Acid,,419,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Creatine Kinase,,109,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Bicarbonate,,26.5,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,104,,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.88,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.64,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.55,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.0,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.4,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,288,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.19,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Direct HDL-C 4th Generation,,1.60,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Triglycerides (GPO),,1.16,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Cholesterol (High Performance),,3.65,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,LDL Chol Friedewald 4th,,1.52,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,TSH,TSH 3rd IS-QT,,0.906,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,GGT,,30,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Uric Acid,,297,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Creatine Kinase,,63,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Bicarbonate,,21.1,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.88,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.58,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.46,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.59,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.8,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.7,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,243,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,35.89,,H,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Direct HDL-C 4th Generation,,1.18,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Triglycerides (GPO),,2.11,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Cholesterol (High Performance),,5.10,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,LDL Chol Friedewald 4th,,2.95,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,TSH,TSH 3rd IS-QT,,0.729,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Specific Gravity,,1.030,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.0,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Alkaline Phosphatase,,72,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,GGT,,40,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,LDH,,177,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Uric Acid,,398,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Creatine Kinase,,73,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.74,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.11,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.22,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.0,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.1,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,564,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.03,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Direct HDL-C 4th Generation,,2.53,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Triglycerides (GPO),,2.65,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Cholesterol (High Performance),,5.29,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,LDL Chol Friedewald 4th,,1.55,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,GGT,,44,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,LDH,,173,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Uric Acid,,379,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Calcium (EDTA),,2.62,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Phosphorus,,0.80,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Albumin-BCG,,53,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Creatine Kinase,,108,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Sodium,,145,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.31,,H,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.0,,,,,kg, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Direct HDL-C 4th Generation,,0.94,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Triglycerides (GPO),,2.31,,,,,0.56 - 3.62,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Cholesterol (High Performance),,5.76,,,,,3.88 - 6.83,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,LDL Chol Friedewald 4th,,3.76,,H,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,TSH,TSH 3rd IS-QT,,1.044,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,C-REACTIVE PROTEIN,C Reactive Protein HS,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Total Bilirubin,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,ALT (SGPT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,AST (SGOT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,GGT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,LDH,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Urea Nitrogen,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Glucose Fasting,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Uric Acid,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Calcium (EDTA),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Phosphorus,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Total Protein,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Albumin-BCG,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Creatine Kinase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Sodium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Potassium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Bicarbonate,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Chloride,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,Required testing unavailable,,,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.0,,,,,kg, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,GFR,EGFR by MDRD,,Required testing unavailable,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.79,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.23,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.09,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.4,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.8,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,207,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.62,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Direct HDL-C 4th Generation,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Triglycerides (GPO),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Cholesterol (High Performance),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,TSH,TSH 3rd IS-QT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Specific Gravity,,1.032,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CELLULAR ELEMENTS,Ur RBC/HPF,,2,,,,,0 - 3,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,H,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,GGT,,26,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Glucose Fasting,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Uric Acid,,317,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Creatine Kinase,,76,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.00,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.16,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.99,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.71,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.4,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,22.2,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,256,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,11.88,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Direct HDL-C 4th Generation,,1.07,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Triglycerides (GPO),,1.52,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Cholesterol (High Performance),,4.74,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,LDL Chol Friedewald 4th,,2.97,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,MISCELLANEOUS ELEMENTS,Ur Sperm,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,TSH,TSH 3rd IS-QT,,0.706,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Specific Gravity,,1.032,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.6,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,GGT,,31,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Uric Acid,,189,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Phosphorus,,0.99,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.79,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.69,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.52,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.7,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.3,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,402,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.90,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Direct HDL-C 4th Generation,,1.98,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Triglycerides (GPO),,1.65,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Cholesterol (High Performance),,5.40,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,RETICULOCYTES,Reticulocyte Count %,,2.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,TSH,TSH 3rd IS-QT,,1.816,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.6,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Alkaline Phosphatase,,36,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Creatine Kinase,,105,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.46,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.81,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.34,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.24,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.7,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.6,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,267,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.64,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Direct HDL-C 4th Generation,,1.66,R,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Triglycerides (GPO),,1.43,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Cholesterol (High Performance),,4.82,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Yeast-Budding,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Yeast-Hyphae,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,TSH,TSH 3rd IS-QT,,1.379,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CASTS,Ur Hyaline Casts/LPF,,27,,,,,0 /LPF, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,ALT (SGPT),,64,,H,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,AST (SGOT),,63,,H RX,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,GGT,,85,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,LDH,,207,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Urea Nitrogen,,2.8,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Uric Acid,,423,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Chloride,,99,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,102,,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.73,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.43,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.2,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.35,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Triglycerides (GPO),,1.03,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Cholesterol (High Performance),,5.23,,,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Protein,,+1,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.3,,H,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,GGT,,28,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Uric Acid,,311,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Calcium (EDTA),,2.30,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Creatine Kinase,,73,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,158,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,R,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.66,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,7.67,R,H,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.77,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.9,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,251,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.56,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Direct HDL-C 4th Generation,,1.04,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Triglycerides (GPO),,1.84,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Cholesterol (High Performance),,5.15,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,LDL Chol Friedewald 4th,,3.27,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,C-REACTIVE PROTEIN,C Reactive Protein HS,,6.1,,H,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Alkaline Phosphatase,,106,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,GGT,,105,,H,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,LDH,,140,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,98,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Creatine Kinase,,55,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Bicarbonate,,26.4,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.05,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.34,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.31,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.8,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.3,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.4,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,219,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.63,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Direct HDL-C 4th Generation,,1.31,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Triglycerides (GPO),,1.15,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Cholesterol (High Performance),,6.10,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,LDL Chol Friedewald 4th,,4.26,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,TSH,TSH 3rd IS-QT,,0.733,,,,,0.45 - 5.33,mIU/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,GGT,,28,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,LDH,,184,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.32,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.74,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.91,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.2,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.3,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,356,,,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.42,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Direct HDL-C 4th Generation,,1.90,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Triglycerides (GPO),,1.05,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Cholesterol (High Performance),,5.04,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,RETICULOCYTES,Reticulocyte Count %,,2.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Alkaline Phosphatase,,42,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,67,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Bicarbonate,,20.6,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.49,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.33,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.8,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.5,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,327,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.98,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Direct HDL-C 4th Generation,,1.69,R,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Triglycerides (GPO),,1.86,R,H,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Cholesterol (High Performance),,5.31,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,LDL Chol Friedewald 4th,,2.77,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Blood,,+3,R,H SF,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.4,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CASTS,Ur Hyaline Casts/LPF,,4,,,,,0 /LPF, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,GGT,,51,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,LDH,,178,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Uric Acid,,451,,H,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Creatine Kinase,,153,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Chloride,,97,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.90,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.97,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.30,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.3,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.3,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,244,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.6,,,,,<6.5%, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.01,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Direct HDL-C 4th Generation,,1.47,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Triglycerides (GPO),,1.30,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Cholesterol (High Performance),,3.27,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,LDL Chol Friedewald 4th,,1.20,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,TSH,TSH 3rd IS-QT,,1.174,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,ALT (SGPT),,31,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,GGT,,68,R,H,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Uric Acid,,448,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Phosphorus,,0.78,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.18,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.32,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.51,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.09,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.1,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,203,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.51,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Direct HDL-C 4th Generation,,1.29,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Triglycerides (GPO),,1.22,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Cholesterol (High Performance),,5.80,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,LDL Chol Friedewald 4th,,3.95,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,GGT,,29,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,LDH,,173,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Uric Acid,,268,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Creatine Kinase,,93,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Bicarbonate,,20.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.12,,H,,,1.42 - 2.08,mL/sec +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,85.0,,,,,kg, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,GFR,EGFR by MDRD,,98,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.62,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.14,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.83,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.2,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.2,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,218,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.69,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Direct HDL-C 4th Generation,,1.08,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Triglycerides (GPO),,2.26,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Cholesterol (High Performance),,4.47,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,TSH,TSH 3rd IS-QT,,0.878,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,LDH,,182,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Uric Acid,,224,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Creatine Kinase,,71,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.81,,,,,1.25 - 1.92,mL/sec +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,69.0,,,,,kg, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,FSH,Follicle Stimulating Hormone,,6.17,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,GFR,EGFR by MDRD,,97,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,98,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.11,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.39,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.04,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.8,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.7,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,431,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.05,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Direct HDL-C 4th Generation,,1.95,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Triglycerides (GPO),,1.54,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Cholesterol (High Performance),,5.27,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,LDL Chol Friedewald 4th,,2.61,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,RETICULOCYTES,Reticulocyte Count %,,2.9,,H,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,TSH,TSH 3rd IS-QT,,1.573,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Alkaline Phosphatase,,38,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,LDH,,162,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,59,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Uric Acid,,260,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Phosphorus,,0.56,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Creatine Kinase,,358,R,H,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Bicarbonate,,21.1,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.52,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.25,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.8,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.63,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Direct HDL-C 4th Generation,,1.42,,,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Triglycerides (GPO),,1.42,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Cholesterol (High Performance),,4.13,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,LDL Chol Friedewald 4th,,2.06,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,TSH,TSH 3rd IS-QT,,1.160,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.1,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,GGT,,54,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,LDH,,184,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Uric Acid,,413,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Calcium (EDTA),,2.58,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Creatine Kinase,,155,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.55,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.20,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.66,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.5,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,275,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.10,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Direct HDL-C 4th Generation,,1.39,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Triglycerides (GPO),,1.36,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Cholesterol (High Performance),,3.50,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,LDL Chol Friedewald 4th,,1.49,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Ketones,,+1,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.9,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Alkaline Phosphatase,,76,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,GGT,,61,,,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,LDH,,160,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Uric Acid,,353,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Phosphorus,,0.79,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Creatine Kinase,,153,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.83,,,,,1.42 - 2.08,mL/sec +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.2,,,,,kg, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Opiates,,Detected (unconfirmed),,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,GFR,EGFR by MDRD,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.94,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.25,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.33,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.9,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.0,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,222,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.22,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Direct HDL-C 4th Generation,,1.15,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Triglycerides (GPO),,0.89,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Cholesterol (High Performance),,5.43,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,LDL Chol Friedewald 4th,,3.87,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,Codeine (Confirmed),,RX,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,Morphine (Confirmed),,RX,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,6-MAM not present,,,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,TSH,TSH 3rd IS-QT,,0.914,,,,,0.45 - 5.33,mIU/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Ketones,,+1,,H,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CELLULAR ELEMENTS,Ur WBC/HPF,,4,,,,,0 - 12,/HPF +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,GGT,,43,,,,,5 - 50,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,LDH,,183,,,,,53 - 234,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,47,,,,,31 - 101,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Glucose Fasting,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Uric Acid,,253,,,,,149 - 446,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Creatine Kinase,,89,,,,,26 - 192,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.47,,H,,,1.25 - 1.92,mL/sec +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,47,,,,,31 - 101,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.0,,,,,kg, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,FSH,Follicle Stimulating Hormone,,29.08,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,GFR,EGFR by MDRD,,116,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,115 - 158,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,3.9 - 5.5,TI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.29,,,,,3.8 - 10.7,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.65,,,,,1.96 - 7.23,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.23,,,,,0.8 - 3,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.7,,,,,40.5 - 75,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.6,,,,,15.4 - 48.5,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.2,,,,,2.6 - 10.1,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,130 - 394,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.4,,,,,<6.5%, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.80,,,,,1.9 - 23,uIU/mL +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Direct HDL-C 4th Generation,,1.50,,,,,1.03 - 1.53,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Triglycerides (GPO),,1.69,,,,,0.63 - 2.71,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Cholesterol (High Performance),,4.20,,L,,,4.86 - 8.28,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,LDL Chol Friedewald 4th,,1.93,,,,,0 - 3.34,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,TSH,TSH 3rd IS-QT,,1.074,,,,,0.45 - 5.33,mIU/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1.01 - 1.03, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,R,H SF,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,GGT,,56,R,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Uric Acid,,479,R,H,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.51,,H,,,1.25 - 1.92,mL/sec +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,93.1,,,,,kg, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,FSH,Follicle Stimulating Hormone,,30.27,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,GFR,EGFR by MDRD,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,102,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.37,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.86,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.96,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.3,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.6,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,232,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.2,,,,,<6.5%, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.31,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Direct HDL-C 4th Generation,,1.30,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Cholesterol (High Performance),,3.52,R,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,LDL Chol Friedewald 4th,,1.51,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,TSH,TSH 3rd IS-QT,,1.889,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Alkaline Phosphatase,,44,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Uric Acid,,263,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Phosphorus,,0.71,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Creatine Kinase,,260,,H,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.54,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.08,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.06,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,73.7,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.3,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.8,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,260,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.54,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Direct HDL-C 4th Generation,,1.52,,,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Triglycerides (GPO),,1.60,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Cholesterol (High Performance),,4.24,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,LDL Chol Friedewald 4th,,1.99,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,MISCELLANEOUS ELEMENTS,Ur Fat,,Present,,H,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Specific Gravity,,1.031,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Alkaline Phosphatase,,59,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Uric Acid,,235,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.06,,H,,,1.25 - 1.92,mL/sec +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,65.0,,,,,kg, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,GFR,EGFR by MDRD,,100,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.86,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.59,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.3,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.7,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,261,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.4,,,,,<6.5%, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.26,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Direct HDL-C 4th Generation,,1.54,,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Triglycerides (GPO),,0.87,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Cholesterol (High Performance),,4.29,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,TSH,TSH 3rd IS-QT,,0.904,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140518 sponsor-study-35472-test-results-898733-standard.csv b/Covance_UCO3001/Source/2026-05-29_140518 sponsor-study-35472-test-results-898733-standard.csv new file mode 100644 index 0000000..c1822ff --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140518 sponsor-study-35472-test-results-898733-standard.csv @@ -0,0 +1,2409 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.2,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Alkaline Phosphatase,,59,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Uric Acid,,289,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Creatine Kinase,,263,,H,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,Result verified by repeat analysis,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,Result verified by repeat analysis,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.14,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.07,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.57,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.0,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.0,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,309,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.37,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Direct HDL-C 4th Generation,,1.79,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Triglycerides (GPO),,1.51,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Cholesterol (High Performance),,5.75,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,LDL Chol Friedewald 4th,,3.27,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,TSH,TSH 3rd IS-QT,,4.824,,,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,ALT (SGPT),,163,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,AST (SGOT),,127,,H RX,,,8 - 40,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,GGT,,350,,HT,,Result verified by repeat analysis,10 - 50,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,LDH,,224,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,106,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Uric Acid,,512,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Creatine Kinase,,348,,H,,,39 - 308,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.89,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.35,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.13,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.5,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.7,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,137,R,L,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.3,,,,,<6.5 %, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,30.61,,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Direct HDL-C 4th Generation,,1.03,,,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Triglycerides (GPO),,2.89,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Cholesterol (High Performance),,4.82,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,LDL Chol Friedewald 4th,,2.47,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,TSH,TSH 3rd IS-QT,,1.982,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Alkaline Phosphatase,,92,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Uric Acid,,249,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Albumin-BCG,,50,R,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Creatine Kinase,,224,,,,,39 - 308,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Bicarbonate,,27.9,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.09,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.22,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.0,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.8,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,216,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.44,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Triglycerides (GPO),,0.59,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Cholesterol (High Performance),,3.92,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,LDL Chol Friedewald 4th,,2.31,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,TSH,TSH 3rd IS-QT,,1.256,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Urea Nitrogen,,6.2,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Albumin-BCG,,52,,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Creatine Kinase,,196,,,,,39 - 308,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.59,,,,,1.42 - 2.08,mL/sec +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,64.0,,,,,kg, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,FSH,Follicle Stimulating Hormone,,6.14,,RX,,,1.3 - 19.3,IU/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.24,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.97,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.6,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,223,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.85,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Direct HDL-C 4th Generation,,1.40,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Cholesterol (High Performance),,4.33,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,LDL Chol Friedewald 4th,,2.56,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,TSH,TSH 3rd IS-QT,,1.789,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Specific Gravity,,1.028,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.1,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,ALT (SGPT),,86,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,AST (SGOT),,74,,H RX,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,GGT,,83,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,LDH,,187,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,107,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Glucose Fasting,,8.0,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Uric Acid,,500,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Creatine Kinase,,238,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Chloride,,99,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.57,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.18,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.84,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.0,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,169,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.13,,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Direct HDL-C 4th Generation,,0.70,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Triglycerides (GPO),,2.48,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Cholesterol (High Performance),,4.55,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.7,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Total Bilirubin,,15,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Alkaline Phosphatase,,101,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,LDH,,175,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,54,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Total Protein,,80,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CRYSTALS,Ur Uric Acid Crystals,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,FREE T4,Free Thyroxine-QT,,18,,H,,,8 - 14,pmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.85,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.16,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.28,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,312,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.7,,,,,<6.5 %, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.75,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Direct HDL-C 4th Generation,,1.07,,,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Triglycerides (GPO),,0.77,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Cholesterol (High Performance),,3.77,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,TSH,TSH 3rd IS-QT,,0.119,,L SF,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Alkaline Phosphatase,,53,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,LDH,,134,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Phosphorus,,0.83,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,L,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.63,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.66,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.20,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.3,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.3,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,273,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.32,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Cholesterol (High Performance),,4.75,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,TSH,TSH 3rd IS-QT,,1.607,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Specific Gravity,,1.027,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,GGT,,30,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Uric Acid,,315,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Creatine Kinase,,151,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Bicarbonate,,24.8,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.44,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.89,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.02,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.3,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,40.6,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,307,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.60,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Direct HDL-C 4th Generation,,1.98,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Cholesterol (High Performance),,5.66,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,TSH,TSH 3rd IS-QT,,3.912,,,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 5,/HPF +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.2,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,AST (SGOT),,39,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,LDH,,206,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Uric Acid,,223,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Calcium (EDTA),,2.58,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Albumin-BCG,,51,R,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Creatine Kinase,,1857,R,H SF,,Diluted for quantitation,39 - 308,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.41,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.57,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.23,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.3,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.5,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,242,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.71,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Triglycerides (GPO),,1.12,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Cholesterol (High Performance),,3.95,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,LDL Chol Friedewald 4th,,2.21,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Specific Gravity,,1.036,R,H,,,1 - 1.04, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.7,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.1,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Alkaline Phosphatase,,53,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,ALT (SGPT),,79,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,AST (SGOT),,46,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,GGT,,68,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Glucose Fasting,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Uric Acid,,393,,,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Calcium (EDTA),,2.28,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Total Protein,,72,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Creatine Kinase,,212,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,98,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.42,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.42,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.28,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.8,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.4,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.4,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,149,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.2,,,,,<6.5 %, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.25,R,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Direct HDL-C 4th Generation,,0.79,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Triglycerides (GPO),,2.48,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Cholesterol (High Performance),,4.67,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,LDL Chol Friedewald 4th,,2.74,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,TSH,TSH 3rd IS-QT,,1.053,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,GGT,,26,,,,,10 - 61,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 488,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Albumin-BCG,,53,,H,,,33 - 49,g/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Creatine Kinase,,70,,,,,39 - 308,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.99,,,,,1.42 - 2.08,mL/sec +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,81.1,,,,,kg, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,GFR,EGFR by MDRD,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.94,,,,,1.9 - 23,uIU/mL +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Direct HDL-C 4th Generation,,0.90,,L,,,1.03 - 1.53,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.56 - 3.62,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Cholesterol (High Performance),,4.40,,,,,3.88 - 6.83,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,LDL Chol Friedewald 4th,,2.79,,,,,0 - 3.34,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,RETICULOCYTES,Reticulocyte Count %,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,TSH,TSH 3rd IS-QT,,0.855,,,,,0.45 - 5.33,mIU/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,C-REACTIVE PROTEIN,C Reactive Protein HS,,12.0,,H,,,0 - 5,mg/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Alkaline Phosphatase,,120,,,,,40 - 129,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,GGT,,15,,,,,10 - 50,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Uric Acid,,237,,,,,149 - 494,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Total Protein,,84,,H,,,60 - 80,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Creatine Kinase,,116,,,,,39 - 308,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Bicarbonate,,17.8,,L,,,19.3 - 29.3,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.23,,L,,,1.42 - 2.08,mL/sec +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,82.0,,,,,kg, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,GFR,EGFR by MDRD,,60,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,125 - 170,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.37 - 0.51, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4 - 5.8,TI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,80 - 100,fL +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.37,,,,,3.8 - 10.7,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.83,,,,,1.96 - 7.23,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.8 - 3,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.61,,,,,0.12 - 0.92,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,72.9,,,,,40.5 - 75,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,509,R,H,,,130 - 394,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.5,,H,,,<6.5 %, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.10,,,,,1.9 - 23,uIU/mL +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Triglycerides (GPO),,1.36,,,,,0.65 - 2.94,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Cholesterol (High Performance),,3.73,,L,,,4.53 - 7.71,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,LDL Chol Friedewald 4th,,1.87,,,,,0 - 3.34,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,TSH,TSH 3rd IS-QT,,1.311,,,,,0.45 - 5.33,mIU/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1.01 - 1.03, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Total Bilirubin,,15,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,90,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Uric Acid,,287,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Creatine Kinase,,332,,H,,,39 - 308,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.60,,,,,1.42 - 2.08,mL/sec +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,90,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,61.0,,,,,kg, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,GFR,EGFR by MDRD,,89,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.69,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.98,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.11,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.5,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.5,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.81,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,TSH,TSH 3rd IS-QT,,0.928,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.4,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,ALT (SGPT),,28,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Uric Acid,,337,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Creatine Kinase,,148,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.09,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.49,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.02,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.6,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.4,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,316,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.12,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Direct HDL-C 4th Generation,,1.96,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Cholesterol (High Performance),,5.64,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.0,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,61,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Uric Acid,,250,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Calcium (EDTA),,2.30,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Creatine Kinase,,69,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.73,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.57,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.42,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.1,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,348,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.60,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Direct HDL-C 4th Generation,,1.10,,,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Cholesterol (High Performance),,4.41,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,LDL Chol Friedewald 4th,,2.77,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CELLULAR ELEMENTS,Ur WBC/HPF,,4,,,,,0 - 12,/HPF +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,GGT,,16,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,LDH,,128,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Urea Nitrogen,,7.9,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,84,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Uric Acid,,250,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,123,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.99,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.90,,L,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.18,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.6,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.6,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,301,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.63,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Direct HDL-C 4th Generation,,1.75,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Triglycerides (GPO),,0.50,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Cholesterol (High Performance),,4.64,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,TSH,TSH 3rd IS-QT,,1.963,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Blood,,+1,,H,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.5,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Alkaline Phosphatase,,52,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,ALT (SGPT),,77,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,AST (SGOT),,49,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,GGT,,53,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,LDH,,139,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Uric Acid,,507,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Creatine Kinase,,201,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Bicarbonate,,27.8,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.20,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.39,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.0,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.8,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,144,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,22.36,,,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Direct HDL-C 4th Generation,,0.75,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Triglycerides (GPO),,3.00,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Cholesterol (High Performance),,4.63,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Alkaline Phosphatase,,39,,,,,35 - 104,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,4 - 43,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,GGT,,10,,,,,4 - 49,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Uric Acid,,162,,,,,125 - 428,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Phosphorus,,0.94,,,,,0.71 - 1.65,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Creatine Kinase,,56,,,,,26 - 192,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Bicarbonate,,26.3,,,,,19.3 - 29.3,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.79,,,,,1.25 - 1.92,mL/sec +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,70.3,,,,,kg, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,GFR,EGFR by MDRD,,88,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.80,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.45,,,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.67,,,,,0.91 - 4.28,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.1,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.7,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.0,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.4,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,Result verified by repeat analysis,0 - 2,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,254,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.02,,,,,1.9 - 23,uIU/mL +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Direct HDL-C 4th Generation,,1.67,,H,,,1.03 - 1.53,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.51 - 2.42,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Cholesterol (High Performance),,5.79,,,,,4.01 - 6.85,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,LDL Chol Friedewald 4th,,3.80,,H,,,0 - 3.34,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,TSH,TSH 3rd IS-QT,,1.837,,,,,0.45 - 5.33,mIU/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Specific Gravity,,1.005,,,,,1 - 1.04, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CELLULAR ELEMENTS,Ur RBC/HPF,,3,,,,,0 - 8,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,GGT,,21,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Uric Acid,,286,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Creatine Kinase,,147,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Bicarbonate,,22.4,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,FREE T4,Free Thyroxine-QT,,9,,,,,8 - 14,pmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.42,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.84,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.08,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.8,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.6,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.9,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,332,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.98,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Direct HDL-C 4th Generation,,2.01,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Triglycerides (GPO),,1.43,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Cholesterol (High Performance),,5.46,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,LDL Chol Friedewald 4th,,2.80,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,TSH,TSH 3rd IS-QT,,6.224,,H SF,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Specific Gravity,,1.033,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,GGT,,7,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,LDH,,145,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Uric Acid,,236,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Creatine Kinase,,72,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.59,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.25,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.37,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.19,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.5,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.9,,H,,,0 - 2,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.9,,,,,<6.5 %, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.92,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Direct HDL-C 4th Generation,,1.01,,L,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Triglycerides (GPO),,1.05,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Cholesterol (High Performance),,3.68,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,LDL Chol Friedewald 4th,,2.19,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,TSH,TSH 3rd IS-QT,,1.385,,,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.1,,H,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Alkaline Phosphatase,,51,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,ALT (SGPT),,79,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,AST (SGOT),,51,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,GGT,,52,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,LDH,,160,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Uric Acid,,521,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Phosphorus,,1.00,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Total Protein,,75,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Creatine Kinase,,206,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Bicarbonate,,25.6,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.95,,,,,1.42 - 2.08,mL/sec +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,108.0,,,,,kg, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,GFR,EGFR by MDRD,,73,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.10,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.77,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.71,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.7,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.1,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.5,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,178,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.2,,,,,<6.5 %, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.17,,,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Direct HDL-C 4th Generation,,0.74,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Triglycerides (GPO),,2.04,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Cholesterol (High Performance),,4.38,,L,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,TSH,TSH 3rd IS-QT,,1.243,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Alkaline Phosphatase,,93,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,ALT (SGPT),,128,,H RX,,,5 - 48,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,AST (SGOT),,54,,H,,,8 - 40,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,GGT,,247,,H,,Result verified by repeat analysis,10 - 61,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Uric Acid,,430,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Creatine Kinase,,127,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,162,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.78,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.31,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.8,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.5,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,271,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.27,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Triglycerides (GPO),,2.24,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Cholesterol (High Performance),,5.39,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,LDL Chol Friedewald 4th,,3.04,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,TSH,TSH 3rd IS-QT,,1.417,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,GGT,,15,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,LDH,,142,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,81,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Uric Acid,,291,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Creatine Kinase,,109,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.55,,,,,1.25 - 1.92,mL/sec +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,81,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.0,,,,,kg, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,FSH,Follicle Stimulating Hormone,,1.95,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,124,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.35,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.19,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.57,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.6,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.4,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,340,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.35,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Direct HDL-C 4th Generation,,1.82,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Triglycerides (GPO),,0.63,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Cholesterol (High Performance),,5.11,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,LDL Chol Friedewald 4th,,3.00,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,TSH,TSH 3rd IS-QT,,2.024,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,GGT,,33,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,LDH,,158,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Glucose Fasting,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Uric Acid,,307,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Creatine Kinase,,203,,H,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.49,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.72,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.32,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.17,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.2,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.9,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.9,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.7,R,H,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,332,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.15,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Direct HDL-C 4th Generation,,1.91,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Triglycerides (GPO),,1.28,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Cholesterol (High Performance),,5.21,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,C-REACTIVE PROTEIN,C Reactive Protein HS,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Total Bilirubin,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,ALT (SGPT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,AST (SGOT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,GGT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,LDH,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Urea Nitrogen,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Glucose Fasting,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Uric Acid,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Calcium (EDTA),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Phosphorus,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Total Protein,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Albumin-BCG,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Creatine Kinase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Sodium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Potassium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Bicarbonate,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Chloride,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.49,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.37,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.8,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.7,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,299,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.65,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Direct HDL-C 4th Generation,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Triglycerides (GPO),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Cholesterol (High Performance),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,TSH,TSH 3rd IS-QT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CELLULAR ELEMENTS,Ur Squamous Epithelial Cells,,80,,,,,0 - 3,/HPF +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Alkaline Phosphatase,,98,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,AST (SGOT),,10,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,LDH,,142,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Creatine Kinase,,42,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.82,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.12,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.07,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.4,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.4,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,322,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.28,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Direct HDL-C 4th Generation,,1.25,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Triglycerides (GPO),,0.86,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Cholesterol (High Performance),,4.48,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,LDL Chol Friedewald 4th,,2.84,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Specific Gravity,,1.037,,H,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,GGT,,63,,H,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Uric Acid,,291,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.17,,L,,,1.25 - 1.92,mL/sec +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,59.2,,,,,kg, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,FREE T4,Free Thyroxine-QT,,9,,,,,8 - 14,pmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,GFR,EGFR by MDRD,,69,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.44,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.83,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,4.07,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.0,R,L,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,54.7,R,H,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.8,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,295,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.96,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Direct HDL-C 4th Generation,,1.84,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Triglycerides (GPO),,1.42,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Cholesterol (High Performance),,5.78,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,LDL Chol Friedewald 4th,,3.29,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,TSH,TSH 3rd IS-QT,,5.438,R,H SF,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,ALT (SGPT),,64,,H,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,GGT,,123,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Urea Nitrogen,,6.3,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Uric Acid,,419,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Phosphorus,,1.27,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Bicarbonate,,21.9,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.88,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.07,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.9,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.1,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,266,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.45,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Triglycerides (GPO),,1.73,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Cholesterol (High Performance),,4.62,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,LDL Chol Friedewald 4th,,2.91,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,C-REACTIVE PROTEIN,C Reactive Protein HS,,5.3,,H,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Alkaline Phosphatase,,101,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,AST (SGOT),,12,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Calcium (EDTA),,2.27,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Creatine Kinase,,59,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.50,,H,,,1.25 - 1.92,mL/sec +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.2,,,,,kg, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,GFR,EGFR by MDRD,,108,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.26,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.66,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.98,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.1,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.4,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,335,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.40,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Direct HDL-C 4th Generation,,0.99,,L,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Triglycerides (GPO),,0.76,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Cholesterol (High Performance),,4.01,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,RETICULOCYTES,Reticulocyte Count %,,2.4,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,TSH,TSH 3rd IS-QT,,1.593,,,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Oxazepam (Confirmed),R,RX,,,No Ref Rng, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,40 - 129,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 110,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Uric Acid,,344,,,,,125 - 488,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Creatine Kinase,,232,,,,,39 - 308,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.37,,H,,,1.42 - 2.08,mL/sec +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 110,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.1,,,,,kg, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Detected (unconfirmed),,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,GFR,EGFR by MDRD,,93,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,141,,,,,127 - 181,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.63,,,,,3.8 - 10.7,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.10,,,,,1.96 - 7.23,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.01,,,,,0.91 - 4.28,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.37,,,,,0.12 - 0.92,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.8,,,,,40.5 - 75,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,45.4,,,,,15.4 - 48.5,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,306,,,,,140 - 400,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.63,,,,,1.9 - 23,uIU/mL +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Direct HDL-C 4th Generation,,0.95,R,L,,,1.03 - 1.53,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Triglycerides (GPO),,2.07,,,,,0.56 - 3.62,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Cholesterol (High Performance),,5.65,,,,,3.88 - 6.83,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,LDL Chol Friedewald 4th,,3.75,,H,,,0 - 3.34,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,TSH,TSH 3rd IS-QT,,2.249,,,,,0.45 - 5.33,mIU/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,LDH,,126,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Uric Acid,,217,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.05,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.88,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.73,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.3,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,286,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.08,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Direct HDL-C 4th Generation,,1.85,R,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Triglycerides (GPO),,0.57,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Cholesterol (High Performance),,4.35,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,LDL Chol Friedewald 4th,,2.24,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,GGT,,129,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Uric Acid,,429,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.79,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.75,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,280,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,10.32,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Triglycerides (GPO),,1.99,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Cholesterol (High Performance),,4.77,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,LDL Chol Friedewald 4th,,2.94,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,TSH,TSH 3rd IS-QT,,1.125,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.4,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,GGT,,16,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,LDH,,124,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Glucose Fasting,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Uric Acid,,303,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Bicarbonate,,23.6,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,79 - 98,fL +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.69,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.05,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.1,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.6,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,6.1,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.14,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Direct HDL-C 4th Generation,,1.48,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Triglycerides (GPO),,0.82,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Cholesterol (High Performance),,3.76,,,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,LDL Chol Friedewald 4th,,1.90,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,TSH,TSH 3rd IS-QT,,1.582,,,,,0.45 - 5.33,mIU/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.4,,,,,0 - 5,mg/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,35 - 104,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,4 - 43,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,AST (SGOT),,34,,,,,8 - 40,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,GGT,,25,,,,,5 - 50,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Uric Acid,,265,,,,,149 - 446,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Creatine Kinase,,46,,,,,26 - 192,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Bicarbonate,,24.9,,,,,19.3 - 29.3,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.74,,,,,1.25 - 1.92,mL/sec +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.3,,,,,kg, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,GFR,EGFR by MDRD,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,115 - 158,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,3.9 - 5.5,TI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,95,,,,,80 - 100,fL +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.39,R,L,,,3.8 - 10.7,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.95,R,L,,,1.96 - 7.23,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.01,,,,,0.8 - 3,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.24,,,,,0.12 - 0.92,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.8,,,,,15.4 - 48.5,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.8,,,,,0 - 6.8,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,169,,,,,130 - 394,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.6,,,,,<6.5%, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.01,,,,,1.9 - 23,uIU/mL +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Direct HDL-C 4th Generation,,1.49,,,,,1.03 - 1.53,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.63 - 2.71,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Cholesterol (High Performance),,4.46,R,L,,,4.86 - 8.28,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,TSH,TSH 3rd IS-QT,,2.205,,,,,0.45 - 5.33,mIU/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,LDH,,137,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Creatine Kinase,,123,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.59,,,,,1.25 - 1.92,mL/sec +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.1,,,,,kg, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,GFR,EGFR by MDRD,,73,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,125,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.30,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.57,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.1,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.6,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.11,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Direct HDL-C 4th Generation,,1.65,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Triglycerides (GPO),,0.93,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Cholesterol (High Performance),,4.65,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,TSH,TSH 3rd IS-QT,,3.025,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,GGT,,93,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Urea Nitrogen,,5.7,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,94,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Uric Acid,,427,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Creatine Kinase,,89,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,165,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.28,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,1.34,R,H,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,49.0,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.0,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,20.0,R,H,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Direct HDL-C 4th Generation,,0.77,,L,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Triglycerides (GPO),,1.72,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,LDH,,133,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Uric Acid,,303,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 98,fL +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.56,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.30,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.54,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.4,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.9,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.6,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,255,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.14,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Direct HDL-C 4th Generation,,1.22,,,,,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Triglycerides (GPO),,0.56,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Cholesterol (High Performance),,3.42,,L,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,LDL Chol Friedewald 4th,,1.94,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.7,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,ALT (SGPT),,73,,H RX,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,GGT,,149,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Uric Acid,,469,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Total Protein,,80,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Creatine Kinase,,138,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.14,,H,,,1.42 - 2.08,mL/sec +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,93.8,,,,,kg, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,GFR,EGFR by MDRD,,76,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,169,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.17,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.44,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.28,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.7,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,259,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.13,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Direct HDL-C 4th Generation,,0.96,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Triglycerides (GPO),,2.37,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Cholesterol (High Performance),,5.50,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,LDL Chol Friedewald 4th,,3.45,,H,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,TSH,TSH 3rd IS-QT,,2.030,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.4,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,AST (SGOT),,12,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,LDH,,127,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.33,,H,,,1.25 - 1.92,mL/sec +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,79.2,,,,,kg, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,FSH,Follicle Stimulating Hormone,,3.55,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,GFR,EGFR by MDRD,,92,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Beyond stability,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Beyond stability,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.62,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.19,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.85,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.7,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.0,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,253,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.1,,,,,<6.5%, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.61,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Triglycerides (GPO),,0.46,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Cholesterol (High Performance),,3.59,R,L,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,LDL Chol Friedewald 4th,,2.15,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,TSH,TSH 3rd IS-QT,,1.803,,,,,0.45 - 5.33,mIU/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-05-29_140526 sponsor-study-35472-test-results-898744-standard.csv b/Covance_UCO3001/Source/2026-05-29_140526 sponsor-study-35472-test-results-898744-standard.csv new file mode 100644 index 0000000..1cacad6 --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140526 sponsor-study-35472-test-results-898744-standard.csv @@ -0,0 +1,200 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,AST (SGOT),,63,R,H RX,,,8 - 40,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,GGT,,143,R,H,,,10 - 50,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,LDH,,148,,,,,53 - 234,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Urea Nitrogen,,8.4,,,,,1.4 - 8.6,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Glucose Fasting,,8.5,R,H RX,,,3.9 - 5.6,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Uric Acid,,397,,,,,149 - 494,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Protein,,81,R,H,,,60 - 80,g/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatine Kinase,,54,,,,,39 - 308,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.85,,,,,1.42 - 2.08,mL/sec +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,106.6,,,,,kg, +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.7,R,H RX,,,<6.5%, +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,C-REACTIVE PROTEIN,C Reactive Protein HS,,11.9,,H,,,0 - 5,mg/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CASTS,Ur Hyaline Casts/LPF,,96,,,,,0 /LPF, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,H,,,0 - 3,/HPF +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,AST (SGOT),,72,,H RX,,,8 - 40,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,GGT,,264,,HT,,Result verified by repeat analysis,10 - 50,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Urea Nitrogen,,7.3,,,,,1.4 - 8.6,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Glucose Fasting,,8.3,,H,,,3.9 - 5.6,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Uric Acid,,497,,H,,,149 - 494,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Protein,,84,,H,,,60 - 80,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatine Kinase,,37,,L,,,39 - 308,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Chloride,,94,,,,,94 - 112,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.60,,,,,1.42 - 2.08,mL/sec +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,108.0,,,,,kg, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DIRECT LDL,Direct LDL-C 3rd Gen,,3.83,R,H,,,<3.36 mmol/L, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,GFR,EGFR by MDRD,,60,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,125 - 170,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.37 - 0.51, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4 - 5.8,TI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.32,,,,,3.8 - 10.7,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.59,,,,,1.96 - 7.23,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.36,,,,,0.8 - 3,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.06,,H,,,0.12 - 0.92,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,22.9,,,,,15.4 - 48.5,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.3,,H,,,2.6 - 10.1,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,311,,,,,130 - 394,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.9,,H RX,,,<6.5%, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,12.96,,,,,1.9 - 23,uIU/mL +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Direct HDL-C 4th Generation,,0.81,,L,,,1.03 - 1.53,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Triglycerides (GPO),,5.76,,H SF,,,0.65 - 2.94,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Cholesterol (High Performance),,6.27,,,,,4.53 - 7.71,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,LDL Chol Friedewald 4th,,,,,Test cancelled: Invalid/High Triglycerides,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,RETICULOCYTES,Reticulocyte Count %,,4.6,,H,,,0.6 - 2.5,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,TSH,TSH 3rd IS-QT,,3.611,,,,,0.45 - 5.33,mIU/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Specific Gravity,,1.034,,H,,,1.01 - 1.03, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Protein,,+1,,H,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Glucose,,+1,,H,,,Ref Rng:Normal, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Urobilinogen,,+1,,H,,,Ref Rng:Normal, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,GGT,,32,,,,,5 - 50,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Glucose Fasting,,9.7,,H RX,,,3.9 - 5.6,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Uric Acid,,289,,,,,149 - 446,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Protein,,66,,,,,60 - 80,g/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg, +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.8,,H,,,<6.5%, +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.9,,,,,0 - 5,mg/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,GGT,,31,,,,,5 - 50,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,LDH,,192,,,,,53 - 234,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Glucose Fasting,,9.2,,H RX,,,3.9 - 5.6,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Uric Acid,,325,,,,,149 - 446,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Protein,,67,,,,,60 - 80,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Bicarbonate,,20.8,,,,,19.3 - 29.3,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,GFR,EGFR by MDRD,,64,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,115 - 158,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,3.9 - 5.5,TI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,80 - 100,fL +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.78,,H,,,3.8 - 10.7,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.25,,,,,1.96 - 7.23,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.50,,H,,,0.8 - 3,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.0,,,,,40.5 - 75,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.5,,,,,15.4 - 48.5,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,284,,,,,130 - 394,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.7,,H,,,<6.5%, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.50,,,,,1.9 - 23,uIU/mL +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Direct HDL-C 4th Generation,,1.94,,H,,,1.03 - 1.53,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.63 - 2.71,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Cholesterol (High Performance),,4.53,,L,,,4.86 - 8.28,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,LDL Chol Friedewald 4th,,1.99,,,,,0 - 3.34,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,TSH,TSH 3rd IS-QT,,1.354,,,,,0.45 - 5.33,mIU/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1.01 - 1.03, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE diff --git a/Covance_UCO3001/Source/2026-05-29_140545 sponsor-study-35472-test-results-898727-standard.csv b/Covance_UCO3001/Source/2026-05-29_140545 sponsor-study-35472-test-results-898727-standard.csv new file mode 100644 index 0000000..e17118e --- /dev/null +++ b/Covance_UCO3001/Source/2026-05-29_140545 sponsor-study-35472-test-results-898727-standard.csv @@ -0,0 +1,994 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,,,,0 - 8,/HPF +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,GGT,,22,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,LDH,,162,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Glucose Fasting,,4.0,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Protein,,64,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,Result verified by repeat analysis,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.8,,L,,Result verified by repeat analysis,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.80,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.34,,,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.8,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.3,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 2,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,459,,H,,Result verified by repeat analysis,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,25.80,,H,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Triglycerides (GPO),,1.49,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Cholesterol (High Performance),,4.00,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Uric Acid,,285,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.52,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.31,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.9,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,174,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.95,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Direct HDL-C 4th Generation,,1.39,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Triglycerides (GPO),,0.75,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Cholesterol (High Performance),,3.90,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.11,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.82,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.8,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.1,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,466,R,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,9.83,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Direct HDL-C 4th Generation,,1.06,,,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Triglycerides (GPO),,1.56,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Cholesterol (High Performance),,4.33,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,LDL Chol Friedewald 4th,,2.56,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,TSH,TSH 3rd IS-QT,,0.806,,,,,0.45 - 5.33,mIU/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,ALT (SGPT),,39,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Glucose Fasting,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Uric Acid,,330,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.94,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.55,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,19.10,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Direct HDL-C 4th Generation,,1.09,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Triglycerides (GPO),,1.96,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Cholesterol (High Performance),,3.72,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,LDL Chol Friedewald 4th,,1.73,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,TSH,TSH 3rd IS-QT,,1.089,,,,,0.45 - 5.33,mIU/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,C-REACTIVE PROTEIN,C Reactive Protein HS,,9.2,,H,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Bilirubin,,16,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,GGT,,79,R,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,LDH,,103,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Urea Nitrogen,,2.3,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Uric Acid,,427,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Chloride,,97,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.04,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.60,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.3,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.4,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,366,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,R,"Mar 6, 2026 2:00 PM",6226560891,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.55,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Triglycerides (GPO),,1.94,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Cholesterol (High Performance),,4.72,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,LDL Chol Friedewald 4th,,2.60,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,TSH,TSH 3rd IS-QT,,0.976,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatine Kinase,,42,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Bicarbonate,,24.2,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.67,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.77,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.2,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.3,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,453,,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.65,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Direct HDL-C 4th Generation,,1.00,,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Triglycerides (GPO),,1.31,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Cholesterol (High Performance),,4.11,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,LDH,,133,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Uric Acid,,244,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Protein,,63,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatine Kinase,,139,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.41,,L,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.63,,L,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.9,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.7,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,160,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.99,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Triglycerides (GPO),,0.52,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Cholesterol (High Performance),,3.73,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,GGT,,11,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,LDH,,131,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Urea Nitrogen,,5.8,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Uric Acid,,300,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Protein,,62,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatine Kinase,,120,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.28,,H,,,1.42 - 2.08,mL/sec +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.0,,,,,kg, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,GFR,EGFR by MDRD,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.30,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.90,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.7,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.3,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.6,,H,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.9,,,,,<6.5 %, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.16,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Direct HDL-C 4th Generation,,1.43,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Triglycerides (GPO),,0.61,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Cholesterol (High Performance),,3.71,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,TSH,TSH 3rd IS-QT,,1.462,,,,,0.45 - 5.33,mIU/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Temazepam (Confirmed),,RX,,,No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Oxazepam (Confirmed),,RX,,,No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Uric Acid,,247,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatine Kinase,,44,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.25,,,,,1.25 - 1.92,mL/sec +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,74.0,,,,,kg, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Detected (unconfirmed),,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FSH,Follicle Stimulating Hormone,,55.96,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,GFR,EGFR by MDRD,,65,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.94,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.50,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.91,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.8,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.5,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,448,R,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.62,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Direct HDL-C 4th Generation,,1.02,R,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Triglycerides (GPO),,1.44,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Cholesterol (High Performance),,4.25,R,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,TSH,TSH 3rd IS-QT,,0.834,,,,,0.45 - 5.33,mIU/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Specific Gravity,,1.007,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.8,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,ALT (SGPT),,41,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,GGT,,81,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,LDH,,92,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Uric Acid,,412,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Phosphorus,,0.94,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatine Kinase,,148,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.61,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.00,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.5,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,322,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,63.81,,H,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Triglycerides (GPO),,2.66,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Cholesterol (High Performance),,4.84,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,LDL Chol Friedewald 4th,,2.49,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.0,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,GGT,,70,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,LDH,,89,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Urea Nitrogen,,3.1,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Glucose Fasting,,6.6,R,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Bicarbonate,,26.3,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.86,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.10,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.2,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.3,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,374,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,196.11,,H,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Triglycerides (GPO),,2.92,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,TSH,TSH 3rd IS-QT,,0.889,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,ALT (SGPT),,34,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,GGT,,69,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,LDH,,98,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Uric Acid,,520,R,H,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatine Kinase,,126,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.43,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.49,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.20,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.4,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.2,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,288,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.24,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Direct HDL-C 4th Generation,,1.15,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Triglycerides (GPO),,1.64,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Cholesterol (High Performance),,4.19,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,LDL Chol Friedewald 4th,,2.29,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,GGT,,62,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Uric Acid,,472,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatine Kinase,,132,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.53,,H,,,1.42 - 2.08,mL/sec +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,130.2,,,,,kg, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,GFR,EGFR by MDRD,,98,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.89,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.47,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.93,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.7,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,369,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.15,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Triglycerides (GPO),,1.40,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Cholesterol (High Performance),,4.07,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,LDL Chol Friedewald 4th,,2.19,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,TSH,TSH 3rd IS-QT,,1.099,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,4 - 43,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,GGT,,44,,,,,4 - 49,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,LDH,,220,,,,,53 - 234,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Uric Acid,,295,,,,,125 - 428,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatine Kinase,,92,,,,,26 - 192,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.78,,H,,,1.25 - 1.92,mL/sec +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,105.0,,,,,kg, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,GFR,EGFR by MDRD,,114,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.91,,,,,3.8 - 10.7,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.15,,,,,1.96 - 7.23,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.3,,,,,40.5 - 75,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.1,,,,,0 - 2,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,241,,,,,140 - 400,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.9,,,,,<6.5%, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.68,,,,,1.9 - 23,uIU/mL +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Triglycerides (GPO),,1.78,R,H,,,0.41 - 1.63,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Cholesterol (High Performance),,5.53,,,,,3.31 - 5.64,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,LDL Chol Friedewald 4th,,3.48,,H,,,0 - 3.34,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,TSH,TSH 3rd IS-QT,,2.503,,,,,0.45 - 5.33,mIU/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,35 - 104,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,4 - 43,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,GGT,,<4,,L,,Result verified by repeat analysis,4 - 49,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Uric Acid,,193,,,,,125 - 428,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatine Kinase,,75,,,,,26 - 192,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.06,,H,,,1.25 - 1.92,mL/sec +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,65.8,,,,,kg, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,GFR,EGFR by MDRD,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.06,,,,,3.8 - 10.7,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.38,,,,,1.96 - 7.23,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.11,,,,,0.91 - 4.28,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.7,,,,,40.5 - 75,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.9,,,,,15.4 - 48.5,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.9,,,,,0 - 6.8,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,182,,,,,140 - 400,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.0,,,,,<6.5%, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Direct HDL-C 4th Generation,,1.77,R,H,,,1.03 - 1.53,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Triglycerides (GPO),,0.71,,,,,0.44 - 1.99,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Cholesterol (High Performance),,5.82,,,,,3.65 - 6.21,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,LDL Chol Friedewald 4th,,3.72,,H,,,0 - 3.34,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,TSH,TSH 3rd IS-QT,,1.847,,,,,0.45 - 5.33,mIU/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.6,,,,,0 - 5,mg/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,GGT,,79,R,H,,,4 - 49,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Uric Acid,,405,,,,,149 - 446,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,26 - 192,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.33,,,,,1.25 - 1.92,mL/sec +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,83.8,,,,,kg, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FSH,Follicle Stimulating Hormone,,32.96,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,GFR,EGFR by MDRD,,54,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,117,,,,,116 - 164,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.35,,,,,0.34 - 0.48, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 98,fL +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.93,,,,,3.8 - 10.7,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.05,,,,,1.96 - 7.23,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.25,,,,,0 - 0.57,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.3,,,,,40.5 - 75,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.2,,,,,15.4 - 48.5,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.8,,,,,2.6 - 10.1,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.2,,,,,0 - 6.8,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,157,,,,,140 - 400,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.5,,H,,,<6.5%, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,27.42,,H,,,1.9 - 23,uIU/mL +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Direct HDL-C 4th Generation,,0.82,R,L,,,1.03 - 1.53,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Triglycerides (GPO),,2.78,,,,,0.59 - 2.96,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Cholesterol (High Performance),,5.73,,,,,4.42 - 7.53,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,LDL Chol Friedewald 4th,,3.64,,H,,,0 - 3.34,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,TSH,TSH 3rd IS-QT,,1.091,,,,,0.45 - 5.33,mIU/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery.csv b/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery.csv new file mode 100644 index 0000000..70a741b --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery.csv @@ -0,0 +1,76 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 8:40 AM",6227323295,CZ100222004,2047932,"Mar 17, 2026 3:49 PM","Mar 17, 2026 9:07 PM",VST,Closed,5h 17m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 7:45 AM",6227323297,CZ100222005,2047949,"Mar 17, 2026 3:56 PM","Mar 17, 2026 9:09 PM",VST,Closed,5h 12m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Mar 9, 2026 8:50 AM",6227323270,CZ100222003,2038559,"Mar 11, 2026 4:39 PM","Mar 11, 2026 8:32 PM","AGE, ADT201, AMT58660, AMT3542",Closed,3h 53m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 2,"Mar 27, 2026 7:10 AM",6227323272,CZ100222003,2073305,"Apr 1, 2026 7:54 PM","Apr 2, 2026 7:37 AM",AMT58660,Closed,11h 43m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 4,"Apr 8, 2026 8:05 AM",6227323274,CZ100222003,2086982,"Apr 10, 2026 1:00 PM","Apr 10, 2026 1:06 PM",AMT58660,Closed,5m,Katerina Havlikova,katerina.havlikova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 2, 2026 11:00 AM",6227810899,CZ100222003,2029805,"Mar 5, 2026 6:36 PM","Mar 6, 2026 9:01 AM","AMT58660, AMT3542",Closed,14h 24m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 4, 2026 9:20 AM",6227810900,CZ100222005,2031896,"Mar 6, 2026 6:45 PM","Mar 6, 2026 7:25 PM","AMT58660, AMT3542",Closed,40m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 3, 2026 12:10 PM",6227810901,CZ100222004,2029774,"Mar 5, 2026 6:23 PM","Mar 6, 2026 7:24 PM","AMT58660, AMT3542",Closed,1d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Apr 9, 2026 10:35 AM",6228173397,CZ100222005,2089669,"Apr 13, 2026 2:06 PM","Apr 23, 2026 12:53 PM",PCFCOM,Closed,9d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Screening,"Feb 25, 2026 12:15 PM",6227635204,CZ100212001,2019716,"Feb 27, 2026 12:09 PM","Mar 3, 2026 11:11 AM","AMT58660, AMT3542",Closed,3d,Zdenka Dvorakova,dvorakova.zdenka@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 10:37 AM",6227635207,CZ100212001,2085089,"Apr 9, 2026 2:54 PM","Apr 15, 2026 7:20 AM","AMT58660, AMT15602",Closed,5d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 2,"Apr 20, 2026 8:43 AM",6227635208,CZ100212001,2106304,"Apr 22, 2026 7:04 PM","Apr 23, 2026 9:21 AM",AMT58660,Closed,14h 16m,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 4,"May 5, 2026 10:00 AM",6227635211,CZ100212001,2133221,"May 9, 2026 6:24 PM","May 11, 2026 2:34 PM",AMT58660,Closed,1d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Screening,"Apr 13, 2026 12:20 PM",6227993962,CZ100201001,2094721,"Apr 15, 2026 6:02 PM","Apr 21, 2026 12:47 PM","AMT58660, AMT3542",Closed,5d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Induction Week 0,"May 18, 2026 9:28 AM",6227993966,CZ100201001,2156061,"May 22, 2026 9:37 PM","May 25, 2026 6:43 AM","ADT201, AMT58660, AMT3542",Closed,2d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"May 25, 2026 12:00 AM",6228501732,CZ100132003,2165892,"May 29, 2026 3:13 PM","May 31, 2026 9:26 PM",ADT8471,Response Received,2d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2032628,"Mar 9, 2026 10:33 AM","Mar 9, 2026 11:58 AM",AMT58660,Closed,1h 24m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2026645,"Mar 4, 2026 12:58 PM","Mar 6, 2026 6:01 PM","AMT58660, AMT3542",Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,,6227323206,,2112374,"Apr 27, 2026 2:17 PM","May 5, 2026 11:24 AM","PCFCOM, ADT201, AMT58660, AMT3542",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Apr 23, 2026 7:40 AM",6227323207,CZ100012002,2113312,"Apr 27, 2026 6:35 PM","Apr 28, 2026 9:06 PM",AMT58660,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Mar 4, 2026 7:00 AM",6227323208,CZ100012001,2030545,"Mar 6, 2026 11:02 AM","Mar 6, 2026 11:42 AM","AMT58660, AMT688",Closed,39m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"Mar 18, 2026 7:05 AM",6227323210,CZ100012001,2053955,"Mar 20, 2026 2:50 PM","Mar 25, 2026 3:29 PM","SCD, AMT58660",Closed,5d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1976585,"Jan 30, 2026 1:21 PM","Feb 6, 2026 2:37 PM","VST, AGE",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1991148,"Feb 9, 2026 7:43 PM","Feb 13, 2026 8:04 AM",AGE,Closed,3d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"Feb 5, 2026 12:00 AM",6227323223,CZ100012001,1989998,"Feb 9, 2026 1:42 PM","Feb 10, 2026 6:46 PM",VST,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323231,,2053405,"Mar 20, 2026 12:14 PM","Mar 30, 2026 12:54 AM",PCFCOM,Closed,9d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2141856,"May 14, 2026 4:23 PM","May 19, 2026 12:54 PM","SCD, AGE",Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2152157,"May 21, 2026 11:32 AM","May 26, 2026 8:15 AM",AGE,Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2112413,"Apr 27, 2026 2:24 PM","May 5, 2026 11:25 AM","PSX, SCT, VST, AGE, ADT201",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2126904,"May 6, 2026 12:02 PM","May 12, 2026 4:58 PM","SCT, VST, AGE",Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323233,,2053482,"Mar 20, 2026 12:40 PM","Mar 27, 2026 9:58 AM",PCFCOM,Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,"Apr 8, 2026 7:10 AM",6228036554,CZ100012002,2089973,"Apr 13, 2026 3:26 PM","Apr 21, 2026 1:32 PM",AMT15602,Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"May 13, 2026 12:00 AM",6228252073,CZ100012003,2147778,"May 19, 2026 10:13 AM","May 21, 2026 4:38 PM",VST,Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"May 6, 2026 8:05 AM",6227933142,CZ100012002,2134478,"May 11, 2026 2:54 PM","May 11, 2026 3:11 PM","AMT58660, AMT3542",Closed,16m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 12,"May 13, 2026 8:05 AM",6227933143,CZ100012001,2147202,"May 18, 2026 7:51 PM","May 19, 2026 8:38 AM",AMT58660,Closed,12h 47m,Matej Falc,matesfalc@seznam.cz,Investigator +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2109874,"Apr 24, 2026 2:00 PM",,AMT58660,Closed,,,, +CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2123465,"May 4, 2026 7:16 PM","May 5, 2026 10:04 AM",AMT58660,Closed,14h 48m,Petr Pekny,petr.pekny@nmskb.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2064220,"Mar 26, 2026 9:37 PM",,"AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2066330,"Mar 27, 2026 6:43 PM","Mar 30, 2026 10:41 PM",AMT58660,Closed,3d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2087084,"Apr 10, 2026 1:27 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2100086,"Apr 18, 2026 11:15 AM","Apr 22, 2026 7:51 PM",AMT58660,Closed,4d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2108501,"Apr 23, 2026 6:55 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2123492,"May 4, 2026 7:24 PM","May 5, 2026 3:30 PM",AMT58660,Closed,20h 6m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2101883,"Apr 20, 2026 6:49 PM","Apr 22, 2026 7:51 PM",AMT58660,Closed,2d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2090916,"Apr 13, 2026 9:15 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2079289,"Apr 6, 2026 3:21 PM",,AMT58660,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2033901,"Mar 9, 2026 3:53 PM","Mar 16, 2026 10:08 PM","SCD, AMT58660, AMT3542",Closed,7d,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2023257,"Mar 2, 2026 6:47 PM",,"SCD, AGE, AMT58660, AMT3542",Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"May 6, 2026 10:45 AM",6227635141,CZ100132003,2137874,"May 12, 2026 8:03 PM","May 19, 2026 7:48 AM",AMT58660,Closed,6d,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2109534,"Apr 24, 2026 12:45 PM",,ADT8471,Closed,,,, +CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2123486,"May 4, 2026 7:23 PM","May 5, 2026 3:30 PM",ADT8471,Closed,20h 7m,David Stepek,dstepek@vnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Unscheduled,,6227697745,,2140058,"May 13, 2026 7:02 PM","May 26, 2026 9:46 AM",PCFCOM,Response Received,12d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Screening,"Mar 18, 2026 9:18 AM",6227697718,CZ100122001,2053959,"Mar 20, 2026 2:52 PM","Mar 23, 2026 12:00 PM","SCT, AMT58660",Closed,2d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 11:45 AM",6227697719,CZ100122001,2085069,"Apr 9, 2026 2:48 PM","Apr 9, 2026 6:28 PM",AMT58660,Closed,3h 39m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 22, 2026 9:25 AM",6227697722,CZ100122001,2113315,"Apr 27, 2026 6:35 PM","Apr 27, 2026 8:50 PM",AMT58660,Closed,2h 14m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 4,"May 7, 2026 12:40 PM",6227697723,CZ100122001,2142322,"May 14, 2026 7:10 PM","May 14, 2026 7:42 PM",AMT58660,Closed,31m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Biopsy,"Mar 23, 2026 12:00 AM",6227697736,CZ100122001,2060524,"Mar 25, 2026 12:53 PM","Mar 25, 2026 2:09 PM",AMT23260,Closed,1h 15m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2075611,"Apr 2, 2026 5:37 PM",,AMT58660,Closed,,,, +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2085558,"Apr 9, 2026 5:08 PM","Apr 10, 2026 2:06 PM",AMT58660,Closed,20h 58m,Jiri Pumprla,research@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Apr 16, 2026 12:00 PM",6227323332,CZ100092002,2101792,"Apr 20, 2026 6:19 PM","Apr 23, 2026 1:22 PM",AMT58660,Closed,2d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 0,"May 5, 2026 11:30 AM",6227323334,CZ100092001,2133224,"May 9, 2026 6:30 PM","May 13, 2026 10:10 AM","AMT58660, ADT809",Closed,3d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 2,"May 19, 2026 10:50 AM",6227323335,CZ100092001,2158952,"May 26, 2026 12:21 PM","May 27, 2026 9:03 AM",AMT58660,Closed,20h 42m,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Unscheduled,"Mar 17, 2026 8:00 AM",6227323265,CZ100062001,2052144,"Mar 19, 2026 4:08 PM","Mar 24, 2026 9:29 AM","PSX, SCT, AGE",Closed,4d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Screening,"Apr 20, 2026 7:45 AM",6227323234,CZ100062002,2106334,"Apr 22, 2026 7:18 PM","Apr 22, 2026 7:36 PM",AMT58660,Closed,18m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2064023,"Mar 26, 2026 7:00 PM","Mar 27, 2026 9:04 AM",PCFCOM,Closed,14h 3m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2061456,"Mar 25, 2026 6:16 PM","Mar 26, 2026 8:38 AM",AMT58660,Closed,14h 22m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 8, 2026 7:10 AM",6227323240,CZ100062001,2086807,"Apr 10, 2026 12:21 PM","Apr 18, 2026 10:40 PM","AMT58660, ADT809",Closed,8d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 4,"Apr 15, 2026 8:45 AM",6227323242,CZ100062001,2102704,"Apr 21, 2026 11:22 AM","Apr 22, 2026 7:36 PM",AMT58660,Closed,1d,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Biopsy,"Feb 19, 2026 12:00 AM",6227323254,CZ100062001,2014333,"Feb 24, 2026 4:13 PM","Feb 24, 2026 8:20 PM",VST,Closed,4h 6m,Michal Konecny,konecnymi@seznam.cz,Investigator +CZ10003 - Dr. Leksa Vaclav,CZECH REPUBLIC,Screening,"May 13, 2026 8:15 AM",6227323299,CZ100032001,2154732,"May 22, 2026 12:36 PM","May 25, 2026 8:57 AM",AMT58660,Closed,2d,Leksa Vaclav,vaclav.leksa@seznam.cz,Investigator +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,FALSE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv b/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv new file mode 100644 index 0000000..652a478 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122241 sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv @@ -0,0 +1,9 @@ +Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +,,,,,,,,,,,,,, +title,value,,,,,,,,,,,,, +Search,,,,,,,,,,,,,, +Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,, +Unresponded Only?,TRUE,,,,,,,,,,,,, +Posted,From - To - ,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122704 sponsor-study-36940-test-results-930525-standard.csv b/Covance_UCO3001/Source/2026-06-01_122704 sponsor-study-36940-test-results-930525-standard.csv new file mode 100644 index 0000000..65d2d3f --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122704 sponsor-study-36940-test-results-930525-standard.csv @@ -0,0 +1,709 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,20-May-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:44,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,22-May-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Alkaline Phosphatase,,68,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,GGT,,10,,,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,101,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Uric Acid,,255,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Time,Y,06:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.72,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.71,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.4,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.0,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,,H,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,294,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:40,,,,,, +CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,LDH,,147,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatine Kinase,,112,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Magnesium,,0.76,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,102,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.68,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.92,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.94,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.40,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.7,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,308,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,14:15,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,15:25,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,14:15,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.2,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatine Kinase,,116,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Magnesium,,0.80,,,,,0.66 - 1.07,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Time,Y,05:55,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.07,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.83,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.67,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.1,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,314,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Direct HDL-C 4th Generation,,1.90,,H,,,1.03 - 1.53,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Triglycerides (GPO),,0.43,,L,,,0.56 - 3.62,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Cholesterol (High Performance),,3.22,,L,,,3.88 - 6.83,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,LDL Chol Friedewald 4th,,1.12,,,,,0 - 3.34,mmol/L +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:35,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:45,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:35,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Apr-2026,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,05:55,,,,,, +CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,LDH,,225,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Urea Nitrogen,,10.1,,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,110,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Uric Acid,,455,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatine Kinase,,367,,H,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Bicarbonate,,24.7,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,76,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Time,Y,05:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.70,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.26,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.67,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,40.8,,,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,39.6,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,11.7,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,282,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:15,,,,,, +CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,01-Apr-2026,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:46,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,03-Apr-2026,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,LDH,,170,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Urea Nitrogen,,9.4,R,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Uric Acid,,353,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Phosphorus,,1.32,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatine Kinase,,167,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Date,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.92,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.29,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.57,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.61,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.7,R,L,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.4,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.3,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,252,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,27-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,, +CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Bilirubin,,3,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,GGT,,19,,,,,10 - 50,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Uric Acid,,429,,,,,149 - 494,umol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Calcium (EDTA),,2.07,,,,,2.07 - 2.64,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Protein,,55,,L,,,60 - 80,g/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,33 - 49,g/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,39 - 308,U/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Sodium,,148,,H,,,135 - 145,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Chloride,,110,,,,,94 - 112,mmol/L +CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 0.98,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,5 - 48,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,GGT,,6,R,L,,,10 - 61,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 488,umol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Bicarbonate,,27.4,,,,,19.3 - 29.3,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,ALT (SGPT),,79,R,H,,,5 - 48,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,AST (SGOT),,51,R,H,,,8 - 40,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,GGT,,45,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,LDH,,228,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Urea Nitrogen,,8.3,,,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,106,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatine Kinase,,250,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,79,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Time,Y,08:55,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,1.08,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.4,,,,,40.5 - 75,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.9,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,16.1,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Triglycerides (GPO),,0.84,,,,,0.56 - 3.62,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Cholesterol (High Performance),,5.14,,,,,3.88 - 6.83,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,LDL Chol Friedewald 4th,,3.63,,H,,,0 - 3.34,mmol/L +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:05,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Mar-2026,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:55,,,,,, +CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SUBJECT HEIGHT (CM),Height (cm),Y,190,,,,,cm, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.67,,,,,3.8 - 10.7,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.96,,,,,1.96 - 7.23,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.68,,,,,0.91 - 4.28,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.42,,,,,0 - 0.57,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.3,,,,,40.5 - 75,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.2,,,,,15.4 - 48.5,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.7,,,,,2.6 - 10.1,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,6.3,,,,,0 - 6.8,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,341,,,,,140 - 400,GI/L +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,SUBJECT HEIGHT (CM),Height (cm),Y,188,,,,,cm, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,,,,Test group cancelled: No specimen received,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,91,,L,,,125 - 170,g/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.31,,L,,,0.37 - 0.51, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.7,,L,,,4 - 5.8,TI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.98,,H,,,3.8 - 10.7,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.38,,H,,,1.96 - 7.23,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.49,,,,,0.8 - 3,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.88,,,,,0.12 - 0.92,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.18,,,,,0 - 0.57,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.4,,H,,,40.5 - 75,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,12.4,,L,,,15.4 - 48.5,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,465,,H,,,130 - 394,GI/L +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,SUBJECT HEIGHT (CM),Height (cm),Y,158,,,,,cm, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,40 - 129,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,ALT (SGPT),,69,,H,,,5 - 48,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,GGT,,38,,,,,10 - 61,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,LDH,,213,,,,,53 - 234,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Urea Nitrogen,,8.9,,H,,,1.4 - 8.6,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,105,,,,,40 - 110,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Uric Acid,,414,,,,,125 - 488,umol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Magnesium,,0.74,,,,,0.66 - 1.07,mmol/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,127 - 181,g/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.87,,,,,3.8 - 10.7,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.24,,,,,1.96 - 7.23,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.46,,,,,0.91 - 4.28,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.79,R,H,,,0 - 0.57,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.2,R,L,,,40.5 - 75,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.9,,,,,15.4 - 48.5,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,13.5,R,H,,,0 - 6.8,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,302,,,,,140 - 400,GI/L +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,, +CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Feb-2026,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:39,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,INFLAMED AREA,Inflamed area?,,No,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Feb-2026,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,11-Feb-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,14:38,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,13-Feb-2026,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,LDH,,190,,,,,53 - 234,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Urea Nitrogen,,8.5,,,,,1.4 - 8.6,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,115,,H,,,40 - 110,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Uric Acid,,337,,,,,125 - 488,umol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Phosphorus,,0.86,,,,,0.71 - 1.65,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatine Kinase,,144,,,,,39 - 308,U/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Bicarbonate,,27.5,,,,,19.3 - 29.3,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CKD-EPI 2021,CKD-EPI 2021 Without Race,,72,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,127 - 181,g/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.49,,,,,1.96 - 7.23,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,,,,0 - 0.57,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.7,,,,,40.5 - 75,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.7,,,,,15.4 - 48.5,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,224,,,,,140 - 400,GI/L +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.4,,,,,0 - 6.2,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Alkaline Phosphatase,,140,,H,,,40 - 129,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,GGT,,136,,H,,,10 - 61,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Uric Acid,,408,,,,,125 - 488,umol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CKD-EPI 2021,CKD-EPI 2021 Without Race,,111,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,85,,L,,,127 - 181,g/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.30,,L,,,0.39 - 0.54, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,L,,,4.5 - 6.4,TI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,21,,L,,,26 - 34,pg +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,74,,L,,,79 - 96,fL +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,15.03,,H,,,3.8 - 10.7,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.38,,H,,,1.96 - 7.23,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.59,,,,,0.91 - 4.28,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.82,,,,,0.12 - 0.92,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,75.7,,H,,,40.5 - 75,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,529,,H,,,140 - 400,GI/L +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122705 sponsor-study-36940-test-results-930556-standard.csv b/Covance_UCO3001/Source/2026-06-01_122705 sponsor-study-36940-test-results-930556-standard.csv new file mode 100644 index 0000000..d10a076 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122705 sponsor-study-36940-test-results-930556-standard.csv @@ -0,0 +1,75 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,27-May-2026,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:10,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,29-May-2026,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: Specimen received in expired coll. container; unable to perform test.,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,LDH,,128,,,,,53 - 234,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Uric Acid,,192,,,,,125 - 428,umol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Phosphorus,,1.00,,,,,0.71 - 1.65,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatine Kinase,,85,,,,,26 - 192,U/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,116 - 164,g/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.80,,,,,3.8 - 10.7,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.53,,,,,1.96 - 7.23,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.91 - 4.28,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.2,,,,,40.5 - 75,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.0,,L,,,15.4 - 48.5,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.0,,,,,0 - 6.8,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,513,,H,,,140 - 400,GI/L +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-06-01_122709 sponsor-study-36940-test-results-930525-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122709 sponsor-study-36940-test-results-930525-microbiology.csv new file mode 100644 index 0000000..a4242f9 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122709 sponsor-study-36940-test-results-930525-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100222001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 15, 2026 4:55 PM",6227323276,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R, +CZ100222002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 23, 2026 10:10 AM",6227323277,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100222004 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 12:20 PM",6227810905,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100222005 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 4, 2026 9:10 AM",6227810904,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122710 sponsor-study-36940-test-results-930556-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122710 sponsor-study-36940-test-results-930556-microbiology.csv new file mode 100644 index 0000000..fba7493 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122710 sponsor-study-36940-test-results-930556-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100032001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 13, 2026 9:30 AM",6227323309,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122727 sponsor-study-36940-test-results-930549-standard.csv b/Covance_UCO3001/Source/2026-06-01_122727 sponsor-study-36940-test-results-930549-standard.csv new file mode 100644 index 0000000..533a201 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122727 sponsor-study-36940-test-results-930549-standard.csv @@ -0,0 +1,242 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Alkaline Phosphatase,,82,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,GGT,,11,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatine Kinase,,55,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Date,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Time,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,Result verified by repeat analysis,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,Result verified by repeat analysis,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.41,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.73,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.41,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.0,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,340,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,12:40,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,14:20,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,12:40,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,,,,,,, +CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,LDH,,138,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Uric Acid,,296,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Phosphorus,,0.77,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Time,Y,05:30,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,Result verified by repeat analysis,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,26,,,,Result verified by repeat analysis,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,Result verified by repeat analysis,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.60,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.39,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.54,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.6,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.5,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,Result verified by repeat analysis,0 - 2,% +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:25,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:25,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:30,,,,,, +CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Uric Acid,,258,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Phosphorus,,0.84,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Bicarbonate,,23.0,,,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,131,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,115,R,L,,,116 - 164,g/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,R,L,,,26 - 34,pg +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,80,,,,,79 - 98,fL +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.11,,,,,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.54,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.3,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.6,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,386,,,,,140 - 400,GI/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Direct HDL-C 4th Generation,,1.35,,,,,1.03 - 1.53,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Triglycerides (GPO),,1.11,,,,,0.41 - 1.63,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Cholesterol (High Performance),,4.41,,,,,3.31 - 5.64,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,LDL Chol Friedewald 4th,,2.55,,,,,0 - 3.34,mmol/L +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:45,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:35,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:45,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ANATOMICAL SITE,Anatomical Site,Y,15 cm,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,23-Mar-2026,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:42,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,25-Mar-2026,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Bilirubin,,<3,R,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,35 - 104,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Uric Acid,,226,,,,,125 - 428,umol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatine Kinase,,84,,,,,26 - 192,U/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Bicarbonate,,19.2,,L,,,19.3 - 29.3,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,111,R,L,,,116 - 164,g/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,78,R,L,,,79 - 98,fL +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.66,,,,,3.8 - 10.7,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.37,,,,,1.96 - 7.23,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.63,,,,,0.91 - 4.28,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.55,,,,,0.12 - 0.92,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.2,,,,,15.4 - 48.5,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,412,R,H,,,140 - 400,GI/L +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122729 sponsor-study-36940-test-results-930549-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122729 sponsor-study-36940-test-results-930549-microbiology.csv new file mode 100644 index 0000000..a05daf8 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122729 sponsor-study-36940-test-results-930549-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100122001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 17, 2026 5:30 PM",6227697725,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122741 sponsor-study-36940-test-results-930555-standard.csv b/Covance_UCO3001/Source/2026-06-01_122741 sponsor-study-36940-test-results-930555-standard.csv new file mode 100644 index 0000000..20b1475 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122741 sponsor-study-36940-test-results-930555-standard.csv @@ -0,0 +1,422 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,BIOPSY COLLECTION METHOD,Collection Method,Y,sigmoidoscopy,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,28-May-2026,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:15,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,,,,,,, +CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.8,,,,,0 - 6.2,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,40 - 129,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,LDH,,124,,,,,53 - 234,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Uric Acid,,298,,,,,125 - 488,umol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatine Kinase,,106,,,,,39 - 308,U/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,127 - 181,g/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,L,,,4.5 - 6.4,TI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.10,,,,,3.8 - 10.7,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.34,,,,,1.96 - 7.23,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.09,,,,,0.91 - 4.28,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.4,,,,,15.4 - 48.5,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.5,,,,,2.6 - 10.1,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,270,,,,,140 - 400,GI/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,IS SUBJECT FASTING?,Is Subject Fasting?,Y,,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Direct HDL-C 4th Generation,,0.90,,L,,,1.03 - 1.53,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.62 - 3.69,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Cholesterol (High Performance),,2.48,,L,,Result verified by repeat analysis,4.19 - 7.24,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,LDL Chol Friedewald 4th,,1.18,,,,,0 - 3.34,mmol/L +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ANATOMICAL SITE,Anatomical Site,Y,15-20,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,14-May-2026,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:15,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,16-May-2026,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatine Kinase,,281,,,,,39 - 308,U/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Bicarbonate,,26.0,,,,,19.3 - 29.3,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,108,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.17,,,,,3.8 - 10.7,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.25,,,,,1.96 - 7.23,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.20,,,,,0.91 - 4.28,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.22,,,,,0 - 0.57,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.9,,,,,15.4 - 48.5,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.3,,,,,0 - 6.8,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.7,,H,,,0 - 2,% +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,306,,,,,140 - 400,GI/L +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,LDH,,118,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Urea Nitrogen,,1.6,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Uric Acid,,424,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Phosphorus,,1.29,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Magnesium,,0.93,,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Date,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Time,Y,20:30,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,R,L,,,127 - 181,g/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,79 - 96,fL +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,14.93,R,H,,,3.8 - 10.7,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,10.00,R,H,,,1.96 - 7.23,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.79,R,H,,,0.12 - 0.92,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.60,R,H,,,0 - 0.57,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.0,,,,,40.5 - 75,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.0,R,H,,,2.6 - 10.1,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,647,R,H,,,140 - 400,GI/L +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:40,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,14-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,20:30,,,,,, +CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,LDH,,113,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Urea Nitrogen,,2.0,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Uric Acid,,410,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Phosphorus,,1.28,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Magnesium,,0.93,R,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,115,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Time,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:10,,,,,, +CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,40 - 129,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,LDH,,141,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Glucose,,4.0,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Uric Acid,,415,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,128,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Time,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,L,,,127 - 181,g/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 96,fL +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.09,,H,,,3.8 - 10.7,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.29,,H,,,1.96 - 7.23,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.23,,,,,0.91 - 4.28,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.31,,H,,,0.12 - 0.92,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.0,,,,,40.5 - 75,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.0,,,,,2.6 - 10.1,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,445,,H,,,140 - 400,GI/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Direct HDL-C 4th Generation,,1.53,,,,,1.03 - 1.53,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.42 - 1.67,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Cholesterol (High Performance),,4.16,,,,,2.95 - 5.12,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,LDL Chol Friedewald 4th,,2.26,,,,,0 - 3.34,mmol/L +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,20-Mar-2026,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:00,,,,,, +CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,TB Testing,,"Mar 11, 2026 9:10 AM",6227323253,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ANATOMICAL SITE,Anatomical Site,Y,18,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY COLLECTION METHOD,Collection Method,Y,sigmoidoscopy,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-Feb-2026,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Feb-2026,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Alkaline Phosphatase,,93,,,,,55 - 149,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,GGT,,64,,H,,,10 - 61,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Urea Nitrogen,,1.5,,,,,1.4 - 8.6,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,40 - 110,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Uric Acid,,288,,,,,125 - 488,umol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Phosphorus,,0.85,,,,,0.71 - 1.65,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Albumin-BCG,,39,,,,,33 - 49,g/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatine Kinase,,34,,L,,,39 - 308,U/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Bicarbonate,,25.5,,,,,19.3 - 29.3,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Magnesium,,0.95,,H,,,0.7 - 0.9,mmol/L +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CKD-EPI 2021,CKD-EPI 2021 Without Race,,133,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Clotted Blood Received,,, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,, +CZ100062001,,,,,Male,TB Testing,,"Feb 16, 2026 7:03 AM",6227323252,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Indeterminate,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122743 sponsor-study-36940-test-results-930555-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122743 sponsor-study-36940-test-results-930555-microbiology.csv new file mode 100644 index 0000000..90a8458 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122743 sponsor-study-36940-test-results-930555-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100062001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 16, 2026 7:20 AM",6227323244,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 11, 2026 9:15 AM",6227323245,STOOL CULTURE,,,,Test group cancelled: Specimen received beyond stability,,,,,,,,,,, +CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 17, 2026 9:00 AM",6227323243,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,, +CZ100062002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 7:45 AM",6228194341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122748 sponsor-study-36940-test-results-930547-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122748 sponsor-study-36940-test-results-930547-microbiology.csv new file mode 100644 index 0000000..b9b31df --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122748 sponsor-study-36940-test-results-930547-microbiology.csv @@ -0,0 +1,5 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100132001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 26, 2026 10:35 AM",6227635149,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100132002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 1, 2026 8:30 AM",6227635148,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100132003 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 7, 2026 5:45 AM",6227635150,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122750 sponsor-study-36940-test-results-930547-standard.csv b/Covance_UCO3001/Source/2026-06-01_122750 sponsor-study-36940-test-results-930547-standard.csv new file mode 100644 index 0000000..d606dbc --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122750 sponsor-study-36940-test-results-930547-standard.csv @@ -0,0 +1,500 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Uric Acid,,346,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatine Kinase,,206,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Time,Y,07:00,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,H,,,79 - 96,fL +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.61,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.81,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.50,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.0,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.1,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.9,,,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,283,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:05,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:10,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:05,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:00,,,,,, +CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,25-May-2026,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:05,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,INFLAMED AREA,Inflamed area?,,,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,27-May-2026,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Glucose,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Calcium (EDTA),,2.48,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatine Kinase,,204,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Time,Y,08:50,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.64,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.04,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.59,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.9,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.4,,H,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,275,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Direct HDL-C 4th Generation,,1.26,,,,,1.03 - 1.53,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Triglycerides (GPO),,1.63,,,,,0.5 - 2.81,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Cholesterol (High Performance),,4.71,,,,,3.31 - 6.1,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,LDL Chol Friedewald 4th,,2.70,,,,,0 - 3.34,mmol/L +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:25,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:30,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:25,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:50,,,,,, +CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,35 - 104,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,GGT,,34,,,,,4 - 49,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Urea Nitrogen,,2.8,,,,,1.4 - 8.6,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,125 - 428,umol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,95,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,116 - 164,g/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 98,fL +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.91,,,,,3.8 - 10.7,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.94,,,,,1.96 - 7.23,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.35,,,,,0.91 - 4.28,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.5,,,,,40.5 - 75,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.5,,,,,15.4 - 48.5,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,271,,,,,140 - 400,GI/L +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,GGT,,21,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,LDH,,172,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Urea Nitrogen,,6.2,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Uric Acid,,297,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Bicarbonate,,26.7,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,123,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Date,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.31,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.98,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.0,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.0,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.0,,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,226,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:50,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,21-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,21-Apr-2026,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:45,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Apr-2026,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Bicarbonate,,26.5,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,150,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.89,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.84,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.7,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.7,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,R,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,217,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:00,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,40 - 129,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,LDH,,130,,,,,53 - 234,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,82,,,,,40 - 110,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Glucose,,7.1,,H,,,3.9 - 5.6,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Uric Acid,,301,,,,,125 - 488,umol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Phosphorus,,1.42,,,,,0.71 - 1.65,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatine Kinase,,91,,,,,39 - 308,U/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,114,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,127 - 181,g/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,R,L,,,4.5 - 6.4,TI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,34,,,,,26 - 34,pg +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.60,,,,,3.8 - 10.7,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.44,,,,,1.96 - 7.23,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.11,,,,,0.91 - 4.28,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.28,,,,,0 - 0.57,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.8,,,,,15.4 - 48.5,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.6,,,,,2.6 - 10.1,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.7,,,,,0 - 6.8,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,256,,,,,140 - 400,GI/L +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Urea Nitrogen,,7.7,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Phosphorus,,1.04,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Magnesium,,0.78,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Date,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Time,Y,07:30,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.53,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.3,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.6,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.4,R,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,% +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,235,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Direct HDL-C 4th Generation,,1.91,,H,,,1.03 - 1.53,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Triglycerides (GPO),,0.67,,,,,0.5 - 2.81,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Cholesterol (High Performance),,4.26,,,,,3.31 - 6.1,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,LDL Chol Friedewald 4th,,2.04,,,,,0 - 3.34,mmol/L +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:40,R,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:40,R,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,24-Mar-2026,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,07:30,,,,,, +CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,12-Mar-2026,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:52,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,14-Mar-2026,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,40 - 129,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Glucose,,6.6,,H,,,3.9 - 5.6,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Uric Acid,,358,,,,,125 - 488,umol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.88,,,,,1.96 - 7.23,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,49.4,,,,,40.5 - 75,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.9,,,,,15.4 - 48.5,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,9.9,,H,,,0 - 6.8,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,222,,,,,140 - 400,GI/L +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,SUBJECT HEIGHT (CM),Height (cm),Y,163,,,,,cm, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-microbiology.csv new file mode 100644 index 0000000..035d1ae --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-microbiology.csv @@ -0,0 +1,5 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 24, 2026 8:45 AM",6227635182,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 6, 2026 9:30 AM",6228610564,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,, +CZ100162002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 27, 2026 1:15 PM",6227635180,STOOL CULTURE,,,,,,,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-standard.csv b/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-standard.csv new file mode 100644 index 0000000..32bb9c9 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122808 sponsor-study-36940-test-results-930539-standard.csv @@ -0,0 +1,178 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Alkaline Phosphatase,,50,,,,,40 - 129,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,AST (SGOT),,10,,,,,8 - 40,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Glucose,,5.7,R,H,,,3.9 - 5.6,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Uric Acid,,239,,,,,125 - 488,umol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Calcium (EDTA),,2.22,,,,,2.07 - 2.64,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Protein,,60,R,L,,,61 - 84,g/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,33 - 49,g/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatine Kinase,,<18,R,L,,Result verified by repeat analysis,39 - 308,U/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Bicarbonate,,26.1,,,,,19.3 - 29.3,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 1.07,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Date,Y,28-May-2026,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,R,L,,,127 - 181,g/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,R,L,,,0.39 - 0.54, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,R,L,,,4.5 - 6.4,TI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.78,R,H,,,3.8 - 10.7,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.55,R,H,,,1.96 - 7.23,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.58,,,,,0.91 - 4.28,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.8,,,,,40.5 - 75,% +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.3,,,,,15.4 - 48.5,% +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.6,,,,,2.6 - 10.1,% +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,371,,,,,140 - 400,GI/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Direct HDL-C 4th Generation,,1.18,,,,,1.03 - 1.53,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Triglycerides (GPO),,1.61,,,,,0.62 - 3.69,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Cholesterol (High Performance),,4.55,,,,,4.19 - 7.24,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,LDL Chol Friedewald 4th,,2.63,,,,,0 - 3.34,mmol/L +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,28-May-2026,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:45,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,28-May-2026,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:53,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,28-May-2026,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:45,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,28-May-2026,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,,,, +CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Alkaline Phosphatase,,105,,,,,40 - 129,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,LDH,,194,,,,,53 - 234,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,40 - 110,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,125 - 488,umol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatine Kinase,,67,,,,,39 - 308,U/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.92,,,,,3.8 - 10.7,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.54,,,,,1.96 - 7.23,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.20,,,,,0.12 - 0.92,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,80.1,,H,,,40.5 - 75,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.5,,,,,15.4 - 48.5,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,2.8,,,,,2.6 - 10.1,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,363,,,,,140 - 400,GI/L +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,,,, +CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-May-2026,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:40,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,21-May-2026,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,,,, +CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,5 - 48,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Urea Nitrogen,,6.8,,,,,1.4 - 8.6,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,125 - 488,umol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Phosphorus,,0.76,,,,,0.71 - 1.65,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatine Kinase,,36,R,L,,,39 - 308,U/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Bicarbonate,,26.8,,,,,19.3 - 29.3,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,84,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.56,,H,,,3.8 - 10.7,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.03,,H,,,1.96 - 7.23,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.36,,,,,0 - 0.57,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,81.3,,H,,,40.5 - 75,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,10.2,,L,,,15.4 - 48.5,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,233,,,,,140 - 400,GI/L +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-06-01_122812 sponsor-study-36940-test-results-930557-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122812 sponsor-study-36940-test-results-930557-microbiology.csv new file mode 100644 index 0000000..e9d3b93 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122812 sponsor-study-36940-test-results-930557-microbiology.csv @@ -0,0 +1,6 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100012001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R, +CZ100012001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Apr 22, 2026 7:00 AM",6228137359,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100012002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 1:00 PM",6227323212,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100012003 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 29, 2026 7:55 AM",6227323213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122821 sponsor-study-36940-test-results-930557-standard.csv b/Covance_UCO3001/Source/2026-06-01_122821 sponsor-study-36940-test-results-930557-standard.csv new file mode 100644 index 0000000..dc8ee7c --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122821 sponsor-study-36940-test-results-930557-standard.csv @@ -0,0 +1,738 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.0,,,,,0 - 6.2,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,40 - 129,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,GGT,,63,R,H,,,10 - 61,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Glucose,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatine Kinase,,217,,,,,39 - 308,U/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.70,,,,,3.8 - 10.7,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.42,,,,,1.96 - 7.23,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.25,,,,,0.91 - 4.28,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.75,,,,,0.12 - 0.92,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.0,,,,,40.5 - 75,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.4,,,,,15.4 - 48.5,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,483,R,H,,,140 - 400,GI/L +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,,,, +CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,40 - 129,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Urea Nitrogen,,6.4,,,,,1.4 - 8.6,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 119,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Uric Acid,,324,,,,,149 - 494,umol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,39 - 308,U/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Bicarbonate,,20.6,,,,,19.3 - 29.3,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Magnesium,,0.84,,,,,0.66 - 1.07,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.50,,,,,0.39 - 0.54, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.01,,,,,3.8 - 10.7,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,7.04,,,,,1.96 - 7.23,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.1,,H,,,40.5 - 75,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.3,,L,,,15.4 - 48.5,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.9,,,,,2.6 - 10.1,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,265,,,,,140 - 400,GI/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Triglycerides (GPO),,0.65,,,,,0.65 - 3.61,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Cholesterol (High Performance),,4.32,,L,,,4.4 - 7.53,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,LDL Chol Friedewald 4th,,2.68,,,,,0 - 3.34,mmol/L +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,27-May-2026,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:25,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,27-May-2026,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:30,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,27-May-2026,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:25,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,GGT,,30,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,LDH,,238,,H,,,53 - 234,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,84,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Uric Acid,,328,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatine Kinase,,96,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.67,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.93,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.10,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.4,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.3,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Direct HDL-C 4th Generation,,2.02,,H,,,1.03 - 1.53,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Triglycerides (GPO),,1.21,,,,,0.62 - 3.69,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Cholesterol (High Performance),,5.32,,,,,4.19 - 7.24,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:30,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,13-May-2026,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:00,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,15-May-2026,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,LDH,,181,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,54,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Glucose,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Uric Acid,,293,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Protein,,79,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Bicarbonate,,22.3,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.54,,,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.11,,,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.5,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.4,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,117,R,L,,,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,06-May-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,08-May-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Alkaline Phosphatase,,115,,,,,40 - 129,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 119,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Uric Acid,,306,,,,,149 - 494,umol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 1.07,mmol/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,,,,,127 - 181,g/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.5,,,,,4.5 - 6.4,TI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.61,,,,,3.8 - 10.7,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.63,,,,,1.96 - 7.23,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.0,,,,,40.5 - 75,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.7,,,,,15.4 - 48.5,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,242,,,,,140 - 400,GI/L +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Alkaline Phosphatase,,102,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Glucose,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Uric Acid,,252,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Protein,,76,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Date,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Time,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,Result verified by repeat analysis,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,Result verified by repeat analysis,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,Result verified by repeat analysis,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.47,,L,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.78,,L,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.46,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.16,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.4,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.2,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,Result verified by repeat analysis,0 - 2,% +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,118,,L,,Result verified by repeat analysis,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,23-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:40,,,,,, +CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.7,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Alkaline Phosphatase,,96,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,GGT,,19,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Glucose,,6.2,R,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Uric Acid,,284,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Magnesium,,0.97,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,80 - 100,fL +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.59,R,L,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.64,R,L,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.19,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.6,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.9,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,126,R,L,,,130 - 394,GI/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Direct HDL-C 4th Generation,,2.07,R,H,,,1.03 - 1.53,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Triglycerides (GPO),,1.04,,,,,0.63 - 2.71,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Cholesterol (High Performance),,4.56,R,L,,,5.35 - 9.1,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,LDL Chol Friedewald 4th,,2.01,,,,,0 - 3.34,mmol/L +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:15,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,ALT (SGPT),,50,,H,,,5 - 48,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,GGT,,25,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Urea Nitrogen,,6.7,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Uric Acid,,302,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Phosphorus,,1.95,R,H,,,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Bicarbonate,,24.8,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Magnesium,,0.95,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,92,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Date,Y,17-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.77,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.03,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.25,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.3,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.6,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,327,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,17-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ANATOMICAL SITE,Anatomical Site,Y,25 DISTANCE IN CM FROM ANAL VERGE,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Mar-2026,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:30,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Mar-2026,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALP<2XULN,ALP<2XULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN,ALT >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Uric Acid,,276,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Bicarbonate,,20.3,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Date,Y,03-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,155,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.57,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.08,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.16,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,73.3,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.7,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.7,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:00,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,03-Mar-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,R,,,,, +CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,GGT,,27,,,,,5 - 50,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,LDH,,120,,,,,53 - 234,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 10.4,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,49,,,,,31 - 110,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Glucose,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,149 - 446,umol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Protein,,75,,,,,60 - 80,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatine Kinase,,101,,,,,26 - 192,U/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 0.98,mmol/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,93,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,80 - 100,fL +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.95,,,,,3.8 - 10.7,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.86,,L,,,1.96 - 7.23,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.8 - 3,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.1,,,,,40.5 - 75,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,45.7,,,,,15.4 - 48.5,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,150,,,,,130 - 394,GI/L +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Bilirubin,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Glucose,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Protein,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Albumin-BCG,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Sodium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Chloride,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Magnesium,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CKD-EPI 2021,CKD-EPI 2021 Without Race,,Required testing unavailable,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Date,Y,18-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.88,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.46,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.78,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.4,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.2,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,330,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Direct HDL-C 4th Generation,,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Triglycerides (GPO),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Cholesterol (High Performance),,,,,Test cancelled: Quantity not sufficient,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:20,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:20,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,18-Feb-2026,,,,,, +CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,05-Feb-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:30,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,07-Feb-2026,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,40 - 129,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,LDH,,146,,,,,53 - 234,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,40 - 110,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Phosphorus,,0.48,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatine Kinase,,60,,,,,39 - 308,U/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Magnesium,,0.92,,,,,0.66 - 1.07,mmol/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CKD-EPI 2021,CKD-EPI 2021 Without Race,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.92,,,,,3.8 - 10.7,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.40,,,,,1.96 - 7.23,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.00,,,,,0.91 - 4.28,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.1,,,,,40.5 - 75,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.2,,,,,15.4 - 48.5,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,309,,,,,140 - 400,GI/L +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122829 sponsor-study-36940-test-results-930553-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122829 sponsor-study-36940-test-results-930553-microbiology.csv new file mode 100644 index 0000000..95b16c0 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122829 sponsor-study-36940-test-results-930553-microbiology.csv @@ -0,0 +1,4 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100092001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 2, 2026 6:15 AM",6227323340,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, +CZ100092002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 6:10 AM",6227323341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930536-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930536-microbiology.csv new file mode 100644 index 0000000..4dfdeb2 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930536-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100201001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 13, 2026 6:00 AM",6227993971,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930553-standard.csv b/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930553-standard.csv new file mode 100644 index 0000000..2a84d67 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122832 sponsor-study-36940-test-results-930553-standard.csv @@ -0,0 +1,250 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Bilirubin,,17,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.0,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,GGT,,15,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Uric Acid,,196,,,,,149 - 446,umol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Date,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.57,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.33,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.9,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.9,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,258,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:50,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:50,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,19-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,, +CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,LDH,,152,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Uric Acid,,178,,,,,149 - 446,umol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.60,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.94,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.22,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.5,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,207,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,,1.03 - 1.53,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Triglycerides (GPO),,0.59,,,,,0.59 - 2.96,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Cholesterol (High Performance),,4.49,,,,,4.42 - 7.53,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,LDL Chol Friedewald 4th,,2.52,,,,,0 - 3.34,mmol/L +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,12:45,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:30,,,,,, +CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092002,,,,,Female,TB Testing,,"May 5, 2026 9:00 AM",6227323348,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,24-Apr-2026,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:09,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,29-Apr-2026,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,GGT,,10,,,,,4 - 49,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,90,,,,,31 - 101,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Uric Acid,,268,,,,,149 - 446,umol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatine Kinase,,176,,,,,26 - 192,U/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Bicarbonate,,27.2,,,,,19.3 - 29.3,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Magnesium,,0.93,,,,,0.66 - 1.07,mmol/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,65,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.05,,,,,3.8 - 10.7,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.87,,L,,,1.96 - 7.23,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.1,,,,,40.5 - 75,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.6,,,,,15.4 - 48.5,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,216,,,,,140 - 400,GI/L +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Positive,,RX,,Result verified by repeat analysis,Normal=Negative, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Quantitative",,0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,LDH,,137,,,,,53 - 234,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Uric Acid,,207,,,,,125 - 428,umol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatine Kinase,,81,,,,,26 - 192,U/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 1.07,mmol/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,116 - 164,g/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.74,,,,,3.8 - 10.7,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.76,,,,,1.96 - 7.23,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.18,,,,,0.91 - 4.28,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.26,,,,,0 - 0.57,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.6,,,,,15.4 - 48.5,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.5,,,,,0 - 6.8,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,263,,,,,140 - 400,GI/L +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, diff --git a/Covance_UCO3001/Source/2026-06-01_122844 sponsor-study-36940-test-results-930536-standard.csv b/Covance_UCO3001/Source/2026-06-01_122844 sponsor-study-36940-test-results-930536-standard.csv new file mode 100644 index 0000000..0f4a823 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122844 sponsor-study-36940-test-results-930536-standard.csv @@ -0,0 +1,127 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,191,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Alkaline Phosphatase,,282,,,,,82 - 331,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,6 - 43,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,AST (SGOT),,26,,,,,10 - 40,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,GGT,,15,,,,,0 - 51,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,LDH,,214,,,,,105 - 235,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,23 - 83,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,184 - 416,umol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.1 - 2.57,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Phosphorus,,1.58,,,,,0.71 - 1.65,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Protein,,85,,H,,,61 - 84,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,29 - 47,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatine Kinase,,65,,,,,18 - 363,U/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.7 - 0.9,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CRP COPY,C Reactive Protein COPY,,1.9,,,,,0.4 - 2,mg/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL CALPROTECTIN COPY,Fecal Calprotectin COPY,,3749.9,,H,,,Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Date,Y,17-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,127 - 181,g/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,,4.5 - 6.4,TI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,,26 - 34,pg +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.73,,,,,4.35 - 13.15,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.06,,,,,1.65 - 8.15,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.42,,,,,0.95 - 5.25,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.83,,,,,0.4 - 1.3,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,H,,,0 - 0.3,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.0,,,,,40.5 - 75,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.5,,H,,,4 - 8,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.5,,H,,,0 - 2.8,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 1,% +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,607,,H,,,140 - 400,GI/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Direct HDL-C 4th Generation,,1.27,,,,,1.03 - 1.53,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.42 - 1.67,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Cholesterol (High Performance),,3.50,,,,,2.95 - 5.12,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,LDL Chol Friedewald 4th,,1.69,,,,,0 - 3.34,mmol/L +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:28,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:52,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:28,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,17-May-2026,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,, +CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ANATOMICAL SITE,Anatomical Site,Y,20-25,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,15-Apr-2026,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,17-Apr-2026,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,211,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Alkaline Phosphatase,,322,,,,,82 - 331,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,6 - 43,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,AST (SGOT),,29,,,,,10 - 40,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,GGT,,17,,,,,0 - 51,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,LDH,,221,,,,,105 - 235,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,46,,,,,23 - 83,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Glucose,,4.1,,,,,3.9 - 5.6,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Uric Acid,,326,,,,,184 - 416,umol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.1 - 2.57,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Phosphorus,,1.72,,H,,,0.71 - 1.65,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Protein,,87,,H,,,61 - 84,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,29 - 47,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatine Kinase,,94,,,,,18 - 363,U/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Bicarbonate,,20.7,,,,,19.3 - 29.3,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.7 - 0.9,mmol/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,,L,,Result verified by repeat analysis,127 - 181,g/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,Result verified by repeat analysis,4.5 - 6.4,TI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,Result verified by repeat analysis,26 - 34,pg +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.04,,,,Result verified by repeat analysis,4.35 - 13.15,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.19,,,,Result verified by repeat analysis,1.65 - 8.15,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.73,,,,,0.95 - 5.25,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.77,,,,Result verified by repeat analysis,0.4 - 1.3,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,Result verified by repeat analysis,0 - 0.3,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.7,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,Result verified by repeat analysis,4 - 8,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,H,,Result verified by repeat analysis,0 - 2.8,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 1,% +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,490,,H,,Result verified by repeat analysis,140 - 400,GI/L +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm, +CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122855 sponsor-study-36940-test-results-930531-microbiology.csv b/Covance_UCO3001/Source/2026-06-01_122855 sponsor-study-36940-test-results-930531-microbiology.csv new file mode 100644 index 0000000..9f10aa5 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122855 sponsor-study-36940-test-results-930531-microbiology.csv @@ -0,0 +1,3 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,, +Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision +CZ100212001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 1, 2026 2:00 PM",6227635213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,, diff --git a/Covance_UCO3001/Source/2026-06-01_122906 sponsor-study-36940-test-results-930531-standard.csv b/Covance_UCO3001/Source/2026-06-01_122906 sponsor-study-36940-test-results-930531-standard.csv new file mode 100644 index 0000000..4d4b87b --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122906 sponsor-study-36940-test-results-930531-standard.csv @@ -0,0 +1,243 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Bilirubin,,4,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Alkaline Phosphatase,,113,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,GGT,,23,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,LDH,,195,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Glucose,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Uric Acid,,409,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatine Kinase,,159,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,100,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Time,Y,06:50,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,98,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.34,,L,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,22,,L,,Result verified by repeat analysis,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,76,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.13,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.41,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.93,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.6,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.1,,,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,812,,HT,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:00,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:50,,,,,, +CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Alkaline Phosphatase,,112,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,GGT,,27,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Glucose,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Albumin-BCG,,40,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,106,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,L,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,77,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.30,,,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.94,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.35,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.2,,H,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,796,,HT,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:24,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,20-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:00,,,,,, +CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Alkaline Phosphatase,,121,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,LDH,,158,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Uric Acid,,446,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,97,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Date,Y,06-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Time,Y,16:00,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,113,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.37 - 0.51, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.49,,H,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,8.91,,H,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.14,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.3,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.2,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,584,,H,,,130 - 394,GI/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Direct HDL-C 4th Generation,,1.01,R,L,,,1.03 - 1.53,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Triglycerides (GPO),,1.57,,,,,0.65 - 2.94,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Cholesterol (High Performance),,5.40,,,,,4.53 - 7.71,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,LDL Chol Friedewald 4th,,3.67,,H,,,0 - 3.34,mmol/L +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:37,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:37,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,06-Apr-2026,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,16:00,,,,,, +CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ANATOMICAL SITE,Anatomical Site,Y,20,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,16-Mar-2026,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,INFLAMED AREA,Inflamed area?,,Yes,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,19-Mar-2026,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,, +CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,, +CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Alkaline Phosphatase,,120,,,,,40 - 129,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 119,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,149 - 494,umol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Bicarbonate,,18.4,,L,,,19.3 - 29.3,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 0.98,mmol/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,120,,L,,,125 - 170,g/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.37 - 0.51, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4 - 5.8,TI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,,L,,,26 - 34,pg +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.50,,,,,3.8 - 10.7,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.09,,,,,1.96 - 7.23,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.97,,,,,0.8 - 3,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.07,,H,,,0.12 - 0.92,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.27,,,,,0 - 0.57,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.9,,,,,40.5 - 75,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.6,,H,,,2.6 - 10.1,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,567,,H,,,130 - 394,GI/L +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative, +CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm, diff --git a/Covance_UCO3001/Source/2026-06-01_122909 sponsor-study-35472-test-results-898745-standard.csv b/Covance_UCO3001/Source/2026-06-01_122909 sponsor-study-35472-test-results-898745-standard.csv new file mode 100644 index 0000000..d9b79db --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122909 sponsor-study-35472-test-results-898745-standard.csv @@ -0,0 +1,2448 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,GGT,,30,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,49,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Uric Acid,,314,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Creatine Kinase,,202,,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.81,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.47,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.67,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.7,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.7,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,504,,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.6,,H,,,<6.5 %, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,23.94,,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Triglycerides (GPO),,2.54,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,Cholesterol (High Performance),,6.04,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,LIPID PANEL,LDL Chol Friedewald 4th,,3.54,,H,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,TSH,TSH 3rd IS-QT,,3.138,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,End of Phase/Treatment,,"May 22, 2026 12:00 PM",6228605653,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,C-REACTIVE PROTEIN,C Reactive Protein HS,,10.2,,H,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,GGT,,22,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,LDH,,185,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,64,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Glucose Fasting,,6.3,R,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Uric Acid,,316,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Total Protein,,80,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Albumin-BCG,,47,R,H,,,33 - 46,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Sodium,,136,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Bicarbonate,,18.7,R,L,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,163,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.50,R,H,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.22,R,H,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.82,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.47,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.75,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.8,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,285,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.9,,,,,<6.5 %, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.61,,,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Triglycerides (GPO),,2.89,R,H,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,Cholesterol (High Performance),,7.08,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,LIPID PANEL,LDL Chol Friedewald 4th,,4.40,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,TSH,TSH 3rd IS-QT,,0.546,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,End of Phase/Treatment,,"May 22, 2026 9:20 AM",6228605652,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.3,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CELLULAR ELEMENTS,Ur WBC/HPF,,8,,,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,GGT,,32,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Uric Acid,,383,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Creatine Kinase,,201,,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Bicarbonate,,21.6,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,95,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.33,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.06,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.53,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.53,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.6,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.1,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,525,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.12,,,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Direct HDL-C 4th Generation,,1.37,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Triglycerides (GPO),,2.79,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,Cholesterol (High Performance),,6.50,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,LIPID PANEL,LDL Chol Friedewald 4th,,3.85,,H,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Day 29,R,"May 5, 2026 1:15 PM",6227541261,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,35 - 104,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,GGT,,36,,,,,4 - 49,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,LDH,,192,,,,,53 - 234,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,149 - 446,umol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Calcium (EDTA),,2.08,,,,,2.07 - 2.64,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Total Protein,,62,,,,,61 - 84,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Creatine Kinase,,84,,,,,26 - 192,U/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Sodium,,144,,,,,132 - 147,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Potassium,,3.5,,,,,3.5 - 5.2,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.40,,,,,3.8 - 10.7,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.63,,,,,1.96 - 7.23,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.90,,,,,0.91 - 4.28,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.78,,,,,0.12 - 0.92,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,48.8,,,,,40.5 - 75,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,14.4,R,H,,,2.6 - 10.1,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,248,,,,,140 - 400,GI/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.25,,,,,1.9 - 23,uIU/mL +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Direct HDL-C 4th Generation,,1.92,,H,,,1.03 - 1.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Triglycerides (GPO),,1.20,,,,,0.59 - 2.96,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,Cholesterol (High Performance),,3.66,,L,,,4.42 - 7.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,LIPID PANEL,LDL Chol Friedewald 4th,,1.19,,,,,0 - 3.34,mmol/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,TSH,TSH 3rd IS-QT,,3.352,,,,,0.45 - 5.33,mIU/L +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 9:50 AM",6227547338,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Alkaline Phosphatase,,137,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,GGT,,14,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,LDH,,170,,,,,53 - 234,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,61,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Uric Acid,,204,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Creatine Kinase,,78,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Sodium,,145,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Bicarbonate,,21.6,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,150,,,,,115 - 158,g/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.17,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.80,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.79,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.0,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,239,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.88,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Direct HDL-C 4th Generation,,1.85,,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Triglycerides (GPO),,0.61,,L,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,Cholesterol (High Performance),,5.06,,,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,LIPID PANEL,LDL Chol Friedewald 4th,,2.93,,,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,TSH,TSH 3rd IS-QT,,0.955,,,,,0.45 - 5.33,mIU/L +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,End of Phase/Treatment,,"May 5, 2026 8:45 AM",6227768458,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.2,,,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,GGT,,16,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,64,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Creatine Kinase,,151,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,CHEMISTRY PANEL,Serum Chloride,,108,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.94,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.03,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.45,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,75.9,R,H,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.3,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,244,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.00,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Triglycerides (GPO),,0.74,,,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,Cholesterol (High Performance),,4.25,,L,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,TSH,TSH 3rd IS-QT,,1.798,,,,,0.45 - 5.33,mIU/L +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 2 OL Induction Baseline,,"May 5, 2026 7:50 AM",6227541256,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Alkaline Phosphatase,,81,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,GGT,,19,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,LDH,,193,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Uric Acid,,206,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Phosphorus,,1.36,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Sodium,,145,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Bicarbonate,,25.9,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.84,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.66,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.78,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.0,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.8,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.31,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Direct HDL-C 4th Generation,,1.64,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Triglycerides (GPO),,0.68,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,Cholesterol (High Performance),,5.02,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,LIPID PANEL,LDL Chol Friedewald 4th,,3.07,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,TSH,TSH 3rd IS-QT,,1.896,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"May 5, 2026 7:15 AM",6227178910,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.6,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,GGT,,32,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,39,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Uric Acid,,335,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Calcium (EDTA),,2.12,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Albumin-BCG,,39,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Bicarbonate,,20.2,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,CHEMISTRY PANEL,Serum Chloride,,109,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,DIRECT LDL,Direct LDL-C 3rd Gen,,3.40,,H,,,<3.36 mmol/L, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.75,,H,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.71,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,4.08,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.60,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.7,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,550,,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.7,R,H,,,<6.5 %, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,73.67,R,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Direct HDL-C 4th Generation,,1.00,,L,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Triglycerides (GPO),,5.91,,H SF,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,Cholesterol (High Performance),,5.54,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,LIPID PANEL,LDL Chol Friedewald 4th,,,,,Test cancelled: Invalid/High Triglycerides,,, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,TSH,TSH 3rd IS-QT,,2.578,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 2 OL Induction Baseline,,"Apr 10, 2026 11:15 AM",6227547337,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,35 - 104,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,AST (SGOT),,36,,,,,8 - 40,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,GGT,,43,,,,,4 - 49,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,LDH,,193,,,,,53 - 234,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Uric Acid,,321,,,,,149 - 446,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Calcium (EDTA),,2.13,,,,,2.07 - 2.64,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Creatine Kinase,,93,,,,,26 - 192,U/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Potassium,,3.7,,,,,3.5 - 5.2,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Bicarbonate,,25.6,,,,,19.3 - 29.3,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CHEMISTRY PANEL,Serum Chloride,,107,,,,,94 - 112,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.65,,,,,1.25 - 1.92,mL/sec +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.1,,,,,kg, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,GFR,EGFR by MDRD,,81,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.08,,,,,3.8 - 10.7,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.60,,,,,1.96 - 7.23,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.91 - 4.28,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.1,,,,,40.5 - 75,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.3,,,,,15.4 - 48.5,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.2,R,H,,,2.6 - 10.1,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,267,,,,,140 - 400,GI/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.13,,,,,1.9 - 23,uIU/mL +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Direct HDL-C 4th Generation,,2.21,,H,,,1.03 - 1.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.59 - 2.96,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,Cholesterol (High Performance),,3.95,,L,,,4.42 - 7.53,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,LIPID PANEL,LDL Chol Friedewald 4th,,1.37,,,,,0 - 3.34,mmol/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,TSH,TSH 3rd IS-QT,,3.004,,,,,0.45 - 5.33,mIU/L +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040009,,,58,years,Female,Part 2 Screening,,"Apr 10, 2026 8:15 AM",6227547336,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,GGT,,17,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Uric Acid,,265,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Phosphorus,,1.45,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Albumin-BCG,,47,R,H,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Creatine Kinase,,80,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.76,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.09,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.77,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.73,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.1,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.6,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.5,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,307,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.8,,,,,<6.5 %, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Triglycerides (GPO),,3.03,,H,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,Cholesterol (High Performance),,7.15,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,LIPID PANEL,LDL Chol Friedewald 4th,,4.40,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,TSH,TSH 3rd IS-QT,,1.854,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 2 OL Induction Baseline,,"Apr 7, 2026 9:45 AM",6227541258,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,LDH,,235,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Uric Acid,,308,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.03,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.95,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.62,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.6,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.2,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.28,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,Cholesterol (High Performance),,6.97,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,LIPID PANEL,LDL Chol Friedewald 4th,,5.09,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,TSH,TSH 3rd IS-QT,,,,,Test group cancelled: No specimen received,,, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 8:35 AM",6227541264,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.8,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.1,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Alkaline Phosphatase,,86,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,ALT (SGPT),,61,R,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,AST (SGOT),,37,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,GGT,,25,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,LDH,,181,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Glucose Fasting,,6.1,R,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Uric Acid,,287,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Bicarbonate,,25.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.52,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.64,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.27,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.7,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.2,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,310,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,18.47,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Direct HDL-C 4th Generation,,0.95,R,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,Cholesterol (High Performance),,2.38,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,LIPID PANEL,LDL Chol Friedewald 4th,,0.91,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,TSH,TSH 3rd IS-QT,,0.827,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Mar 27, 2026 10:00 AM",6227768460,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Total Bilirubin,,19,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.6,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Alkaline Phosphatase,,122,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,GGT,,12,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Uric Acid,,223,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Creatine Kinase,,85,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,115 - 158,g/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.41,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.51,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.33,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.7,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.2,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,232,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.38,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Direct HDL-C 4th Generation,,1.74,R,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Triglycerides (GPO),,0.57,R,L,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,Cholesterol (High Performance),,4.75,R,L,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 8:45 AM",6227547333,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.5,R,H,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,GGT,,14,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Uric Acid,,207,,,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Creatine Kinase,,78,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,CHEMISTRY PANEL,Serum Chloride,,107,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.75,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.15,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.07,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,72.1,,,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.6,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,234,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.19,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Direct HDL-C 4th Generation,,1.30,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Triglycerides (GPO),,0.41,,L,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,Cholesterol (High Performance),,4.53,,L,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,LIPID PANEL,LDL Chol Friedewald 4th,,3.04,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 DB Baseline,,"Mar 25, 2026 6:50 AM",6227541251,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,GGT,,23,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,LDH,,214,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Uric Acid,,248,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Phosphorus,,0.93,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Creatine Kinase,,128,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Bicarbonate,,25.8,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.44,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.15,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,290,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.23,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Direct HDL-C 4th Generation,,1.67,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,Cholesterol (High Performance),,5.28,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,LIPID PANEL,LDL Chol Friedewald 4th,,3.21,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,TSH,TSH 3rd IS-QT,,1.525,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,End of Phase/Treatment,,"Mar 13, 2026 9:00 AM",6227768459,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.4,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Alkaline Phosphatase,,81,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,GGT,,52,,H,,,4 - 49,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,66,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Creatine Kinase,,118,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.38,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.04,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.60,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.6,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,40.7,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.6,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,315,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.83,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Triglycerides (GPO),,2.24,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,Cholesterol (High Performance),,5.71,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,LIPID PANEL,LDL Chol Friedewald 4th,,2.98,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,TSH,TSH 3rd IS-QT,,4.319,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Mar 6, 2026 9:50 AM",6227178911,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Alkaline Phosphatase,,130,,H,,,35 - 104,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,GGT,,13,,,,,5 - 50,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Urea Nitrogen,,5.6,,,,,1.4 - 8.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,149 - 446,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Phosphorus,,0.93,,,,,0.71 - 1.65,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Creatine Kinase,,59,,,,,26 - 192,U/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.61,,,,,1.25 - 1.92,mL/sec +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.5,,,,,kg, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,FSH,Follicle Stimulating Hormone,,57.83,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,GFR,EGFR by MDRD,,83,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,R,H,,,115 - 158,g/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,R,H,,,0.34 - 0.48, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,3.9 - 5.5,TI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.19,,,,,3.8 - 10.7,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.31,,,,,1.96 - 7.23,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.30,,,,,0.8 - 3,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.18,,,,,0 - 0.57,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,,15.4 - 48.5,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,255,,,,,130 - 394,GI/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.27,,,,,1.9 - 23,uIU/mL +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,,1.03 - 1.53,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Triglycerides (GPO),,0.84,,,,,0.63 - 2.71,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,Cholesterol (High Performance),,5.60,,,,,4.86 - 8.28,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,LIPID PANEL,LDL Chol Friedewald 4th,,3.52,,H,,,0 - 3.34,mmol/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,TSH,TSH 3rd IS-QT,,0.932,,,,,0.45 - 5.33,mIU/L +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100040008,,,63,years,Female,Part 1 Screening,,"Mar 6, 2026 9:20 AM",6227547331,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CELLULAR ELEMENTS,Ur WBC/HPF,,48,R,H,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,GGT,,28,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,LDH,,141,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Glucose Fasting,,6.7,R,H,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Uric Acid,,325,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Creatine Kinase,,205,R,H,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.95,,,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.30,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.84,R,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.62,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.3,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.6,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.2,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,486,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,118.97,R,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Triglycerides (GPO),,2.60,R,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,Cholesterol (High Performance),,5.47,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,LIPID PANEL,LDL Chol Friedewald 4th,,2.96,,,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Specific Gravity,,1.033,R,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Protein,,+2,R,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Ketones,,Trace,R,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,R,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 DB Baseline,,"Feb 27, 2026 11:35 AM",6227547332,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,C-REACTIVE PROTEIN,C Reactive Protein HS,,9.0,R,H,,,0 - 5,mg/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CELLULAR ELEMENTS,Ur WBC/HPF,,6,,,,,0 - 12,/HPF +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CELLULAR ELEMENTS,Ur Squamous Epithelial Cells,,38,,,,,0 - 3,/HPF +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,35 - 104,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,GGT,,16,,,,,5 - 50,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,LDH,,183,,,,,53 - 234,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Uric Acid,,133,R,L,,,149 - 446,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.29,,,,,1.25 - 1.92,mL/sec +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,58.2,,,,,kg, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,GFR,EGFR by MDRD,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,115 - 158,g/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,3.9 - 5.5,TI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,,,,,80 - 100,fL +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.46,,,,,3.8 - 10.7,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.63,,,,,1.96 - 7.23,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.19,,,,,0.8 - 3,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.4,,,,,40.5 - 75,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.7,,,,,15.4 - 48.5,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.0,,,,,2.6 - 10.1,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,247,,,,,130 - 394,GI/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.23,,,,,1.9 - 23,uIU/mL +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Direct HDL-C 4th Generation,,1.28,,,,,1.03 - 1.53,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Triglycerides (GPO),,0.70,,,,,0.63 - 2.71,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,Cholesterol (High Performance),,4.86,,,,,4.86 - 8.28,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,LIPID PANEL,LDL Chol Friedewald 4th,,3.26,,,,,0 - 3.34,mmol/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,TSH,TSH 3rd IS-QT,,1.723,,,,,0.45 - 5.33,mIU/L +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1.01 - 1.03, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Glucose,,Trace,R,H,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040007,,,66,years,Female,Part 1 Screening,,"Feb 27, 2026 8:00 AM",6227547329,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.1,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,GGT,,17,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Urea Nitrogen,,6.7,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,70,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Glucose Fasting,,5.7,R,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Uric Acid,,312,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Phosphorus,,1.48,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,R,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.57,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.16,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.42,R,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.76,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.8,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.0,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.83,,,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Direct HDL-C 4th Generation,,1.33,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Triglycerides (GPO),,2.03,,,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,Cholesterol (High Performance),,6.94,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,LIPID PANEL,LDL Chol Friedewald 4th,,4.68,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 DB Baseline,,"Feb 20, 2026 10:45 AM",6227541252,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CELLULAR ELEMENTS,Ur Transitional Epi Cells,,1,,,,,0 /HPF, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Alkaline Phosphatase,,79,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,GGT,,17,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,LDH,,205,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Uric Acid,,239,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.66,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.75,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.6,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.4,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,312,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.82,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Triglycerides (GPO),,0.71,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,Cholesterol (High Performance),,5.23,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,LIPID PANEL,LDL Chol Friedewald 4th,,3.22,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Day 29,,"Feb 13, 2026 8:45 AM",6227541259,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CELLULAR ELEMENTS,Ur WBC/HPF,,>150,,HT,,,0 - 12,/HPF +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Alkaline Phosphatase,,76,,,,,35 - 104,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,GGT,,25,,,,,4 - 49,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,LDH,,130,,,,,53 - 234,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,125 - 428,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Creatine Kinase,,154,,,,,26 - 192,U/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Bicarbonate,,23.0,,,,,19.3 - 29.3,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.63,,H,,,1.25 - 1.92,mL/sec +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 101,umol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.2,,,,,kg, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,GFR,EGFR by MDRD,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,116 - 164,g/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.22,R,H,,,3.8 - 10.7,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.93,,,,,1.96 - 7.23,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.51,,,,,0.91 - 4.28,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.50,,,,,0.12 - 0.92,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.22,,,,,0 - 0.57,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.8,,,,,40.5 - 75,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.3,,,,,15.4 - 48.5,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,509,R,H,,,140 - 400,GI/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,39.05,,H,,,1.9 - 23,uIU/mL +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Direct HDL-C 4th Generation,,1.21,,,,,1.03 - 1.53,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Triglycerides (GPO),,3.23,,H,,,0.51 - 2.42,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,Cholesterol (High Performance),,5.80,,,,,4.01 - 6.85,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,LIPID PANEL,LDL Chol Friedewald 4th,,3.11,,,,,0 - 3.34,mmol/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,TSH,TSH 3rd IS-QT,,2.280,,,,,0.45 - 5.33,mIU/L +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040006,,,48,years,Female,Part 1 Screening,,"Jan 30, 2026 11:40 AM",6227547330,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CELLULAR ELEMENTS,Ur WBC/HPF,,32,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,ALT (SGPT),,55,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,LDH,,175,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Glucose Fasting,,7.2,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Uric Acid,,263,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Phosphorus,,0.95,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Creatine Kinase,,38,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.29,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.53,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.07,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.2,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.5,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.2,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.1,,,,,0 - 2,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,296,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.4,,,,,<6.5 %, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.25,,H,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Direct HDL-C 4th Generation,,1.02,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Triglycerides (GPO),,1.15,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,Cholesterol (High Performance),,2.80,,L,,,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,LIPID PANEL,LDL Chol Friedewald 4th,,1.25,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,TSH,TSH 3rd IS-QT,,0.595,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,End of Phase/Treatment,,"Jan 30, 2026 9:30 AM",6227178909,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.8,,,,,0 - 5,mg/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,35 - 104,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,GGT,,15,,,,,5 - 50,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 10.4,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Glucose Fasting,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Uric Acid,,320,,,,,149 - 446,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Phosphorus,,1.31,,,,,0.71 - 1.65,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.29,,,,,1.25 - 1.92,mL/sec +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 110,umol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.5,,,,,kg, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,FSH,Follicle Stimulating Hormone,,78.10,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,GFR,EGFR by MDRD,,81,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,165,,H,,,115 - 158,g/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.34 - 0.48, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,3.9 - 5.5,TI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,80 - 100,fL +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.07,,,,,3.8 - 10.7,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.15,,,,,1.96 - 7.23,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.08,,H,,,0.8 - 3,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.0,,,,,40.5 - 75,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.6,,,,,15.4 - 48.5,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,269,,,,,130 - 394,GI/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.9,,,,,<6.5 %, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,47.53,,H,,,1.9 - 23,uIU/mL +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Direct HDL-C 4th Generation,,1.28,,,,,1.03 - 1.53,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Triglycerides (GPO),,1.84,,,,,0.63 - 2.71,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,Cholesterol (High Performance),,6.82,,,,,5.35 - 9.1,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,LIPID PANEL,LDL Chol Friedewald 4th,,4.70,,H,,,0 - 3.34,mmol/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,TSH,TSH 3rd IS-QT,,1.806,,,,,0.45 - 5.33,mIU/L +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040005,,,72,years,Female,Part 1 Screening,,"Jan 27, 2026 9:00 AM",6227541249,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.0,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CELLULAR ELEMENTS,Ur WBC/HPF,,27,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,ALT (SGPT),,53,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,GGT,,26,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,LDH,,172,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Uric Acid,,279,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Creatine Kinase,,45,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.45,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.94,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.68,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.7,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,302,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,13.07,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Direct HDL-C 4th Generation,,0.98,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Triglycerides (GPO),,0.95,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,Cholesterol (High Performance),,2.57,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,LIPID PANEL,LDL Chol Friedewald 4th,,1.15,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Day 29,,"Jan 16, 2026 10:40 AM",6227541260,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CELLULAR ELEMENTS,Ur Transitional Epi Cells,,1,,,,,0 /HPF, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,LDH,,203,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,70,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Uric Acid,,221,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Total Protein,,64,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Creatine Kinase,,96,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Bicarbonate,,27.1,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.16,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.30,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.50,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.2,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.0,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.5,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,272,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.94,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Direct HDL-C 4th Generation,,1.49,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Triglycerides (GPO),,0.80,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,Cholesterol (High Performance),,4.76,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,LIPID PANEL,LDL Chol Friedewald 4th,,2.90,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,TSH,TSH 3rd IS-QT,,1.175,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 2 OL Induction Baseline,,"Jan 16, 2026 7:55 AM",6227541257,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.8,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Total Bilirubin,,4,,,,Result verified by repeat analysis,3 - 21,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,GGT,,49,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Uric Acid,,300,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Phosphorus,,1.35,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.94,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.95,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.05,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.61,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.5,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.9,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.7,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.2,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,341,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.23,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Direct HDL-C 4th Generation,,1.37,,,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Triglycerides (GPO),,1.49,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,Cholesterol (High Performance),,4.70,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,LIPID PANEL,LDL Chol Friedewald 4th,,2.65,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,RETICULOCYTES,Reticulocyte Count %,,2.7,,H,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,TSH,TSH 3rd IS-QT,,3.282,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,End of Phase/Treatment,,"Jan 9, 2026 10:20 AM",6227178908,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,LDH,,205,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Uric Acid,,323,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Calcium (EDTA),,2.27,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Creatine Kinase,,161,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Potassium,,3.7,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.41,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.46,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.53,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.8,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.3,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.57,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Direct HDL-C 4th Generation,,1.14,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Triglycerides (GPO),,1.23,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,Cholesterol (High Performance),,6.67,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,LIPID PANEL,LDL Chol Friedewald 4th,,4.97,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,TSH,TSH 3rd IS-QT,,2.238,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,End of Phase/Treatment,,"Jan 9, 2026 9:10 AM",6227178912,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.3,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CELLULAR ELEMENTS,Ur WBC/HPF,,9,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.8,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,ALT (SGPT),,50,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,GGT,,24,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Uric Acid,,274,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Creatine Kinase,,45,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Potassium,,5.0,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Bicarbonate,,25.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.24,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.24,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.33,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.6,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.3,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,330,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.1,,,,,<6.5 %, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.65,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Direct HDL-C 4th Generation,,1.03,,,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Triglycerides (GPO),,1.18,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,Cholesterol (High Performance),,2.69,,L,,,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,LIPID PANEL,LDL Chol Friedewald 4th,,1.12,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,TSH,TSH 3rd IS-QT,,1.264,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 2 OL Induction Baseline,,"Dec 19, 2025 9:25 AM",6227106906,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.8,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,LDH,,199,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Bicarbonate,,29.7,,H,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.80,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.73,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.58,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.9,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,308,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,1.74,,L,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Direct HDL-C 4th Generation,,1.50,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,Cholesterol (High Performance),,5.66,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,LIPID PANEL,LDL Chol Friedewald 4th,,3.76,,H,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur pH,,7.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 DB Baseline,,"Dec 5, 2025 7:55 AM",6227261230,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Alkaline Phosphatase,,72,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,GGT,,45,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,LDH,,135,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,59,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Creatine Kinase,,94,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,125,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,R,L,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.92,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.08,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.93,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.56,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.31,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,44.5,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.3,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.1,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.4,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,304,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.03,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Direct HDL-C 4th Generation,,1.36,,,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Triglycerides (GPO),,2.05,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,Cholesterol (High Performance),,5.46,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,LIPID PANEL,LDL Chol Friedewald 4th,,3.16,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,TSH,TSH 3rd IS-QT,,1.135,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 2 OL Induction Baseline,,"Nov 28, 2025 9:00 AM",6227106905,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,GGT,,17,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,LDH,,257,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Uric Acid,,318,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Creatine Kinase,,276,,H,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.48,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.40,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.1,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.9,R,H,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,143,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.90,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Direct HDL-C 4th Generation,,1.12,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Triglycerides (GPO),,1.26,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,Cholesterol (High Performance),,5.71,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,LIPID PANEL,LDL Chol Friedewald 4th,,4.01,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Day 29,,"Nov 14, 2025 9:10 AM",6227043302,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CELLULAR ELEMENTS,Ur WBC/HPF,,10,,,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.2,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,ALT (SGPT),,49,,H,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Uric Acid,,282,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Phosphorus,,1.34,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.87,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.64,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.53,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.42,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.9,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.3,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,294,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,12.54,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Direct HDL-C 4th Generation,,0.96,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Triglycerides (GPO),,0.90,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,Cholesterol (High Performance),,2.39,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,LIPID PANEL,LDL Chol Friedewald 4th,,1.02,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 DB Baseline,,"Nov 7, 2025 9:30 AM",6225350982,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,,,,0 - 12,/HPF +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,GGT,,21,,,,,4 - 49,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,LDH,,206,,,,,53 - 234,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Glucose Fasting,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Uric Acid,,260,,,,,149 - 446,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Creatine Kinase,,107,,,,,26 - 192,U/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Bicarbonate,,22.4,,,,,19.3 - 29.3,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.58,,,,,1.25 - 1.92,mL/sec +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,78,,,,,31 - 101,umol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,81.6,,,,,kg, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,GFR,EGFR by MDRD,,67,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 98,fL +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.09,,,,,3.8 - 10.7,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.99,,,,,1.96 - 7.23,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.2,,,,,15.4 - 48.5,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.3,,H,,,0 - 2,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,313,,,,,140 - 400,GI/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.1,,,,,<6.5%, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.19,,,,,1.9 - 23,uIU/mL +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Direct HDL-C 4th Generation,,1.52,,,,,1.03 - 1.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Triglycerides (GPO),,1.01,,,,,0.59 - 2.96,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,Cholesterol (High Performance),,5.29,,,,,4.42 - 7.53,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,LIPID PANEL,LDL Chol Friedewald 4th,,3.31,,,,,0 - 3.34,mmol/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,TSH,TSH 3rd IS-QT,,1.461,,,,,0.45 - 5.33,mIU/L +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040004,,,54,years,Female,Part 1 Screening,,"Nov 7, 2025 8:10 AM",6225350975,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.5,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,GGT,,45,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Creatine Kinase,,99,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Bicarbonate,,21.9,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.55,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.59,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.09,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.63,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.9,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.7,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.3,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,324,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.08,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Direct HDL-C 4th Generation,,1.54,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Triglycerides (GPO),,2.08,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,Cholesterol (High Performance),,5.37,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,LIPID PANEL,LDL Chol Friedewald 4th,,2.88,,,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 DB Baseline,,"Oct 17, 2025 10:45 AM",6225350984,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,AST (SGOT),,32,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,GGT,,18,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,LDH,,232,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Uric Acid,,392,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Creatine Kinase,,160,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.39,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.58,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.36,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Platelet clumps present,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.8,,,,,<6.5%, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Direct HDL-C 4th Generation,,1.11,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Triglycerides (GPO),,1.60,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,Cholesterol (High Performance),,6.83,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,LIPID PANEL,LDL Chol Friedewald 4th,,4.99,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,TSH,TSH 3rd IS-QT,,2.025,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 2 OL Induction Baseline,,"Oct 17, 2025 9:00 AM",6225350988,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.9,,,,,0 - 5,mg/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CELLULAR ELEMENTS,Ur WBC/HPF,,42,,H,,,0 - 12,/HPF +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,ALT (SGPT),,69,,H RX,,,4 - 43,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,AST (SGOT),,40,,,,,8 - 40,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,LDH,,190,,,,,53 - 234,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Glucose Fasting,,7.5,,H,,,3.9 - 5.6,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Uric Acid,,309,,,,,149 - 446,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Phosphorus,,1.28,,,,,0.71 - 1.65,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Creatine Kinase,,48,,,,,26 - 192,U/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Bicarbonate,,24.7,,,,,19.3 - 29.3,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.65,,,,,1.25 - 1.92,mL/sec +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,79.2,,,,,kg, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,GFR,EGFR by MDRD,,74,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,116 - 164,g/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.69,,,,,3.8 - 10.7,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.48,,,,,1.96 - 7.23,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.44,,,,,0.91 - 4.28,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.8,,,,,40.5 - 75,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.1,,,,,15.4 - 48.5,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.9,,,,,2.6 - 10.1,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,324,,,,,140 - 400,GI/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.6,,H,,,<6.5%, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,13.86,,,,,1.9 - 23,uIU/mL +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Direct HDL-C 4th Generation,,0.89,,L,,,1.03 - 1.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,Cholesterol (High Performance),,2.44,,L,,Result verified by repeat analysis,4.42 - 7.53,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,LIPID PANEL,LDL Chol Friedewald 4th,,1.03,,,,,0 - 3.34,mmol/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,TSH,TSH 3rd IS-QT,,1.524,,,,,0.45 - 5.33,mIU/L +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,,H SF,,,Ref Rng:Negative, +CZ100040003,,,55,years,Female,Part 1 Screening,,"Oct 10, 2025 9:20 AM",6225350977,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Alkaline Phosphatase,,82,,,,,35 - 104,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,GGT,,47,,,,,4 - 49,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Uric Acid,,322,,,,,125 - 428,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Total Protein,,79,,,,,61 - 84,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Creatine Kinase,,104,,,,,26 - 192,U/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.88,,,,,1.25 - 1.92,mL/sec +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,69,,,,,31 - 101,umol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,78.6,,,,,kg, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,Result verified by repeat analysis,Neg;$Cutoff = 50 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,GFR,EGFR by MDRD,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.34 - 0.48, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,106,,H,,,79 - 98,fL +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.54,,,,,3.8 - 10.7,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.64,,,,,0.91 - 4.28,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.0,,,,,40.5 - 75,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.6,,,,,15.4 - 48.5,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,301,,,,,140 - 400,GI/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.36,,,,,1.9 - 23,uIU/mL +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Direct HDL-C 4th Generation,,1.94,,H,,,1.03 - 1.53,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.51 - 2.42,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,Cholesterol (High Performance),,6.28,,,,,4.01 - 6.85,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,LIPID PANEL,LDL Chol Friedewald 4th,,3.63,,H,,,0 - 3.34,mmol/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,TSH,TSH 3rd IS-QT,,1.391,,,,,0.45 - 5.33,mIU/L +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040002,,,46,years,Female,Part 1 Screening,,"Sep 19, 2025 9:20 AM",6225350972,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,GGT,,20,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,LDH,,224,,,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Uric Acid,,358,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Phosphorus,,1.33,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Creatine Kinase,,159,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Bicarbonate,,23.6,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.17,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.12,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.7,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,44.7,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.1,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,157,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,11.38,,,,,1.9 - 23,uIU/mL +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Direct HDL-C 4th Generation,,1.10,,,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Triglycerides (GPO),,1.77,,,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,Cholesterol (High Performance),,6.54,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,LIPID PANEL,LDL Chol Friedewald 4th,,4.63,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,RETICULOCYTES,Reticulocyte Count %,,3.5,,H,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 DB Baseline,,"Sep 5, 2025 7:55 AM",6225350981,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Retest,,"Aug 19, 2025 10:00 AM",6225351002,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Retest,,"Aug 19, 2025 10:00 AM",6225351002,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CELLULAR ELEMENTS,Ur WBC/HPF,,10,,,,,0 - 12,/HPF +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Alkaline Phosphatase,,106,,H,,,35 - 104,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,ALT (SGPT),,28,,,,,4 - 43,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,GGT,,19,,,,,4 - 49,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,LDH,,241,,H,,,53 - 234,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Glucose Fasting,,6.5,,H,,,3.9 - 5.6,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Uric Acid,,349,,,,,149 - 446,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Phosphorus,,0.95,,,,,0.71 - 1.65,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Creatine Kinase,,140,,,,,26 - 192,U/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.23,,L,,,1.25 - 1.92,mL/sec +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,87,,,,,31 - 101,umol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,72.5,,,,,kg, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,FSH,Follicle Stimulating Hormone,,50.25,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,GFR,EGFR by MDRD,,59,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,,116 - 164,g/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.40,,,,,1.96 - 7.23,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.88,,,,,0.91 - 4.28,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.5,,,,,40.5 - 75,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,39.4,,,,,15.4 - 48.5,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,163,,,,,140 - 400,GI/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.7,,,,,<6.5%, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Triglycerides (GPO),,3.99,,H,,,0.59 - 2.96,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,Cholesterol (High Performance),,6.69,,,,,4.42 - 7.53,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,LIPID PANEL,LDL Chol Friedewald 4th,,3.89,,H,,,0 - 3.34,mmol/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,RETICULOCYTES,Reticulocyte Count %,,2.9,,H,,,0.6 - 2.5,% +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,TSH,TSH 3rd IS-QT,,2.272,,,,,0.45 - 5.33,mIU/L +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,R,H,,,Ref Rng:Negative, +CZ100040001,,,56,years,Female,Part 1 Screening,,"Aug 8, 2025 10:30 AM",6225350971,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE diff --git a/Covance_UCO3001/Source/2026-06-01_122935 sponsor-study-35472-test-results-898739-standard.csv b/Covance_UCO3001/Source/2026-06-01_122935 sponsor-study-35472-test-results-898739-standard.csv new file mode 100644 index 0000000..777a3b4 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122935 sponsor-study-35472-test-results-898739-standard.csv @@ -0,0 +1,1899 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 5,/HPF +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,GGT,,43,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,LDH,,168,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Uric Acid,,351,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Phosphorus,,0.86,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Bicarbonate,,26.0,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.24,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.54,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.12,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.53,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.2,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.7,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.4,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,193,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,10.23,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Triglycerides (GPO),,3.09,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,Cholesterol (High Performance),,5.48,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,LIPID PANEL,LDL Chol Friedewald 4th,,3.14,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,TSH,TSH 3rd IS-QT,,1.690,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Apr 29, 2026 11:20 AM",6227520243,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.7,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,ALT (SGPT),,53,,H,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,AST (SGOT),,47,,H,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,GGT,,101,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Urea Nitrogen,,1.4,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Uric Acid,,426,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Calcium (EDTA),,2.60,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Creatine Kinase,,164,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Sodium,,135,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,CHEMISTRY PANEL,Serum Chloride,,94,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.45,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.74,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.85,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.1,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.8,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.9,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,261,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.91,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Direct HDL-C 4th Generation,,1.71,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Triglycerides (GPO),,1.73,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,Cholesterol (High Performance),,3.78,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,LIPID PANEL,LDL Chol Friedewald 4th,,1.28,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,TSH,TSH 3rd IS-QT,,,,,Test group cancelled: No specimen received,,, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Week 13,,"Apr 7, 2026 12:01 PM",6226686954,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,GGT,,41,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Uric Acid,,379,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Total Protein,,81,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Bicarbonate,,24.1,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.3,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.35,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.03,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.94,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.6,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.4,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,202,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.79,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Direct HDL-C 4th Generation,,0.94,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Triglycerides (GPO),,2.61,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,Cholesterol (High Performance),,5.47,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,LIPID PANEL,LDL Chol Friedewald 4th,,3.33,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 2 OL Induction Day 29,,"Apr 1, 2026 11:10 AM",6226313625,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,GGT,,34,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Uric Acid,,266,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Bicarbonate,,19.7,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.90,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.20,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.94,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.58,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.7,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.8,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,259,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.04,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Direct HDL-C 4th Generation,,1.20,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Triglycerides (GPO),,2.38,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,Cholesterol (High Performance),,6.59,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,LIPID PANEL,LDL Chol Friedewald 4th,,4.30,,H,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,TSH,TSH 3rd IS-QT,,1.196,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,R,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 2 DB Baseline,,"Mar 10, 2026 11:10 AM",6226804962,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,C-REACTIVE PROTEIN,C Reactive Protein HS,,5.2,,H,,,0 - 5,mg/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,ALT (SGPT),,30,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,GGT,,42,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Uric Acid,,370,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Phosphorus,,0.84,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Creatine Kinase,,127,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Bicarbonate,,26.2,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.86,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.05,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,48.0,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.2,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.2,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.45,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Direct HDL-C 4th Generation,,0.78,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Triglycerides (GPO),,3.51,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,Cholesterol (High Performance),,4.45,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,LIPID PANEL,LDL Chol Friedewald 4th,,2.06,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,TSH,TSH 3rd IS-QT,,1.040,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Specific Gravity,,1.033,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Urobilinogen,,+2,,H,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,End of Phase/Treatment,,"Mar 4, 2026 12:50 PM",6227520245,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Alkaline Phosphatase,,52,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,GGT,,49,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Uric Acid,,359,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Phosphorus,,0.64,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Sodium,,143,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Bicarbonate,,25.8,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.27,,H,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,85.4,,,,,kg, +CZ100080007,,,40,years,Male,Retest,,"Feb 18, 2026 10:35 AM",6226785739,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,GGT,,54,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,LDH,,155,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Urea Nitrogen,,2.6,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,81,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Uric Acid,,385,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Calcium (EDTA),,2.59,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Phosphorus,,0.57,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Total Protein,,79,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Creatine Kinase,,110,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Bicarbonate,,26.8,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.5,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.67,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.99,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.20,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,185,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,9.79,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Direct HDL-C 4th Generation,,0.84,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Triglycerides (GPO),,3.38,,,,,0.62 - 3.69,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,Cholesterol (High Performance),,4.73,,,,,4.19 - 7.24,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,LIPID PANEL,LDL Chol Friedewald 4th,,2.34,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 DB Baseline,,"Jan 21, 2026 11:23 AM",6226551697,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.1,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,GGT,,40,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,LDH,,180,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Uric Acid,,222,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,R,H,,,79 - 98,fL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.87,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.51,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.6,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.6,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,281,,,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.73,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Direct HDL-C 4th Generation,,2.34,R,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Triglycerides (GPO),,1.13,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,Cholesterol (High Performance),,5.38,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,LIPID PANEL,LDL Chol Friedewald 4th,,2.52,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,TSH,TSH 3rd IS-QT,,1.897,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Jan 14, 2026 11:18 AM",6226780857,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.7,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.9,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Alkaline Phosphatase,,68,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,ALT (SGPT),,70,,H RX,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,AST (SGOT),,56,,H,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,GGT,,98,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,LDH,,188,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,52,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Uric Acid,,419,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Creatine Kinase,,109,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Bicarbonate,,26.5,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,104,,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.88,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.64,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.55,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.0,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.4,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,288,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.19,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Direct HDL-C 4th Generation,,1.60,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Triglycerides (GPO),,1.16,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,Cholesterol (High Performance),,3.65,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,LIPID PANEL,LDL Chol Friedewald 4th,,1.52,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,TSH,TSH 3rd IS-QT,,0.906,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 DB Baseline,,"Jan 13, 2026 1:15 PM",6226686953,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.0,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,GGT,,30,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Glucose Fasting,,6.8,,H,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Uric Acid,,297,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Creatine Kinase,,63,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Bicarbonate,,21.1,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.88,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.58,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.46,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.59,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.8,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.7,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,243,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,35.89,,H,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Direct HDL-C 4th Generation,,1.18,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Triglycerides (GPO),,2.11,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,Cholesterol (High Performance),,5.10,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,LIPID PANEL,LDL Chol Friedewald 4th,,2.95,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,TSH,TSH 3rd IS-QT,,0.729,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Specific Gravity,,1.030,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Jan 13, 2026 10:45 AM",6227520242,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.0,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Alkaline Phosphatase,,72,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,GGT,,40,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,LDH,,177,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Uric Acid,,398,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Creatine Kinase,,73,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.74,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.11,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.22,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.0,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.1,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,564,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.03,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Direct HDL-C 4th Generation,,2.53,,H,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Triglycerides (GPO),,2.65,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,Cholesterol (High Performance),,5.29,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,LIPID PANEL,LDL Chol Friedewald 4th,,1.55,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 2 OL Induction Day 29,,"Dec 17, 2025 11:17 AM",6227072419,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,GGT,,44,,,,,10 - 61,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,LDH,,173,,,,,53 - 234,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Uric Acid,,379,,,,,125 - 488,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Calcium (EDTA),,2.62,,,,,2.07 - 2.64,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Phosphorus,,0.80,,,,,0.71 - 1.65,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Albumin-BCG,,53,,H,,,33 - 49,g/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Creatine Kinase,,108,,,,,39 - 308,U/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Sodium,,145,,,,,132 - 147,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.31,,H,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.0,,,,,kg, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Direct HDL-C 4th Generation,,0.94,,L,,,1.03 - 1.53,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Triglycerides (GPO),,2.31,,,,,0.56 - 3.62,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,Cholesterol (High Performance),,5.76,,,,,3.88 - 6.83,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,LIPID PANEL,LDL Chol Friedewald 4th,,3.76,,H,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Retest,,"Dec 15, 2025 10:53 AM",6226785740,TSH,TSH 3rd IS-QT,,1.044,,,,,0.45 - 5.33,mIU/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,C-REACTIVE PROTEIN,C Reactive Protein HS,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Total Bilirubin,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,ALT (SGPT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,AST (SGOT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,GGT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,LDH,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Urea Nitrogen,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Glucose Fasting,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Uric Acid,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Calcium (EDTA),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Phosphorus,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Total Protein,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Albumin-BCG,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Creatine Kinase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Sodium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Potassium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Bicarbonate,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CHEMISTRY PANEL,Serum Chloride,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,Required testing unavailable,,,,,1.42 - 2.08,mL/sec +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,87.0,,,,,kg, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,GFR,EGFR by MDRD,,Required testing unavailable,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.79,,,,,3.8 - 10.7,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.23,,,,,1.96 - 7.23,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.09,,,,,0.91 - 4.28,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.4,,,,,40.5 - 75,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.8,,,,,15.4 - 48.5,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,207,,,,,140 - 400,GI/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.62,,,,,1.9 - 23,uIU/mL +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Direct HDL-C 4th Generation,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Triglycerides (GPO),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,Cholesterol (High Performance),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,TSH,TSH 3rd IS-QT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Specific Gravity,,1.032,,,,,1 - 1.04, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur pH,,7.0,,,,,5 - 8, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080007,,,40,years,Male,Part 1 Screening,,"Dec 10, 2025 10:20 AM",6225351044,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CELLULAR ELEMENTS,Ur RBC/HPF,,2,,,,,0 - 3,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CELLULAR ELEMENTS,Ur WBC/HPF,,7,,H,,,0 - 5,/HPF +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,GGT,,26,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Glucose Fasting,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Uric Acid,,317,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Creatine Kinase,,76,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Bicarbonate,,25.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.00,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.16,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.99,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.71,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.4,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,22.2,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,256,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,11.88,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Direct HDL-C 4th Generation,,1.07,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Triglycerides (GPO),,1.52,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,Cholesterol (High Performance),,4.74,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,LIPID PANEL,LDL Chol Friedewald 4th,,2.97,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,MISCELLANEOUS ELEMENTS,Ur Sperm,,Present,,,,,Ref Rng:Not present, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,TSH,TSH 3rd IS-QT,,0.706,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Specific Gravity,,1.032,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,End of Phase/Treatment,,"Dec 9, 2025 11:35 AM",6226780855,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.6,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,GGT,,31,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Uric Acid,,189,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Phosphorus,,0.99,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.79,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.69,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.52,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.7,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.3,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,402,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.90,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Direct HDL-C 4th Generation,,1.98,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Triglycerides (GPO),,1.65,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,Cholesterol (High Performance),,5.40,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,RETICULOCYTES,Reticulocyte Count %,,2.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,TSH,TSH 3rd IS-QT,,1.816,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,End of Phase/Treatment,,"Nov 18, 2025 11:06 AM",6226780856,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.6,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CELLULAR ELEMENTS,Ur RBC/HPF,,1,,,,,0 - 8,/HPF +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Alkaline Phosphatase,,36,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Creatine Kinase,,105,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.46,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.81,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.34,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.24,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.7,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.6,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,267,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.64,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Direct HDL-C 4th Generation,,1.66,R,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Triglycerides (GPO),,1.43,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,Cholesterol (High Performance),,4.82,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Yeast-Budding,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,MICROORGANISMS,Ur Yeast-Hyphae,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,TSH,TSH 3rd IS-QT,,1.379,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,End of Phase/Treatment,,"Nov 5, 2025 12:50 PM",6226780853,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CASTS,Ur Hyaline Casts/LPF,,27,,,,,0 /LPF, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,ALT (SGPT),,64,,H,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,AST (SGOT),,63,,H RX,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,GGT,,85,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,LDH,,207,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Urea Nitrogen,,2.8,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Uric Acid,,423,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,CHEMISTRY PANEL,Serum Chloride,,99,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,102,,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.73,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.43,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.2,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.35,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Triglycerides (GPO),,1.03,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,Cholesterol (High Performance),,5.23,,,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Protein,,+1,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Day 29,,"Nov 4, 2025 12:05 PM",6226804961,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.3,,H,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,GGT,,28,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Uric Acid,,311,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Calcium (EDTA),,2.30,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Creatine Kinase,,73,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,158,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,99,R,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.66,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,7.67,R,H,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.77,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.9,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,251,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.56,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Direct HDL-C 4th Generation,,1.04,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Triglycerides (GPO),,1.84,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,Cholesterol (High Performance),,5.15,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,LIPID PANEL,LDL Chol Friedewald 4th,,3.27,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 DB Baseline,,"Oct 29, 2025 10:10 AM",6226551698,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,C-REACTIVE PROTEIN,C Reactive Protein HS,,6.1,,H,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Alkaline Phosphatase,,106,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,GGT,,105,,H,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,LDH,,140,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,98,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Phosphorus,,0.96,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Creatine Kinase,,55,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Bicarbonate,,26.4,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.05,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.34,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.31,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.8,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.3,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.4,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,219,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.63,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Direct HDL-C 4th Generation,,1.31,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Triglycerides (GPO),,1.15,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,Cholesterol (High Performance),,6.10,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,LIPID PANEL,LDL Chol Friedewald 4th,,4.26,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,TSH,TSH 3rd IS-QT,,0.733,,,,,0.45 - 5.33,mIU/L +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Early Withdrawal,,"Oct 14, 2025 12:30 PM",6225351066,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,GGT,,28,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,LDH,,184,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.32,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.74,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.91,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.2,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.3,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,356,,,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.42,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Direct HDL-C 4th Generation,,1.90,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Triglycerides (GPO),,1.05,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,Cholesterol (High Performance),,5.04,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,RETICULOCYTES,Reticulocyte Count %,,2.3,,,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 DB Baseline,,"Oct 8, 2025 11:19 AM",6225351050,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Alkaline Phosphatase,,42,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,67,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Bicarbonate,,20.6,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.49,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.33,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.8,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.5,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,327,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.98,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Direct HDL-C 4th Generation,,1.69,R,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Triglycerides (GPO),,1.86,R,H,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,Cholesterol (High Performance),,5.31,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,LIPID PANEL,LDL Chol Friedewald 4th,,2.77,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Blood,,+3,R,H SF,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Day 29,,"Oct 8, 2025 9:20 AM",6226686952,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.4,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CASTS,Ur Hyaline Casts/LPF,,4,,,,,0 /LPF, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,GGT,,51,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,LDH,,178,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Uric Acid,,451,,H,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Creatine Kinase,,153,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,CHEMISTRY PANEL,Serum Chloride,,97,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.90,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.97,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.30,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.3,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.3,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,244,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.6,,,,,<6.5%, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.01,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Direct HDL-C 4th Generation,,1.47,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Triglycerides (GPO),,1.30,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,Cholesterol (High Performance),,3.27,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,LIPID PANEL,LDL Chol Friedewald 4th,,1.20,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,TSH,TSH 3rd IS-QT,,1.174,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 2 OL Induction Baseline,,"Oct 7, 2025 12:02 PM",6225351057,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,ALT (SGPT),,31,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,GGT,,68,R,H,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,LDH,,163,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Uric Acid,,448,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Phosphorus,,0.78,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Bicarbonate,,24.3,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.18,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.32,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.51,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.09,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.7,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.1,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,203,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.51,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Direct HDL-C 4th Generation,,1.29,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Triglycerides (GPO),,1.22,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,Cholesterol (High Performance),,5.80,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,LIPID PANEL,LDL Chol Friedewald 4th,,3.95,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 DB Baseline,,"Sep 16, 2025 12:35 PM",6225351052,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,GGT,,29,,,,,10 - 61,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,LDH,,173,,,,,53 - 234,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Uric Acid,,268,,,,,149 - 494,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Creatine Kinase,,93,,,,,39 - 308,U/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Bicarbonate,,20.0,,,,,19.3 - 29.3,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.12,,H,,,1.42 - 2.08,mL/sec +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,85.0,,,,,kg, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,GFR,EGFR by MDRD,,98,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,,H,,,79 - 96,fL +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.62,,,,,3.8 - 10.7,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.14,,,,,1.96 - 7.23,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.83,,,,,0.91 - 4.28,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.2,,,,,40.5 - 75,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.2,,,,,15.4 - 48.5,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,218,,,,,140 - 400,GI/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.69,,,,,1.9 - 23,uIU/mL +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Direct HDL-C 4th Generation,,1.08,,,,,1.03 - 1.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Triglycerides (GPO),,2.26,,,,,0.65 - 3.61,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,Cholesterol (High Performance),,4.47,,,,,4.4 - 7.53,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,TSH,TSH 3rd IS-QT,,0.878,,,,,0.45 - 5.33,mIU/L +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1 - 1.04, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080006,,,52,years,Male,Part 1 Screening,,"Sep 16, 2025 9:45 AM",6225351040,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,GGT,,22,,,,,4 - 49,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,LDH,,182,,,,,53 - 234,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Uric Acid,,224,,,,,149 - 446,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Creatine Kinase,,71,,,,,26 - 192,U/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.81,,,,,1.25 - 1.92,mL/sec +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,69.0,,,,,kg, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,FSH,Follicle Stimulating Hormone,,6.17,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,GFR,EGFR by MDRD,,97,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,98,,,,,79 - 98,fL +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.11,,,,,3.8 - 10.7,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.39,,,,,1.96 - 7.23,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.04,,,,,0.91 - 4.28,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.8,,,,,40.5 - 75,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.7,,,,,15.4 - 48.5,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,431,,H,,,140 - 400,GI/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.05,,,,,1.9 - 23,uIU/mL +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Direct HDL-C 4th Generation,,1.95,,H,,,1.03 - 1.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Triglycerides (GPO),,1.54,,,,,0.59 - 2.96,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,Cholesterol (High Performance),,5.27,,,,,4.42 - 7.53,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,LIPID PANEL,LDL Chol Friedewald 4th,,2.61,,,,,0 - 3.34,mmol/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,RETICULOCYTES,Reticulocyte Count %,,2.9,,H,,,0.6 - 2.5,% +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,TSH,TSH 3rd IS-QT,,1.573,,,,,0.45 - 5.33,mIU/L +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1 - 1.04, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080005,,,55,years,Female,Part 1 Screening,,"Sep 10, 2025 1:31 PM",6225351046,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Alkaline Phosphatase,,38,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,LDH,,162,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,59,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Uric Acid,,260,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Calcium (EDTA),,2.26,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Phosphorus,,0.56,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Creatine Kinase,,358,R,H,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Bicarbonate,,21.1,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.52,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.25,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.8,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.63,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Direct HDL-C 4th Generation,,1.42,,,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Triglycerides (GPO),,1.42,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,Cholesterol (High Performance),,4.13,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,LIPID PANEL,LDL Chol Friedewald 4th,,2.06,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,TSH,TSH 3rd IS-QT,,1.160,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Specific Gravity,,1.020,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 2 OL Induction Baseline,R,"Sep 10, 2025 11:35 AM",6225351056,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Retest,,"Sep 8, 2025 10:00 AM",6225351070,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.1,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,GGT,,54,,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,LDH,,184,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Uric Acid,,413,,,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Calcium (EDTA),,2.58,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Creatine Kinase,,155,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,101,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.55,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.20,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.66,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.5,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,275,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.10,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Direct HDL-C 4th Generation,,1.39,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Triglycerides (GPO),,1.36,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,Cholesterol (High Performance),,3.50,,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,LIPID PANEL,LDL Chol Friedewald 4th,,1.49,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Ketones,,+1,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 DB Baseline,,"Aug 26, 2025 12:47 PM",6225351051,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.9,,,,,0 - 6.2,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Alkaline Phosphatase,,76,,,,,40 - 129,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,GGT,,61,,,,,10 - 61,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,LDH,,160,,,,,53 - 234,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Uric Acid,,353,,,,,149 - 494,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Phosphorus,,0.79,,,,,0.71 - 1.65,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Creatine Kinase,,153,,,,,39 - 308,U/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.83,,,,,1.42 - 2.08,mL/sec +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 119,umol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.2,,,,,kg, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Opiates,,Detected (unconfirmed),,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,GFR,EGFR by MDRD,,80,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.94,,,,,3.8 - 10.7,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.25,,,,,1.96 - 7.23,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.33,,,,,0.91 - 4.28,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.9,,,,,40.5 - 75,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.0,,,,,15.4 - 48.5,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,222,,,,,140 - 400,GI/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.22,,,,,1.9 - 23,uIU/mL +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Direct HDL-C 4th Generation,,1.15,,,,,1.03 - 1.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Triglycerides (GPO),,0.89,,,,,0.65 - 3.61,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,Cholesterol (High Performance),,5.43,,,,,4.4 - 7.53,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,LIPID PANEL,LDL Chol Friedewald 4th,,3.87,,H,,,0 - 3.34,mmol/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,Codeine (Confirmed),,RX,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,Morphine (Confirmed),,RX,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,OPIATE CONFIRMATION URINE,Opiates Confirmed-LCMSMS-LDT,,6-MAM not present,,,,,No Ref Rng, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,TSH,TSH 3rd IS-QT,,0.914,,,,,0.45 - 5.33,mIU/L +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Ketones,,+1,,H,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080004,,,54,years,Male,Part 1 Screening,,"Aug 26, 2025 11:08 AM",6225351042,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CELLULAR ELEMENTS,Ur WBC/HPF,,4,,,,,0 - 12,/HPF +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,GGT,,43,,,,,5 - 50,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,LDH,,183,,,,,53 - 234,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,47,,,,,31 - 101,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Glucose Fasting,,6.0,,H,,,3.9 - 5.6,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Uric Acid,,253,,,,,149 - 446,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Creatine Kinase,,89,,,,,26 - 192,U/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.47,,H,,,1.25 - 1.92,mL/sec +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,47,,,,,31 - 101,umol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.0,,,,,kg, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,FSH,Follicle Stimulating Hormone,,29.08,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,GFR,EGFR by MDRD,,116,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,115 - 158,g/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,3.9 - 5.5,TI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,80 - 100,fL +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.29,,,,,3.8 - 10.7,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.65,,,,,1.96 - 7.23,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.23,,,,,0.8 - 3,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.7,,,,,40.5 - 75,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.6,,,,,15.4 - 48.5,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.2,,,,,2.6 - 10.1,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,130 - 394,GI/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.4,,,,,<6.5%, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.80,,,,,1.9 - 23,uIU/mL +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Direct HDL-C 4th Generation,,1.50,,,,,1.03 - 1.53,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Triglycerides (GPO),,1.69,,,,,0.63 - 2.71,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,Cholesterol (High Performance),,4.20,,L,,,4.86 - 8.28,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,LIPID PANEL,LDL Chol Friedewald 4th,,1.93,,,,,0 - 3.34,mmol/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,TSH,TSH 3rd IS-QT,,1.074,,,,,0.45 - 5.33,mIU/L +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1.01 - 1.03, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MACRO PANEL,Ur Leukocyte Esterase,,+3,R,H SF,,,Ref Rng:Negative, +CZ100080003,,,66,years,Female,Part 1 Screening,,"Aug 6, 2025 11:43 AM",6225351041,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,35 - 104,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,ALT (SGPT),,40,,,,,4 - 43,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,GGT,,56,R,H,,,5 - 50,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,LDH,,169,,,,,53 - 234,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Uric Acid,,479,R,H,,,149 - 446,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.51,,H,,,1.25 - 1.92,mL/sec +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,93.1,,,,,kg, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,FSH,Follicle Stimulating Hormone,,30.27,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,GFR,EGFR by MDRD,,106,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,115 - 158,g/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,,,,3.9 - 5.5,TI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,102,R,H,,,80 - 100,fL +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.37,,,,,3.8 - 10.7,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.86,,,,,1.96 - 7.23,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.96,,,,,0.8 - 3,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.3,,,,,40.5 - 75,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.6,,,,,15.4 - 48.5,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,232,,,,,130 - 394,GI/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.2,,,,,<6.5%, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.31,,,,,1.9 - 23,uIU/mL +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Direct HDL-C 4th Generation,,1.30,,,,,1.03 - 1.53,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.63 - 2.71,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,Cholesterol (High Performance),,3.52,R,L,,,4.86 - 8.28,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,LIPID PANEL,LDL Chol Friedewald 4th,,1.51,,,,,0 - 3.34,mmol/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,TSH,TSH 3rd IS-QT,,1.889,,,,,0.45 - 5.33,mIU/L +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1.01 - 1.03, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080002,,,62,years,Female,Part 1 Screening,R,"Aug 5, 2025 11:58 AM",6225351045,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Alkaline Phosphatase,,44,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Uric Acid,,263,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Phosphorus,,0.71,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Creatine Kinase,,260,,H,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.54,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.08,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.06,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,73.7,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.3,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.8,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,260,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.54,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Direct HDL-C 4th Generation,,1.52,,,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Triglycerides (GPO),,1.60,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,Cholesterol (High Performance),,4.24,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,LIPID PANEL,LDL Chol Friedewald 4th,,1.99,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,MISCELLANEOUS ELEMENTS,Ur Fat,,Present,,H,,,Ref Rng:Not present, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Specific Gravity,,1.031,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 DB Baseline,,"Jul 30, 2025 11:55 AM",6225351049,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Alkaline Phosphatase,,59,,,,,35 - 104,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,4 - 43,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Uric Acid,,235,,,,,125 - 428,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.06,,H,,,1.25 - 1.92,mL/sec +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,65.0,,,,,kg, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,GFR,EGFR by MDRD,,100,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.1 - 5.6,TI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,82,,,,,79 - 98,fL +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.86,,,,,3.8 - 10.7,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.59,,,,,0.91 - 4.28,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.3,,,,,40.5 - 75,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.7,,,,,15.4 - 48.5,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,261,,,,,140 - 400,GI/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.4,,,,,<6.5%, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.26,,,,,1.9 - 23,uIU/mL +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Direct HDL-C 4th Generation,,1.54,,H,,,1.03 - 1.53,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Triglycerides (GPO),,0.87,,,,,0.41 - 1.63,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,Cholesterol (High Performance),,4.29,,,,,3.31 - 5.64,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,TSH,TSH 3rd IS-QT,,0.904,,,,,0.45 - 5.33,mIU/L +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100080001,,,26,years,Female,Part 1 Screening,,"Jul 2, 2025 11:12 AM",6225351047,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_122958 sponsor-study-35472-test-results-898733-standard.csv b/Covance_UCO3001/Source/2026-06-01_122958 sponsor-study-35472-test-results-898733-standard.csv new file mode 100644 index 0000000..c1822ff --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_122958 sponsor-study-35472-test-results-898733-standard.csv @@ -0,0 +1,2409 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.2,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Alkaline Phosphatase,,59,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Uric Acid,,289,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Phosphorus,,1.12,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Creatine Kinase,,263,,H,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,139,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,Result verified by repeat analysis,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,Result verified by repeat analysis,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.14,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.07,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.57,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.0,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.0,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,309,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.37,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Direct HDL-C 4th Generation,,1.79,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Triglycerides (GPO),,1.51,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,Cholesterol (High Performance),,5.75,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,LIPID PANEL,LDL Chol Friedewald 4th,,3.27,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,TSH,TSH 3rd IS-QT,,4.824,,,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"May 13, 2026 8:15 AM",6228234298,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,C-REACTIVE PROTEIN,C Reactive Protein HS,,7.3,,H,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,ALT (SGPT),,163,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,AST (SGOT),,127,,H RX,,,8 - 40,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,GGT,,350,,HT,,Result verified by repeat analysis,10 - 50,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,LDH,,224,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,106,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Uric Acid,,512,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Creatine Kinase,,348,,H,,,39 - 308,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,100,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.89,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.35,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.13,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.5,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.7,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,137,R,L,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.3,,,,,<6.5 %, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,30.61,,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Direct HDL-C 4th Generation,,1.03,,,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Triglycerides (GPO),,2.89,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,Cholesterol (High Performance),,4.82,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,LIPID PANEL,LDL Chol Friedewald 4th,,2.47,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,TSH,TSH 3rd IS-QT,,1.982,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"May 4, 2026 8:44 AM",6228234297,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Alkaline Phosphatase,,92,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Urea Nitrogen,,4.6,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Uric Acid,,249,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Albumin-BCG,,50,R,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Creatine Kinase,,224,,,,,39 - 308,U/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Bicarbonate,,27.9,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,CHEMISTRY PANEL,Serum Chloride,,98,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.75,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.09,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.22,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.0,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.8,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.4,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,216,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.44,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Triglycerides (GPO),,0.59,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,Cholesterol (High Performance),,3.92,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,LIPID PANEL,LDL Chol Friedewald 4th,,2.31,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,TSH,TSH 3rd IS-QT,,1.256,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,End of Phase/Treatment,,"Apr 21, 2026 10:37 AM",6228234300,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Urea Nitrogen,,6.2,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Albumin-BCG,,52,,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Creatine Kinase,,196,,,,,39 - 308,U/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.59,,,,,1.42 - 2.08,mL/sec +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,64.0,,,,,kg, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,FSH,Follicle Stimulating Hormone,,6.14,,RX,,,1.3 - 19.3,IU/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.24,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.97,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.6,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,223,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.3,,,,,<6.5 %, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.85,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Direct HDL-C 4th Generation,,1.40,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,Cholesterol (High Performance),,4.33,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,LIPID PANEL,LDL Chol Friedewald 4th,,2.56,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,TSH,TSH 3rd IS-QT,,1.789,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Specific Gravity,,1.028,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Retest,,"Apr 10, 2026 8:16 AM",6227542182,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.1,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,ALT (SGPT),,86,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,AST (SGOT),,74,,H RX,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,GGT,,83,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,LDH,,187,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,107,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Glucose Fasting,,8.0,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Uric Acid,,500,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Total Protein,,77,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Creatine Kinase,,238,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,CHEMISTRY PANEL,Serum Chloride,,99,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.57,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.18,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.84,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.0,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,169,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.13,,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Direct HDL-C 4th Generation,,0.70,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Triglycerides (GPO),,2.48,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,Cholesterol (High Performance),,4.55,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 2 OL Induction Day 29,,"Apr 7, 2026 9:21 AM",6228114460,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.7,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Total Bilirubin,,15,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Alkaline Phosphatase,,101,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,LDH,,175,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,54,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Total Protein,,80,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,CRYSTALS,Ur Uric Acid Crystals,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,FREE T4,Free Thyroxine-QT,,18,,H,,,8 - 14,pmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.85,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.16,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.28,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.31,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,312,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.7,,,,,<6.5 %, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.75,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Direct HDL-C 4th Generation,,1.07,,,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Triglycerides (GPO),,0.77,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,Cholesterol (High Performance),,3.77,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,RETICULOCYTES,Reticulocyte Count %,,1.5,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,TSH,TSH 3rd IS-QT,,0.119,,L SF,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,,"Mar 31, 2026 10:10 AM",6228232037,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Alkaline Phosphatase,,53,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,LDH,,134,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Uric Acid,,216,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Phosphorus,,0.83,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,L,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.63,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.66,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.20,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.3,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.3,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.4,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,273,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.32,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Direct HDL-C 4th Generation,,1.68,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,Cholesterol (High Performance),,4.75,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,TSH,TSH 3rd IS-QT,,1.607,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Specific Gravity,,1.027,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Mar 30, 2026 9:31 AM",6227542172,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,GGT,,30,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Uric Acid,,315,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Creatine Kinase,,151,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Bicarbonate,,24.8,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.44,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.89,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.02,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.3,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,40.6,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,307,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.60,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Direct HDL-C 4th Generation,,1.98,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,Cholesterol (High Performance),,5.66,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,TSH,TSH 3rd IS-QT,,3.912,,,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Specific Gravity,,1.025,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Mar 16, 2026 9:16 AM",6227542171,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 5,/HPF +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.2,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,ALT (SGPT),,29,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,AST (SGOT),,39,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,LDH,,206,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Uric Acid,,223,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Calcium (EDTA),,2.58,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Albumin-BCG,,51,R,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Creatine Kinase,,1857,R,H SF,,Diluted for quantitation,39 - 308,U/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.41,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.57,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.23,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.3,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.5,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,242,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.71,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Triglycerides (GPO),,1.12,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,Cholesterol (High Performance),,3.95,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,LIPID PANEL,LDL Chol Friedewald 4th,,2.21,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Specific Gravity,,1.036,R,H,,,1 - 1.04, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Protein,,Trace,R,H,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 DB Baseline,,"Mar 10, 2026 10:21 AM",6227844725,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.7,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.1,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Alkaline Phosphatase,,53,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,ALT (SGPT),,79,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,AST (SGOT),,46,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,GGT,,68,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Glucose Fasting,,7.0,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Uric Acid,,393,,,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Calcium (EDTA),,2.28,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Total Protein,,72,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Creatine Kinase,,212,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Bicarbonate,,22.5,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,98,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.42,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.42,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.28,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.8,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.4,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.4,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,149,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.2,,,,,<6.5 %, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,33.25,R,H,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Direct HDL-C 4th Generation,,0.79,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Triglycerides (GPO),,2.48,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,Cholesterol (High Performance),,4.67,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,LIPID PANEL,LDL Chol Friedewald 4th,,2.74,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,TSH,TSH 3rd IS-QT,,1.053,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,End of Phase/Treatment,,"Mar 10, 2026 9:30 AM",6227542170,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,GGT,,26,,,,,10 - 61,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 488,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Calcium (EDTA),,2.52,,,,,2.07 - 2.64,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Albumin-BCG,,53,,H,,,33 - 49,g/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Creatine Kinase,,70,,,,,39 - 308,U/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.99,,,,,1.42 - 2.08,mL/sec +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,81.1,,,,,kg, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,GFR,EGFR by MDRD,,87,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.94,,,,,1.9 - 23,uIU/mL +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Direct HDL-C 4th Generation,,0.90,,L,,,1.03 - 1.53,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Triglycerides (GPO),,1.55,,,,,0.56 - 3.62,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,Cholesterol (High Performance),,4.40,,,,,3.88 - 6.83,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,LIPID PANEL,LDL Chol Friedewald 4th,,2.79,,,,,0 - 3.34,mmol/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,RETICULOCYTES,Reticulocyte Count %,,,,,Test cancelled: Clotted Blood Received,,, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,TSH,TSH 3rd IS-QT,,0.855,,,,,0.45 - 5.33,mIU/L +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110012,,,37,years,Male,Part 1 Screening,,"Mar 6, 2026 9:22 AM",6227797407,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,C-REACTIVE PROTEIN,C Reactive Protein HS,,12.0,,H,,,0 - 5,mg/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Alkaline Phosphatase,,120,,,,,40 - 129,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,GGT,,15,,,,,10 - 50,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Glucose Fasting,,5.7,,H,,,3.9 - 5.6,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Uric Acid,,237,,,,,149 - 494,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Phosphorus,,0.98,,,,,0.71 - 1.65,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Total Protein,,84,,H,,,60 - 80,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Creatine Kinase,,116,,,,,39 - 308,U/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Sodium,,138,,,,,135 - 145,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Bicarbonate,,17.8,,L,,,19.3 - 29.3,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.23,,L,,,1.42 - 2.08,mL/sec +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,82.0,,,,,kg, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,GFR,EGFR by MDRD,,60,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,125 - 170,g/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.37 - 0.51, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4 - 5.8,TI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,80 - 100,fL +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.37,,,,,3.8 - 10.7,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.83,,,,,1.96 - 7.23,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.79,,,,,0.8 - 3,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.61,,,,,0.12 - 0.92,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,72.9,,,,,40.5 - 75,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.1,,,,,15.4 - 48.5,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,509,R,H,,,130 - 394,GI/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.5,,H,,,<6.5 %, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.10,,,,,1.9 - 23,uIU/mL +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Triglycerides (GPO),,1.36,,,,,0.65 - 2.94,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,Cholesterol (High Performance),,3.73,,L,,,4.53 - 7.71,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,LIPID PANEL,LDL Chol Friedewald 4th,,1.87,,,,,0 - 3.34,mmol/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,TSH,TSH 3rd IS-QT,,1.311,,,,,0.45 - 5.33,mIU/L +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1.01 - 1.03, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110011,,,61,years,Male,Part 1 Screening,,"Mar 2, 2026 9:05 AM",6227797408,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.5,,,,,0 - 5,mg/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Total Bilirubin,,15,,,,,3 - 21,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.7,,,,,0 - 6.2,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,40 - 129,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,90,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Uric Acid,,287,,,,,125 - 488,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Creatine Kinase,,332,,H,,,39 - 308,U/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.60,,,,,1.42 - 2.08,mL/sec +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,90,,,,,40 - 110,umol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,61.0,,,,,kg, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,GFR,EGFR by MDRD,,89,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,149,,,,,127 - 181,g/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.69,,,,,3.8 - 10.7,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.98,,,,,1.96 - 7.23,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.11,,,,,0.91 - 4.28,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.45,,,,,0.12 - 0.92,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.06,,,,,0 - 0.57,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.5,,,,,40.5 - 75,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.5,,,,,15.4 - 48.5,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.81,,,,,1.9 - 23,uIU/mL +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.5 - 2.81,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.31 - 6.1,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,TSH,TSH 3rd IS-QT,,0.928,,,,,0.45 - 5.33,mIU/L +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110010,,,25,years,Male,Part 1 Screening,,"Feb 17, 2026 11:03 AM",6227797406,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.4,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,ALT (SGPT),,28,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,GGT,,27,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Urea Nitrogen,,4.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Uric Acid,,337,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Creatine Kinase,,148,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.09,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.49,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.02,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.6,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.4,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,316,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.12,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Direct HDL-C 4th Generation,,1.96,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,Cholesterol (High Performance),,5.64,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,LIPID PANEL,LDL Chol Friedewald 4th,,3.08,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,RETICULOCYTES,Reticulocyte Count %,,0.6,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Specific Gravity,,1.021,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 2 OL Induction Day 29,,"Feb 16, 2026 9:18 AM",6226550646,URINE MICRO PANEL,Ur Microscopic,,Negative,,,,, NEGATIVE$,NEGATIVE +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.0,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,61,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Uric Acid,,250,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Calcium (EDTA),,2.30,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Creatine Kinase,,69,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.73,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.57,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.42,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.1,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,348,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.60,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Direct HDL-C 4th Generation,,1.10,,,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,Cholesterol (High Performance),,4.41,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,LIPID PANEL,LDL Chol Friedewald 4th,,2.77,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Specific Gravity,,1.026,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 2 OL Induction Day 29,,"Feb 3, 2026 10:23 AM",6226561517,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CELLULAR ELEMENTS,Ur WBC/HPF,,4,,,,,0 - 12,/HPF +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,GGT,,16,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,LDH,,128,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Urea Nitrogen,,7.9,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,84,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Uric Acid,,250,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,123,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.99,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.90,,L,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.18,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.6,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.6,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,301,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.6,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.63,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Direct HDL-C 4th Generation,,1.75,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Triglycerides (GPO),,0.50,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,Cholesterol (High Performance),,4.64,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,LIPID PANEL,LDL Chol Friedewald 4th,,2.66,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,TSH,TSH 3rd IS-QT,,1.963,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Blood,,+1,,H,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Jan 30, 2026 8:36 AM",6227498380,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.5,,,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Alkaline Phosphatase,,52,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,ALT (SGPT),,77,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,AST (SGOT),,49,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,GGT,,53,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,LDH,,139,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Glucose Fasting,,6.3,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Uric Acid,,507,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Creatine Kinase,,201,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Bicarbonate,,27.8,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,L,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.20,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.39,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.0,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.9,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.8,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,144,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,22.36,,,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Direct HDL-C 4th Generation,,0.75,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Triglycerides (GPO),,3.00,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,Cholesterol (High Performance),,4.63,,,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 DB Baseline,,"Jan 27, 2026 8:25 AM",6227144560,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Alkaline Phosphatase,,39,,,,,35 - 104,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,4 - 43,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,GGT,,10,,,,,4 - 49,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Urea Nitrogen,,2.9,,,,,1.4 - 8.6,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Uric Acid,,162,,,,,125 - 428,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Phosphorus,,0.94,,,,,0.71 - 1.65,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Creatine Kinase,,56,,,,,26 - 192,U/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Bicarbonate,,26.3,,,,,19.3 - 29.3,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.79,,,,,1.25 - 1.92,mL/sec +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,63,,,,,31 - 101,umol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,70.3,,,,,kg, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,GFR,EGFR by MDRD,,88,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,Result verified by repeat analysis,116 - 164,g/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.80,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.45,,,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.67,,,,,0.91 - 4.28,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.1,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.7,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.0,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.4,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,Result verified by repeat analysis,0 - 2,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,254,,,,Result verified by repeat analysis,140 - 400,GI/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.02,,,,,1.9 - 23,uIU/mL +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Direct HDL-C 4th Generation,,1.67,,H,,,1.03 - 1.53,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Triglycerides (GPO),,0.69,,,,,0.51 - 2.42,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,Cholesterol (High Performance),,5.79,,,,,4.01 - 6.85,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,LIPID PANEL,LDL Chol Friedewald 4th,,3.80,,H,,,0 - 3.34,mmol/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,TSH,TSH 3rd IS-QT,,1.837,,,,,0.45 - 5.33,mIU/L +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Specific Gravity,,1.005,,,,,1 - 1.04, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110009,,,48,years,Female,Part 1 Screening,,"Jan 21, 2026 10:11 AM",6227542160,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.9,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CELLULAR ELEMENTS,Ur RBC/HPF,,3,,,,,0 - 8,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,GGT,,21,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Uric Acid,,286,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Creatine Kinase,,147,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Bicarbonate,,22.4,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,FREE T4,Free Thyroxine-QT,,9,,,,,8 - 14,pmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.42,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.84,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.08,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.8,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.6,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.9,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,332,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.2,,,,,<6.5 %, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.98,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Direct HDL-C 4th Generation,,2.01,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Triglycerides (GPO),,1.43,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,Cholesterol (High Performance),,5.46,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,LIPID PANEL,LDL Chol Friedewald 4th,,2.80,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,TSH,TSH 3rd IS-QT,,6.224,,H SF,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Specific Gravity,,1.033,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,End of Phase/Treatment,,"Jan 16, 2026 8:48 AM",6227542173,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,GGT,,7,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,LDH,,145,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Uric Acid,,236,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Creatine Kinase,,72,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.59,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.25,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.37,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.19,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.5,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.9,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.0,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.9,,H,,,0 - 2,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.9,,,,,<6.5 %, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.92,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Direct HDL-C 4th Generation,,1.01,,L,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Triglycerides (GPO),,1.05,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,Cholesterol (High Performance),,3.68,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,LIPID PANEL,LDL Chol Friedewald 4th,,2.19,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,RETICULOCYTES,Reticulocyte Count %,,1.8,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,TSH,TSH 3rd IS-QT,,1.385,,,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,End of Phase/Treatment,R,"Jan 6, 2026 10:11 AM",6227261836,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,C-REACTIVE PROTEIN,C Reactive Protein HS,,8.1,,H,,,0 - 5,mg/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Alkaline Phosphatase,,51,,,,,40 - 129,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,ALT (SGPT),,79,,H RX,,,5 - 48,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,AST (SGOT),,51,,H,,,8 - 40,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,GGT,,52,,H,,,10 - 50,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,LDH,,160,,,,,53 - 234,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Uric Acid,,521,,H,,,149 - 494,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Phosphorus,,1.00,,,,,0.71 - 1.65,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Total Protein,,75,,,,,60 - 80,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Creatine Kinase,,206,,,,,39 - 308,U/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Bicarbonate,,25.6,,,,,19.3 - 29.3,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.95,,,,,1.42 - 2.08,mL/sec +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 119,umol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,108.0,,,,,kg, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,GFR,EGFR by MDRD,,73,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,132,,,,,125 - 170,g/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.37 - 0.51, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,4 - 5.8,TI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,,,,80 - 100,fL +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.10,,,,,3.8 - 10.7,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.77,,,,,1.96 - 7.23,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.71,,,,,0.8 - 3,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.7,,,,,40.5 - 75,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.1,,,,,15.4 - 48.5,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.5,,,,,2.6 - 10.1,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,178,,,,,140 - 400,GI/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,6.2,,,,,<6.5 %, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.17,,,,,1.9 - 23,uIU/mL +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Direct HDL-C 4th Generation,,0.74,,L,,,1.03 - 1.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Triglycerides (GPO),,2.04,,,,,0.65 - 3.61,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,Cholesterol (High Performance),,4.38,,L,,,4.4 - 7.53,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,RETICULOCYTES,Reticulocyte Count %,,1.9,,,,,0.6 - 2.5,% +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,TSH,TSH 3rd IS-QT,,1.243,,,,,0.45 - 5.33,mIU/L +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1.01 - 1.03, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110008,,,59,years,Male,Part 1 Screening,,"Jan 5, 2026 10:58 AM",6227542161,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Alkaline Phosphatase,,93,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,ALT (SGPT),,128,,H RX,,,5 - 48,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,AST (SGOT),,54,,H,,,8 - 40,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,GGT,,247,,H,,Result verified by repeat analysis,10 - 61,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Uric Acid,,430,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Phosphorus,,1.25,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Creatine Kinase,,127,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,162,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.78,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.31,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.8,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.5,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,271,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,8.27,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Triglycerides (GPO),,2.24,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,Cholesterol (High Performance),,5.39,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,LIPID PANEL,LDL Chol Friedewald 4th,,3.04,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,TSH,TSH 3rd IS-QT,,1.417,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Jan 2, 2026 9:28 AM",6227498379,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,GGT,,15,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,LDH,,142,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Urea Nitrogen,,4.2,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,81,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Uric Acid,,291,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Creatine Kinase,,109,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Bicarbonate,,21.7,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.55,,,,,1.25 - 1.92,mL/sec +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,81,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.0,,,,,kg, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,FSH,Follicle Stimulating Hormone,,1.95,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,124,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.35,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.19,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.57,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.6,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.4,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,340,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.35,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Direct HDL-C 4th Generation,,1.82,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Triglycerides (GPO),,0.63,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,Cholesterol (High Performance),,5.11,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,LIPID PANEL,LDL Chol Friedewald 4th,,3.00,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,TSH,TSH 3rd IS-QT,,2.024,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Retest,R,"Dec 11, 2025 9:05 AM",6226935606,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.7,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,ALT (SGPT),,21,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,GGT,,33,,,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,LDH,,158,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Glucose Fasting,,4.2,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Uric Acid,,307,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Creatine Kinase,,203,,H,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Bicarbonate,,22.0,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.49,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.93,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.72,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.32,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.17,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.2,,,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.9,,,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.9,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.7,R,H,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,332,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.15,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Direct HDL-C 4th Generation,,1.91,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Triglycerides (GPO),,1.28,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,Cholesterol (High Performance),,5.21,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,LIPID PANEL,LDL Chol Friedewald 4th,,2.71,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 DB Baseline,,"Dec 11, 2025 8:13 AM",6227144562,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,C-REACTIVE PROTEIN,C Reactive Protein HS,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Total Bilirubin,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,ALT (SGPT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,AST (SGOT),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,GGT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,LDH,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Urea Nitrogen,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Glucose Fasting,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Uric Acid,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Calcium (EDTA),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Phosphorus,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Total Protein,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Albumin-BCG,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Creatine Kinase,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Sodium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Potassium,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Bicarbonate,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,CHEMISTRY PANEL,Serum Chloride,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,126,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.49,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.37,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.8,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.7,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,299,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.65,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Direct HDL-C 4th Generation,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Triglycerides (GPO),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,Cholesterol (High Performance),,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,TSH,TSH 3rd IS-QT,,,,,"Test cancelled: Expired contain, test cancel",,, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,End of Phase/Treatment,,"Dec 5, 2025 9:23 AM",6225351093,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CELLULAR ELEMENTS,Ur WBC/HPF,,5,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CELLULAR ELEMENTS,Ur Squamous Epithelial Cells,,80,,,,,0 - 3,/HPF +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Alkaline Phosphatase,,98,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,AST (SGOT),,10,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,GGT,,8,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,LDH,,142,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Creatine Kinase,,42,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,CRYSTALS,Ur Calcium Oxalate Crystals,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.82,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.12,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.07,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.4,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.4,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.1,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,322,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.28,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Direct HDL-C 4th Generation,,1.25,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Triglycerides (GPO),,0.86,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,Cholesterol (High Performance),,4.48,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,LIPID PANEL,LDL Chol Friedewald 4th,,2.84,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,RETICULOCYTES,Reticulocyte Count %,,2.1,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Specific Gravity,,1.037,,H,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 DB Baseline,,"Nov 25, 2025 10:04 AM",6227144561,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,,0 - 5,mg/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.6,,,,,0 - 6.2,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,GGT,,63,,H,,,4 - 49,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Uric Acid,,291,,,,,149 - 446,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,26 - 192,U/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.17,,L,,,1.25 - 1.92,mL/sec +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,59.2,,,,,kg, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,FREE T4,Free Thyroxine-QT,,9,,,,,8 - 14,pmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,GFR,EGFR by MDRD,,69,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.44,,,,,3.8 - 10.7,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.83,,,,,1.96 - 7.23,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,4.07,,,,,0.91 - 4.28,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.21,,,,,0 - 0.57,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.0,R,L,,,40.5 - 75,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,54.7,R,H,,,15.4 - 48.5,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.8,,,,,2.6 - 10.1,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,295,,,,,140 - 400,GI/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.96,,,,,1.9 - 23,uIU/mL +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Direct HDL-C 4th Generation,,1.84,,H,,,1.03 - 1.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Triglycerides (GPO),,1.42,,,,,0.59 - 2.96,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,Cholesterol (High Performance),,5.78,,,,,4.42 - 7.53,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,LIPID PANEL,LDL Chol Friedewald 4th,,3.29,,,,,0 - 3.34,mmol/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,TSH,TSH 3rd IS-QT,,5.438,R,H SF,,,0.45 - 5.33,mIU/L +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110007,,,56,years,Female,Part 1 Screening,,"Nov 14, 2025 10:22 AM",6225351078,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,ALT (SGPT),,64,,H,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,GGT,,123,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Urea Nitrogen,,6.3,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Uric Acid,,419,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Phosphorus,,1.27,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Creatine Kinase,,141,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Bicarbonate,,21.9,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.88,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.07,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.9,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.1,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.0,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,266,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,6.45,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Triglycerides (GPO),,1.73,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,Cholesterol (High Performance),,4.62,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,LIPID PANEL,LDL Chol Friedewald 4th,,2.91,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 2 OL Induction Day 29,,"Nov 6, 2025 8:14 AM",6226991311,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,C-REACTIVE PROTEIN,C Reactive Protein HS,,5.3,,H,,,0 - 5,mg/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Alkaline Phosphatase,,101,,,,,35 - 104,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,AST (SGOT),,12,,,,,8 - 40,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,GGT,,6,,,,,4 - 49,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Uric Acid,,232,,,,,125 - 428,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Calcium (EDTA),,2.27,,,,,2.07 - 2.64,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Creatine Kinase,,59,,,,,26 - 192,U/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.50,,H,,,1.25 - 1.92,mL/sec +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,57,,,,,31 - 101,umol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.2,,,,,kg, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,GFR,EGFR by MDRD,,108,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 98,fL +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.26,,,,,3.8 - 10.7,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.66,,,,,1.96 - 7.23,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.98,,,,,0.91 - 4.28,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.1,,,,,40.5 - 75,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.4,,,,,15.4 - 48.5,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,335,,,,,140 - 400,GI/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.40,,,,,1.9 - 23,uIU/mL +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Direct HDL-C 4th Generation,,0.99,,L,,,1.03 - 1.53,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Triglycerides (GPO),,0.76,,,,,0.44 - 1.99,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,Cholesterol (High Performance),,4.01,,,,,3.65 - 6.21,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,LIPID PANEL,LDL Chol Friedewald 4th,,2.67,,,,,0 - 3.34,mmol/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,RETICULOCYTES,Reticulocyte Count %,,2.4,,,,,0.6 - 2.5,% +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,TSH,TSH 3rd IS-QT,,1.593,,,,,0.45 - 5.33,mIU/L +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MACRO PANEL,Ur Leukocyte Esterase,,+1,,H,,,Ref Rng:Negative, +CZ100110006,,,32,years,Female,Part 1 Screening,,"Nov 4, 2025 7:03 AM",6225351080,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Oxazepam (Confirmed),R,RX,,,No Ref Rng, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.2,,,,,0 - 5,mg/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,40 - 129,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,LDH,,161,,,,,53 - 234,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 110,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Glucose Fasting,,5.4,,,,,3.9 - 5.6,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Uric Acid,,344,,,,,125 - 488,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Creatine Kinase,,232,,,,,39 - 308,U/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.37,,H,,,1.42 - 2.08,mL/sec +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,83,,,,,40 - 110,umol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,89.1,,,,,kg, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Detected (unconfirmed),,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,GFR,EGFR by MDRD,,93,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,141,,,,,127 - 181,g/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.63,,,,,3.8 - 10.7,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.10,,,,,1.96 - 7.23,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.01,,,,,0.91 - 4.28,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.37,,,,,0.12 - 0.92,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.8,,,,,40.5 - 75,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,45.4,,,,,15.4 - 48.5,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,306,,,,,140 - 400,GI/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.3,,,,,<6.5%, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.63,,,,,1.9 - 23,uIU/mL +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Direct HDL-C 4th Generation,,0.95,R,L,,,1.03 - 1.53,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Triglycerides (GPO),,2.07,,,,,0.56 - 3.62,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,Cholesterol (High Performance),,5.65,,,,,3.88 - 6.83,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,LIPID PANEL,LDL Chol Friedewald 4th,,3.75,,H,,,0 - 3.34,mmol/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,TSH,TSH 3rd IS-QT,,2.249,,,,,0.45 - 5.33,mIU/L +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110005,,,33,years,Male,Part 1 Screening,,"Nov 3, 2025 9:40 AM",6225351074,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.4,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,LDH,,126,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Glucose Fasting,,5.0,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Uric Acid,,217,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.05,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.88,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.73,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.1,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.3,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,286,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.08,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Direct HDL-C 4th Generation,,1.85,R,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Triglycerides (GPO),,0.57,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,Cholesterol (High Performance),,4.35,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,LIPID PANEL,LDL Chol Friedewald 4th,,2.24,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Specific Gravity,,1.015,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 DB Baseline,,"Oct 22, 2025 8:04 AM",6225351084,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,GGT,,129,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Uric Acid,,429,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,157,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.79,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.75,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.48,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.9,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,280,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,10.32,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Direct HDL-C 4th Generation,,0.92,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Triglycerides (GPO),,1.99,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,Cholesterol (High Performance),,4.77,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,LIPID PANEL,LDL Chol Friedewald 4th,,2.94,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,TSH,TSH 3rd IS-QT,,1.125,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Specific Gravity,,1.023,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,End of Phase/Treatment,,"Oct 9, 2025 8:45 AM",6225351095,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.4,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,GGT,,16,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,LDH,,124,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Urea Nitrogen,,4.5,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Glucose Fasting,,4.3,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Uric Acid,,303,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Phosphorus,,1.03,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Bicarbonate,,23.6,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,79 - 98,fL +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.69,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.05,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.5,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.1,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.6,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,6.1,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,274,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.2,,,,,<6.5%, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.14,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Direct HDL-C 4th Generation,,1.48,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Triglycerides (GPO),,0.82,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,Cholesterol (High Performance),,3.76,,,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,LIPID PANEL,LDL Chol Friedewald 4th,,1.90,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,TSH,TSH 3rd IS-QT,,1.582,,,,,0.45 - 5.33,mIU/L +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,End of Phase/Treatment,,"Oct 8, 2025 8:16 AM",6225351094,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.4,,,,,0 - 5,mg/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,35 - 104,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,4 - 43,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,AST (SGOT),,34,,,,,8 - 40,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,GGT,,25,,,,,5 - 50,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Uric Acid,,265,,,,,149 - 446,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Total Protein,,63,,,,,60 - 80,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Creatine Kinase,,46,,,,,26 - 192,U/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Bicarbonate,,24.9,,,,,19.3 - 29.3,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.74,,,,,1.25 - 1.92,mL/sec +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.3,,,,,kg, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,GFR,EGFR by MDRD,,90,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,115 - 158,g/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.34 - 0.48, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,3.9 - 5.5,TI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,95,,,,,80 - 100,fL +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.39,R,L,,,3.8 - 10.7,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.95,R,L,,,1.96 - 7.23,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.01,,,,,0.8 - 3,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.24,,,,,0.12 - 0.92,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,57.5,,,,,40.5 - 75,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.8,,,,,15.4 - 48.5,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.8,,,,,0 - 6.8,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,169,,,,,130 - 394,GI/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.6,,,,,<6.5%, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.01,,,,,1.9 - 23,uIU/mL +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Direct HDL-C 4th Generation,,1.49,,,,,1.03 - 1.53,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.63 - 2.71,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,Cholesterol (High Performance),,4.46,R,L,,,4.86 - 8.28,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,TSH,TSH 3rd IS-QT,,2.205,,,,,0.45 - 5.33,mIU/L +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1.01 - 1.03, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110004,,,64,years,Female,Part 1 Screening,,"Oct 3, 2025 9:33 AM",6225351077,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.0,,,,,0 - 5,mg/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,35 - 104,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,4 - 43,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,LDH,,137,,,,,53 - 234,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Glucose Fasting,,4.5,,,,,3.9 - 5.6,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Phosphorus,,1.07,,,,,0.71 - 1.65,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Creatine Kinase,,123,,,,,26 - 192,U/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.59,,,,,1.25 - 1.92,mL/sec +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,68.1,,,,,kg, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,GFR,EGFR by MDRD,,73,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,125,,,,,116 - 164,g/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,,,,0.34 - 0.48, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,,,,4.1 - 5.6,TI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.30,,,,,3.8 - 10.7,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.57,,,,,0.91 - 4.28,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.1,,,,,40.5 - 75,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.6,,,,,15.4 - 48.5,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,140 - 400,GI/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.11,,,,,1.9 - 23,uIU/mL +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Direct HDL-C 4th Generation,,1.65,,H,,,1.03 - 1.53,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Triglycerides (GPO),,0.93,,,,,0.44 - 1.99,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,Cholesterol (High Performance),,4.65,,,,,3.65 - 6.21,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,TSH,TSH 3rd IS-QT,,3.025,,,,,0.45 - 5.33,mIU/L +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110003,,,35,years,Female,Part 1 Screening,,"Sep 26, 2025 9:10 AM",6225351081,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.3,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Alkaline Phosphatase,,94,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,GGT,,93,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Urea Nitrogen,,5.7,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,94,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Uric Acid,,427,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Phosphorus,,1.18,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Creatine Kinase,,89,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,165,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.28,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.74,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,1.34,R,H,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,49.0,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.0,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,20.0,R,H,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,250,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Direct HDL-C 4th Generation,,0.77,,L,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Triglycerides (GPO),,1.72,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Specific Gravity,,1.018,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 DB Baseline,,"Aug 28, 2025 11:45 AM",6225351082,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,C-REACTIVE PROTEIN,C Reactive Protein HS,,2.1,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.8,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Alkaline Phosphatase,,83,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,LDH,,133,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Uric Acid,,303,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Creatine Kinase,,79,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 98,fL +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.56,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.30,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.54,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.4,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.9,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.6,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,255,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.14,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Direct HDL-C 4th Generation,,1.22,,,,,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Triglycerides (GPO),,0.56,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,Cholesterol (High Performance),,3.42,,L,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,LIPID PANEL,LDL Chol Friedewald 4th,,1.94,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,RETICULOCYTES,Reticulocyte Count %,,0.8,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Specific Gravity,,1.029,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Protein,,Trace,,H,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Blood,,Trace,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 DB Baseline,,"Aug 28, 2025 7:07 AM",6225351083,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.7,,,,,0 - 6.2,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,ALT (SGPT),,73,,H RX,,,5 - 48,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,GGT,,149,,H,,,10 - 61,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Uric Acid,,469,,,,,125 - 488,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.07 - 2.64,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Total Protein,,80,,,,,61 - 84,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Albumin-BCG,,50,,H,,,33 - 49,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Creatine Kinase,,138,,,,,39 - 308,U/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.14,,H,,,1.42 - 2.08,mL/sec +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,93.8,,,,,kg, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,GFR,EGFR by MDRD,,76,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,169,,,,,127 - 181,g/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.17,,,,,3.8 - 10.7,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.44,,,,,1.96 - 7.23,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.28,,,,,0.91 - 4.28,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.7,,,,,15.4 - 48.5,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,259,,,,,140 - 400,GI/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.8,,,,,<6.5%, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,7.13,,,,,1.9 - 23,uIU/mL +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Direct HDL-C 4th Generation,,0.96,,L,,,1.03 - 1.53,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Triglycerides (GPO),,2.37,,,,,0.5 - 2.81,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,Cholesterol (High Performance),,5.50,,,,,3.31 - 6.1,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,LIPID PANEL,LDL Chol Friedewald 4th,,3.45,,H,,,0 - 3.34,mmol/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,TSH,TSH 3rd IS-QT,,2.030,,,,,0.45 - 5.33,mIU/L +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110002,,,25,years,Male,Part 1 Screening,,"Aug 6, 2025 9:40 AM",6225351072,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.4,,,,,0 - 5,mg/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,35 - 104,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,4 - 43,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,AST (SGOT),,12,,,,,8 - 40,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,GGT,,14,,,,,4 - 49,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,LDH,,127,,,,,53 - 234,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,125 - 428,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Creatine Kinase,,88,,,,,26 - 192,U/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.33,,H,,,1.25 - 1.92,mL/sec +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,65,,,,,31 - 101,umol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,79.2,,,,,kg, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,FSH,Follicle Stimulating Hormone,,3.55,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,GFR,EGFR by MDRD,,92,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,,116 - 164,g/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Beyond stability,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Beyond stability,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.62,,,,,3.8 - 10.7,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.19,,,,,1.96 - 7.23,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.85,,,,,0.91 - 4.28,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,56.7,,,,,40.5 - 75,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.0,,,,,15.4 - 48.5,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,253,,,,,140 - 400,GI/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.1,,,,,<6.5%, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.61,,,,,1.9 - 23,uIU/mL +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Triglycerides (GPO),,0.46,,,,,0.44 - 1.99,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,Cholesterol (High Performance),,3.59,R,L,,,3.65 - 6.21,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,LIPID PANEL,LDL Chol Friedewald 4th,,2.15,,,,,0 - 3.34,mmol/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,TSH,TSH 3rd IS-QT,,1.803,,,,,0.45 - 5.33,mIU/L +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Specific Gravity,,1.024,,,,,1 - 1.04, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100110001,,,31,years,Female,Part 1 Screening,,"Aug 3, 2025 9:05 AM",6225351076,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/2026-06-01_123005 sponsor-study-35472-test-results-898744-standard.csv b/Covance_UCO3001/Source/2026-06-01_123005 sponsor-study-35472-test-results-898744-standard.csv new file mode 100644 index 0000000..1cacad6 --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_123005 sponsor-study-35472-test-results-898744-standard.csv @@ -0,0 +1,200 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,AST (SGOT),,63,R,H RX,,,8 - 40,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,GGT,,143,R,H,,,10 - 50,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,LDH,,148,,,,,53 - 234,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Urea Nitrogen,,8.4,,,,,1.4 - 8.6,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Glucose Fasting,,8.5,R,H RX,,,3.9 - 5.6,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Uric Acid,,397,,,,,149 - 494,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Protein,,81,R,H,,,60 - 80,g/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatine Kinase,,54,,,,,39 - 308,U/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.85,,,,,1.42 - 2.08,mL/sec +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,106.6,,,,,kg, +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.7,R,H RX,,,<6.5%, +CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,C-REACTIVE PROTEIN,C Reactive Protein HS,,11.9,,H,,,0 - 5,mg/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CASTS,Ur Hyaline Casts/LPF,,96,,,,,0 /LPF, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,H,,,0 - 3,/HPF +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,AST (SGOT),,72,,H RX,,,8 - 40,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,GGT,,264,,HT,,Result verified by repeat analysis,10 - 50,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Urea Nitrogen,,7.3,,,,,1.4 - 8.6,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Glucose Fasting,,8.3,,H,,,3.9 - 5.6,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Uric Acid,,497,,H,,,149 - 494,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Protein,,84,,H,,,60 - 80,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatine Kinase,,37,,L,,,39 - 308,U/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Chloride,,94,,,,,94 - 112,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.60,,,,,1.42 - 2.08,mL/sec +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,108.0,,,,,kg, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DIRECT LDL,Direct LDL-C 3rd Gen,,3.83,R,H,,,<3.36 mmol/L, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,GFR,EGFR by MDRD,,60,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,125 - 170,g/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.37 - 0.51, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4 - 5.8,TI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.32,,,,,3.8 - 10.7,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.59,,,,,1.96 - 7.23,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.36,,,,,0.8 - 3,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.06,,H,,,0.12 - 0.92,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,22.9,,,,,15.4 - 48.5,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.3,,H,,,2.6 - 10.1,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,311,,,,,130 - 394,GI/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.9,,H RX,,,<6.5%, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,12.96,,,,,1.9 - 23,uIU/mL +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Direct HDL-C 4th Generation,,0.81,,L,,,1.03 - 1.53,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Triglycerides (GPO),,5.76,,H SF,,,0.65 - 2.94,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Cholesterol (High Performance),,6.27,,,,,4.53 - 7.71,mmol/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,LDL Chol Friedewald 4th,,,,,Test cancelled: Invalid/High Triglycerides,,, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,RETICULOCYTES,Reticulocyte Count %,,4.6,,H,,,0.6 - 2.5,% +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,TSH,TSH 3rd IS-QT,,3.611,,,,,0.45 - 5.33,mIU/L +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Specific Gravity,,1.034,,H,,,1.01 - 1.03, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Protein,,+1,,H,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Glucose,,+1,,H,,,Ref Rng:Normal, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Urobilinogen,,+1,,H,,,Ref Rng:Normal, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,GGT,,32,,,,,5 - 50,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Glucose Fasting,,9.7,,H RX,,,3.9 - 5.6,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Uric Acid,,289,,,,,149 - 446,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Protein,,66,,,,,60 - 80,g/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg, +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.8,,H,,,<6.5%, +CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.9,,,,,0 - 5,mg/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,GGT,,31,,,,,5 - 50,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,LDH,,192,,,,,53 - 234,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Glucose Fasting,,9.2,,H RX,,,3.9 - 5.6,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Uric Acid,,325,,,,,149 - 446,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Protein,,67,,,,,60 - 80,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Bicarbonate,,20.8,,,,,19.3 - 29.3,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,GFR,EGFR by MDRD,,64,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,115 - 158,g/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,3.9 - 5.5,TI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,80 - 100,fL +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.78,,H,,,3.8 - 10.7,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.25,,,,,1.96 - 7.23,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.50,,H,,,0.8 - 3,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.0,,,,,40.5 - 75,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.5,,,,,15.4 - 48.5,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,284,,,,,130 - 394,GI/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.7,,H,,,<6.5%, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.50,,,,,1.9 - 23,uIU/mL +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Direct HDL-C 4th Generation,,1.94,,H,,,1.03 - 1.53,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.63 - 2.71,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Cholesterol (High Performance),,4.53,,L,,,4.86 - 8.28,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,LDL Chol Friedewald 4th,,1.99,,,,,0 - 3.34,mmol/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,% +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,TSH,TSH 3rd IS-QT,,1.354,,,,,0.45 - 5.33,mIU/L +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1.01 - 1.03, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative, +CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE diff --git a/Covance_UCO3001/Source/2026-06-01_123027 sponsor-study-35472-test-results-898727-standard.csv b/Covance_UCO3001/Source/2026-06-01_123027 sponsor-study-35472-test-results-898727-standard.csv new file mode 100644 index 0000000..e17118e --- /dev/null +++ b/Covance_UCO3001/Source/2026-06-01_123027 sponsor-study-35472-test-results-898727-standard.csv @@ -0,0 +1,994 @@ +"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,, +Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,,,,0 - 8,/HPF +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,GGT,,22,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,LDH,,162,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Glucose Fasting,,4.0,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Protein,,64,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,Result verified by repeat analysis,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.8,,L,,Result verified by repeat analysis,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.80,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.34,,,,Result verified by repeat analysis,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.8,,,,Result verified by repeat analysis,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.3,,,,Result verified by repeat analysis,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,Result verified by repeat analysis,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 2,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,459,,H,,Result verified by repeat analysis,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,25.80,,H,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Triglycerides (GPO),,1.49,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Cholesterol (High Performance),,4.00,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Uric Acid,,285,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.52,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.31,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.9,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,174,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.95,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Direct HDL-C 4th Generation,,1.39,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Triglycerides (GPO),,0.75,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Cholesterol (High Performance),,3.90,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.11,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.82,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.8,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.1,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,466,R,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,9.83,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Direct HDL-C 4th Generation,,1.06,,,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Triglycerides (GPO),,1.56,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Cholesterol (High Performance),,4.33,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,LDL Chol Friedewald 4th,,2.56,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,TSH,TSH 3rd IS-QT,,0.806,,,,,0.45 - 5.33,mIU/L +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,ALT (SGPT),,39,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Glucose Fasting,,5.5,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Uric Acid,,330,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.94,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.55,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,19.10,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Direct HDL-C 4th Generation,,1.09,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Triglycerides (GPO),,1.96,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Cholesterol (High Performance),,3.72,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,LDL Chol Friedewald 4th,,1.73,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,TSH,TSH 3rd IS-QT,,1.089,,,,,0.45 - 5.33,mIU/L +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,C-REACTIVE PROTEIN,C Reactive Protein HS,,9.2,,H,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Bilirubin,,16,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,GGT,,79,R,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,LDH,,103,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Urea Nitrogen,,2.3,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Uric Acid,,427,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Chloride,,97,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.04,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.60,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.3,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.4,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,366,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,R,"Mar 6, 2026 2:00 PM",6226560891,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.55,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Triglycerides (GPO),,1.94,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Cholesterol (High Performance),,4.72,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,LDL Chol Friedewald 4th,,2.60,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,TSH,TSH 3rd IS-QT,,0.976,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatine Kinase,,42,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Bicarbonate,,24.2,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.67,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.77,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.2,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.3,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,453,,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.65,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Direct HDL-C 4th Generation,,1.00,,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Triglycerides (GPO),,1.31,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Cholesterol (High Performance),,4.11,,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,LDH,,133,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Uric Acid,,244,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Protein,,63,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatine Kinase,,139,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.41,,L,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.63,,L,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.9,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.7,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,160,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.99,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Triglycerides (GPO),,0.52,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Cholesterol (High Performance),,3.73,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,GGT,,11,,,,,10 - 61,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,LDH,,131,,,,,53 - 234,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Urea Nitrogen,,5.8,,,,,1.4 - 8.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Uric Acid,,300,,,,,125 - 488,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Protein,,62,,,,,61 - 84,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatine Kinase,,120,,,,,39 - 308,U/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.28,,H,,,1.42 - 2.08,mL/sec +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.0,,,,,kg, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,GFR,EGFR by MDRD,,107,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.30,,,,,3.8 - 10.7,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.90,,,,,1.96 - 7.23,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.7,,,,,40.5 - 75,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.3,,,,,15.4 - 48.5,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.6,,H,,,0 - 2,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.9,,,,,<6.5 %, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.16,,,,,1.9 - 23,uIU/mL +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Direct HDL-C 4th Generation,,1.43,,,,,1.03 - 1.53,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Triglycerides (GPO),,0.61,,,,,0.5 - 2.81,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Cholesterol (High Performance),,3.71,,,,,3.31 - 6.1,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,TSH,TSH 3rd IS-QT,,1.462,,,,,0.45 - 5.33,mIU/L +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Temazepam (Confirmed),,RX,,,No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Oxazepam (Confirmed),,RX,,,No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Uric Acid,,247,,,,,149 - 446,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatine Kinase,,44,,,,,26 - 192,U/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.25,,,,,1.25 - 1.92,mL/sec +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,74.0,,,,,kg, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Detected (unconfirmed),,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FSH,Follicle Stimulating Hormone,,55.96,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,GFR,EGFR by MDRD,,65,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,,115 - 158,g/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,,,,3.9 - 5.5,TI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.94,,,,,3.8 - 10.7,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.50,,,,,1.96 - 7.23,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.91,,,,,0.8 - 3,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.8,,,,,40.5 - 75,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.5,,,,,15.4 - 48.5,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,448,R,H,,,130 - 394,GI/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.62,,,,,1.9 - 23,uIU/mL +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Direct HDL-C 4th Generation,,1.02,R,L,,,1.03 - 1.53,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Triglycerides (GPO),,1.44,,,,,0.63 - 2.71,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Cholesterol (High Performance),,4.25,R,L,,,4.86 - 8.28,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,% +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,TSH,TSH 3rd IS-QT,,0.834,,,,,0.45 - 5.33,mIU/L +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Specific Gravity,,1.007,,,,,1.01 - 1.03, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.8,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,ALT (SGPT),,41,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,GGT,,81,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,LDH,,92,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Uric Acid,,412,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Phosphorus,,0.94,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatine Kinase,,148,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.61,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.00,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.5,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,322,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,63.81,,H,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Triglycerides (GPO),,2.66,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Cholesterol (High Performance),,4.84,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,LDL Chol Friedewald 4th,,2.49,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.0,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,GGT,,70,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,LDH,,89,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Urea Nitrogen,,3.1,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Glucose Fasting,,6.6,R,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Bicarbonate,,26.3,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.86,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.10,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.2,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.3,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,374,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,196.11,,H,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Triglycerides (GPO),,2.92,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,TSH,TSH 3rd IS-QT,,0.889,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,ALT (SGPT),,34,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,GGT,,69,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,LDH,,98,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Uric Acid,,520,R,H,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatine Kinase,,126,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.43,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.49,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.20,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.4,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.2,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,288,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.24,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Direct HDL-C 4th Generation,,1.15,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Triglycerides (GPO),,1.64,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Cholesterol (High Performance),,4.19,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,LDL Chol Friedewald 4th,,2.29,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,GGT,,62,,H,,,10 - 61,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Uric Acid,,472,,,,,125 - 488,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatine Kinase,,132,,,,,39 - 308,U/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.53,,H,,,1.42 - 2.08,mL/sec +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,130.2,,,,,kg, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,GFR,EGFR by MDRD,,98,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.89,,,,,3.8 - 10.7,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.47,,,,,1.96 - 7.23,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.93,,,,,0.91 - 4.28,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.7,,,,,15.4 - 48.5,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,369,,,,,140 - 400,GI/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.15,,,,,1.9 - 23,uIU/mL +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Triglycerides (GPO),,1.40,,,,,0.56 - 3.62,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Cholesterol (High Performance),,4.07,,,,,3.88 - 6.83,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,LDL Chol Friedewald 4th,,2.19,,,,,0 - 3.34,mmol/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,% +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,TSH,TSH 3rd IS-QT,,1.099,,,,,0.45 - 5.33,mIU/L +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,4 - 43,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,GGT,,44,,,,,4 - 49,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,LDH,,220,,,,,53 - 234,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Uric Acid,,295,,,,,125 - 428,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatine Kinase,,92,,,,,26 - 192,U/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.78,,H,,,1.25 - 1.92,mL/sec +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,105.0,,,,,kg, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,GFR,EGFR by MDRD,,114,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.91,,,,,3.8 - 10.7,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.15,,,,,1.96 - 7.23,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.3,,,,,40.5 - 75,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.1,,,,,0 - 2,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,241,,,,,140 - 400,GI/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.9,,,,,<6.5%, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.68,,,,,1.9 - 23,uIU/mL +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Triglycerides (GPO),,1.78,R,H,,,0.41 - 1.63,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Cholesterol (High Performance),,5.53,,,,,3.31 - 5.64,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,LDL Chol Friedewald 4th,,3.48,,H,,,0 - 3.34,mmol/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,% +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,TSH,TSH 3rd IS-QT,,2.503,,,,,0.45 - 5.33,mIU/L +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,35 - 104,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,4 - 43,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,GGT,,<4,,L,,Result verified by repeat analysis,4 - 49,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Uric Acid,,193,,,,,125 - 428,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatine Kinase,,75,,,,,26 - 192,U/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.06,,H,,,1.25 - 1.92,mL/sec +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,65.8,,,,,kg, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,GFR,EGFR by MDRD,,105,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.06,,,,,3.8 - 10.7,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.38,,,,,1.96 - 7.23,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.11,,,,,0.91 - 4.28,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.7,,,,,40.5 - 75,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.9,,,,,15.4 - 48.5,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.9,,,,,0 - 6.8,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,182,,,,,140 - 400,GI/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.0,,,,,<6.5%, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Direct HDL-C 4th Generation,,1.77,R,H,,,1.03 - 1.53,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Triglycerides (GPO),,0.71,,,,,0.44 - 1.99,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Cholesterol (High Performance),,5.82,,,,,3.65 - 6.21,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,LDL Chol Friedewald 4th,,3.72,,H,,,0 - 3.34,mmol/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,% +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,TSH,TSH 3rd IS-QT,,1.847,,,,,0.45 - 5.33,mIU/L +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.6,,,,,0 - 5,mg/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,GGT,,79,R,H,,,4 - 49,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Uric Acid,,405,,,,,149 - 446,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,26 - 192,U/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.33,,,,,1.25 - 1.92,mL/sec +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,83.8,,,,,kg, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FSH,Follicle Stimulating Hormone,,32.96,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,GFR,EGFR by MDRD,,54,,,,,mL/min/1.73m^2$No Ref Rng, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,117,,,,,116 - 164,g/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.35,,,,,0.34 - 0.48, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 98,fL +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.93,,,,,3.8 - 10.7,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.05,,,,,1.96 - 7.23,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.25,,,,,0 - 0.57,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.3,,,,,40.5 - 75,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.2,,,,,15.4 - 48.5,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.8,,,,,2.6 - 10.1,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.2,,,,,0 - 6.8,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,157,,,,,140 - 400,GI/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.5,,H,,,<6.5%, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,27.42,,H,,,1.9 - 23,uIU/mL +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Direct HDL-C 4th Generation,,0.82,R,L,,,1.03 - 1.53,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Triglycerides (GPO),,2.78,,,,,0.59 - 2.96,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Cholesterol (High Performance),,5.73,,,,,4.42 - 7.53,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,LDL Chol Friedewald 4th,,3.64,,H,,,0 - 3.34,mmol/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,% +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,TSH,TSH 3rd IS-QT,,1.091,,,,,0.45 - 5.33,mIU/L +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative, +CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-28_080303 sponsor-study-36940-samples-allSamples.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-28_080303 sponsor-study-36940-samples-allSamples.csv new file mode 100644 index 0000000..0bf7be2 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-28_080303 sponsor-study-36940-samples-allSamples.csv @@ -0,0 +1,1370 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Parent Barcode,Children Barcode +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,31,622732323331,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,5,622732324405,,Cancelled,,,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,6,622732324406,,Cancelled,,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,1,622861056401,"Stool, ova & parasites(form)",Not Received,Ambient,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,3,622861056403,"Culture, Stool",Cancelled,Ambient,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,4,622861056404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,19,622817339719,,Cancelled,,,,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,31,622769774531,,In Inventory,,Default Return Frozen,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,5,622763515905,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,5,622763519305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,5,622732328605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,5,622799398405,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,5,622732325605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,5,622817994505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,5,622850173205,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,5,622825207305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,5,622763516105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,5,622732328705,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,5,622825207205,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,5,622732322405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,5,622732322305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,5,622732335105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,5,622802395105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,5,622732325405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,5,622763522305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,5,622769773605,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,1,622732320301,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,1,622732323601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,1,622781089901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,1,622781090001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,1,622732320401,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,1,622732326601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,1,622732326801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,5,622732326605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,5,622732326805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,5,622732323605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,5,622732320405,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,5,622781090005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,5,622781089905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,5,622732320305,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,7,622732320307,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,7,622781090007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,7,622781089907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,7,622732320407,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,7,622732323607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,7,622732326807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,7,622732326607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,3,622732326603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,3,622732326803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,3,622732320403,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,3,622781089903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,3,622781090003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,3,622732320303,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,3,622732323603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,2,622732323602,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,2,622732323402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,2,622732320302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,2,622781090002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,2,622781090102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,2,622781089902,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,2,622799396202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,2,622732320402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,2,622732326602,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,2,622732326802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,2,622763517102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,2,622763520402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,2,622769771802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,2,622732329902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,2,622732333002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,2,622732333202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,2,622763513902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,2,622763514002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,2,622763514102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,4,622763514104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,4,622763514004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,4,622763513904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,4,622732333204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,4,622732333004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,4,622732329904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,4,622763520404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,4,622763517104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,4,622769771804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,4,622732326604,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,4,622732326804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,4,622732323604,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,4,622732320404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,4,622799396204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,4,622781089904,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,4,622781090104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,4,622781090004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,4,622732320304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,4,622732323404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,8,622732323408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,8,622732320308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,8,622781090108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,8,622781090008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,8,622781089908,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,8,622799396208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,8,622732320408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,8,622732323608,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,8,622732326808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,8,622732326608,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,8,622769771808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,8,622763517108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,8,622763520408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,8,622732329908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,8,622732333208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,8,622732333008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,8,622763513908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,8,622763514008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,8,622763514108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,6,622763514106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,6,622763513906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,6,622763514006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,6,622732333206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,6,622732333006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,6,622732329906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,6,622763520406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,6,622763517106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,6,622769771806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,6,622732326606,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,6,622732326806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,6,622732323606,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,6,622732320406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,6,622799396206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,6,622781089906,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,6,622781090106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,6,622781090006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,6,622732323406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,6,622732320306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,9,622732323409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,9,622732320309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,9,622781090109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,9,622781089909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,9,622781090009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,9,622799396209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,9,622732320409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,9,622732323609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,9,622732326809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,9,622732326609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,9,622769771809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,9,622763520409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,9,622763517109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,9,622732329909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,9,622732333209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,9,622732333009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,9,622763514109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,9,622763514009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,9,622763513909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,10,622763513910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,10,622763514110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,10,622763514010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,10,622732333210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,10,622732333010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,10,622732329910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,10,622763517110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,10,622763520410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,10,622769771810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,10,622732326610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,10,622732326810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,10,622732323610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,10,622732320410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,10,622799396210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,10,622781090010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,10,622781089910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,,6227323203,10,622732320310,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,10,622732323410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,11,622732320311,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,11,622781089911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,11,622781090011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,11,622732320411,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,11,622732323611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,11,622732326811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,11,622732326611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,12,622732326612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,12,622732326812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,12,622732323612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,12,622732320412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,12,622769771812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,12,622763520412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,12,622763517112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,12,622732329912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,12,622732333012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,12,622763514112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,12,622763513912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,12,622763514012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,12,622732333212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,12,622781090112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,12,622799396212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,12,622781089912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,12,622781090012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,12,622732320312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,12,622732323412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,13,622732320313,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,13,622781090013,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,13,622769771813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,13,622732320413,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,13,622732323613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,13,622732326813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,13,622732326613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,15,622732326615,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,15,622732326815,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,15,622732323615,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,15,622732320415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,15,622769771815,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,15,622763517115,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,15,622763520415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,15,622732333215,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,15,622732329915,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,15,622781089915,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,15,622781090115,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,15,622732320315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,14,622732320314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,14,622732323414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,14,622781090114,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,14,622799396214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,14,622781089914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,14,622732329914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,14,622732333014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,14,622732333214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,14,622763514014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,14,622763513914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,14,622763514114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,14,622763520414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,14,622763517114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,14,622769771814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,14,622732320414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,14,622732323614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,14,622732326814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,14,622732326614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,2,622732324402,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,18-Mar-2026,6227323243,2,622732324302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,2,622732324502,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,2,622732321102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,2,622732321202,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,2,622732321302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,2,622769772502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,2,622763518202,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,2,622763515002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,2,622763514902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,2,622763514802,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,2,622763521302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,2,622732334002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,2,622732334102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,2,622732330902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,2,622732327602,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,2,622732327702,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,2,622781090402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,2,622781090502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,2,622799397102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,2,622813735902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,2,622819434102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,07-May-2026,6228610564,2,622861056402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,4,622819434104,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,4,622799397104,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,4,622813735904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,4,622781090504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,4,622781090404,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,4,622769772504,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,4,622732327704,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,4,622732327604,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,4,622732330904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,4,622732334004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,4,622732334104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,4,622763521304,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,4,622763515004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,4,622763514804,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,4,622763514904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,4,622763518204,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,4,622732321104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,4,622732321204,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,4,622732321304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,4,622732324504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,4,622732324404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,4,622732324304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,3,622732324303,"Culture, Stool",Cancelled,Ambient,,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,12-Mar-2026,6227323245,3,622732324503,"Culture, Stool",Received,Ambient,Default Return Frozen,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,3,622732324403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,3,622732321203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,3,622732321303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,3,622732321103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,25-Apr-2026,6227635182,3,622763518203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,3,622763514903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,3,622763515003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,3,622763514803,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,3,622763521303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,3,622732334003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,3,622732334103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,3,622732330903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,3,622732327603,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,3,622732327703,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,3,622769772503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,3,622781090403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,3,622781090503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,3,622813735903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,3,622799397103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,3,622819434103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,1,622799397101,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,1,622813735901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,1,622781090401,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,1,622781090501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,1,622819434101,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,1,622732327601,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,1,622732327701,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,1,622732330901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,1,622732334001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,1,622732334101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,1,622763521301,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,1,622763514801,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,1,622763514901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,1,622763515001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,1,622763518201,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,1,622769772501,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,1,622732321101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,1,622732321301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,1,622732321201,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,1,622732324501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,1,622732324401,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,1,622732324301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,5,622732325205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,5,622732325305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,5,622732334805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,3,622732334803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,3,622732325303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,3,622732325203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,7,622732325207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,7,622732325307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,7,622732334807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,1,622732334801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,1,622732325301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,1,622732325201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,2,622732325202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,2,622732325302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,2,622732334802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,6,622732334806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,6,622732325306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,6,622732325206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,4,622732325204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,4,622732325304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,4,622732334804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,8,622732334808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,8,622732325308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,8,622732325208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,1,622793314201,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,1,622732321001,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,1,622763521101,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,2,622763521102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,16,622732327416,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,16,622732324216,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,16,622793314216,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,16,622763521116,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,16,622769772316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,16,622763514616,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,16,622732321016,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,6,622732324006,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,6,622732327206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,6,622763514406,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,6,622732320706,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,6,622732320806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,6,622769772206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,6,622732333506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,2,622769772302,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,2,622763514602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,2,622732321002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,2,622732324202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,2,622732327402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,2,622793314202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,3,622793314203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,3,622732327403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,3,622732324203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,3,622732321003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,3,622763514603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,3,622769772303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,3,622763521103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,4,622763521104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,4,622763514604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,4,622769772304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,4,622732327404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,4,622732321004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,4,622732324204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,4,622793314204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,5,622793314205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,5,622732324205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,5,622732321005,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,5,622732327405,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,5,622769772305,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,5,622763521105,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,5,622763514605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,11,622793314211,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,11,622732321011,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,1,622732320701,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,1,622732320801,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,1,622763520801,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,1,622763514401,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,13,622732321013,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,13,622793314213,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,1,622803655401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,1,622799396601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,1,622732323701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,1,622732323801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,1,622732327001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,1,622732320501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,1,622769771901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,1,622763520701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,1,622763514201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,1,622732333401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,2,622732333402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,2,622763514202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,2,622763520702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,2,622769771902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,2,622732320502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,2,622732327002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,2,622732323802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,2,622732323702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,2,622799396602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,2,622803655402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,15,622793314215,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,15,622732321015,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,3,622732320803,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,3,622763520803,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,3,622769771903,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,3,622732320503,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,3,622732323803,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,3,622803655403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,5,622732320705,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,5,622732320805,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,8,622763521108,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,8,622769772308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,8,622732327408,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,8,622732321008,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,8,622732324208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,8,622763514608,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,8,622793314208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,10,622763514410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,10,622732333510,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,10,622732320710,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,10,622732320810,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,10,622732324010,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,10,622732327210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,10,622763520810,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,10,622769772210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,7,622793314307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,3,622732328603,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,3,622732328703,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,3,622763515903,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,3,622763519303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,3,622763516103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,3,622732325403,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,3,622732325603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,3,622763522303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,3,622732335103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,3,622732322303,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,3,622732322403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,3,622802395103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,3,622799398403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,5,622763520805,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,18,622793314218,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,18,622732321018,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,5,622803655405,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,5,622769771905,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,5,622732320505,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,7,622803655407,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,7,622732320507,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,7,622769771907,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,10,622803655410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,10,622732323710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,10,622732327010,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,10,622732320510,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,10,622763520710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,10,622732323810,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,10,622769771910,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,10,622763514210,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,10,622732333410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,10,622799396610,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,10,622732320610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,14,622732320714,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,14,622732320814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,14,622732324014,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,14,622732327214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,14,622732333514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,14,622763514414,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,14,622763520814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,14,622769772214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,13,622769772213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,13,622763520813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,13,622763514413,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,13,622732333513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,13,622732327213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,13,622732324013,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,13,622732320813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,13,622732320713,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,16,622732320816,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,16,622732320716,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,16,622763514416,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,16,622763520816,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,12,622769771912,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,12,622732320512,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,12,622803655412,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,15,622732320715,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,15,622732320815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,15,622732324015,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,15,622732327215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,15,622769772215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,15,622763520815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,15,622763514415,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,15,622732333515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,17,622769772217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,17,622763520817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,17,622763514417,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,17,622732333517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,17,622732320817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,17,622732320717,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,17,622732324017,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,17,622732327217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,16,622732320616,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,16,622732320516,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,16,622732333416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,16,622763514216,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,16,622763520716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,16,622769771916,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,16,622799396616,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,16,622803655416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,16,622732327016,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,16,622732323816,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,16,622732323716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,17,622803655417,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,17,622769771917,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,17,622732320517,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,18,622732320518,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,18,622769771918,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,18,622763520718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,18,622763514218,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,18,622732333418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,18,622803655418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,18,622799396618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,18,622732323718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,06-May-2026,6227323355,2,622732335502,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,20-May-2026,6227993987,2,622799398702,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,12,622732327412,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,12,622732324212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,12,622732321012,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,12,622763514612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,12,622763521112,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,12,622769772312,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,12,622793314212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,2,622763520802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,2,622732320702,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,2,622732333502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,2,622769772202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,2,622732327202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,18,622732323818,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,18,622732327018,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,2,622793314302,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,1,622793314301,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,4,622793314304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,3,622793314303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,10,622793314310,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,12,622793314312,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,14,622793314314,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,17,622793314317,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,22,622793314322,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,EXPEDITED FRZN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,23,622793314323,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,2,622732326402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,2,622732326502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,4,622732323204,"Serum, SST",Cancelled,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323295,4,622732329504,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,7,622793314207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,7,622763514607,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,7,622732324207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,7,622732321007,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,7,622732327407,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,7,622769772307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,7,622763521107,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,17,622793314217,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,17,622769772317,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,17,622763514617,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,17,622763521117,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,17,622732324217,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,17,622732327417,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,17,622732321017,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,7,622732333507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,2,622732324002,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,2,622763514402,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,2,622732320802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,4,622763520704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,4,622769771904,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,4,622763514204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,4,622732323804,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,4,622732320504,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,4,622732327004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,4,622732323704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,4,622732333404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,4,622803655404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,4,622799396604,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,4,622732320604,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323297,4,622732329704,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,1,622732326501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,1,622732326401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,8,622732323208,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,23-Apr-2026,6227323231,8,622732323108,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,7,622732323407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,7,622732333007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,7,622732333207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,7,622732329907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,7,622763514007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,7,622763514107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,7,622763513907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,7,622763517107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,7,622763520407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,7,622769771807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,7,622781090107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,7,622799396207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,7,622811461007,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,4,622811461004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,1,622811461001,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,1,622781090101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,1,622799396201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,1,622763520401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,1,622763517101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,1,622769771801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,1,622763514001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,1,622763514101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,1,622763513901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,1,622732329901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,1,622732333201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,1,622732333001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,1,622732323401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,3,622732323403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,3,622732333003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,3,622732333203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,3,622732329903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,3,622763513903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,3,622763514003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,3,622763514103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,3,622769771803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,3,622763517103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,3,622763520403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,3,622799396203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,3,622781090103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,3,622811461003,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,5,622811461005,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,5,622799396205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,5,622781090105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,5,622763520405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,5,622763517105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,5,622769771805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,5,622763513905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,5,622763514105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,5,622763514005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,5,622732329905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,5,622732333205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,5,622732333005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,5,622732323405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,9,622811461009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,6,622811461006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,2,622811461002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,8,622811461008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,2,622817993602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,4,622817993604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,11,622811461011,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,11,622781090111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,7,622769772207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,7,622732320807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,7,622732324007,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,7,622732320707,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,7,622732327207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,7,622763514407,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,7,622763520807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,21,622763521121,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,21,622769772321,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,21,622763514621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,21,622732324221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,21,622732321021,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,21,622732327421,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,21,622793314221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,11,622799396211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,11,622732323411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,11,622732333011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,11,622732333211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,11,622732329911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,11,622763513911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,11,622763514011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,11,622763514111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,11,622763517111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,11,622763520411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,11,622769771811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,14,622781090014,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,14,622811461014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,5,622817993605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,,6228114610,15,622811461015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,15,622781090015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,15,622799396215,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,19,622732321019,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,19,622732327419,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,19,622793314219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,19,622763521119,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,19,622769772319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,19,622763514619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,19,622732324219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,13,622732320613,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,13,622732323813,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,13,622763514213,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,13,622769771913,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,13,622763520713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,13,622732320513,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,13,622732333413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,9,622769771909,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,9,622763520709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,9,622732323709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,9,622732327009,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,9,622732320509,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,9,622763514209,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,9,622732323809,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,9,622799396609,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,9,622803655409,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,9,622732333409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,9,622732320609,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,9,622732320809,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,9,622732320709,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,9,622732327209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,15,622763513915,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,15,622763514015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,15,622763514115,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,15,622732333015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,15,622732323415,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,3,622817993603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,10,622811461010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,10,622781090110,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,1,622817993601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,1,622732324201,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,1,622732327401,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,1,622769772301,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,1,622763514601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,12,622811461012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,13,622811461013,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,13,622781089913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,13,622799396213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,9,622732324009,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,9,622732333509,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,9,622763514409,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,9,622769772209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,9,622763520809,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,15,622732320615,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,15,622803655415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,15,622732327015,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,15,622732323715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,15,622732333415,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,15,622763520715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,15,622799396615,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,15,622732320515,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,15,622732323815,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,13,622781090113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,13,622763520413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,13,622763517113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,13,622732333013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,13,622732329913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,13,622763514113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,13,622763514013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,13,622763513913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,13,622732333213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,13,622732323413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,13,622817993613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,13,622732324213,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,13,622732327413,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,13,622763514613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,13,622763521113,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,13,622769772313,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,11,622769772311,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,11,622763521111,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,11,622763514611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,11,622732327411,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,11,622732324211,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,11,622817993611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,15,622817993615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,15,622732324215,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,15,622732327415,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,15,622763514615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,15,622763521115,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,15,622769772315,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,18,622817993618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,18,622769772318,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,18,622763521118,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,18,622763514618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,18,622732327418,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,18,622732324218,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,3,622817993203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,3,622839811503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,3,622732324003,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,3,622732327203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,3,622732320703,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,3,622732333503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,3,622763514403,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,3,622769772203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,1,622817993201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,1,622839811501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,1,622769772201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,1,622732333501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,1,622732327201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,1,622732324001,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,15,622839811515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,15,622817993215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,16,622839811516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,16,622817993216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,16,622732324016,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,16,622732327216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,16,622732333516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,16,622769772216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,5,622769772205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,5,622732333505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,5,622763514405,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,5,622732327205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,5,622732324005,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,5,622817993205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,5,622839811505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,13,622839811513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,13,622817993213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,17,622839811517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,17,622817993217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,14,622839811514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,14,622817993214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,3,622817339703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,3,622799396603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,15,622769771915,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,15,622763514215,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,6,622793314306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,16,622793314316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,20,622793314320,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,1,622732328701,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,1,622732328601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,1,622763516101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,1,622763522301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,1,622763515901,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,1,622732335101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,1,622763519301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,1,622732325401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,1,622732325601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,3,622830822403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,3,622732323703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,3,622732327003,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,3,622732320603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,3,622763514203,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,3,622732333403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,3,622763520703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,2,622817339702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,2,622830822402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,2,622732320602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,7,622732320607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,7,622732327007,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,7,622732323707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,7,622732323807,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,7,622763520707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,7,622732333407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,7,622763514207,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,7,622830822407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,1,622732322301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,1,622732322401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,1,622769773601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,1,622802395101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,1,622799398401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,2,622769773602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,2,622763516102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,2,622763519302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,2,622763515902,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,2,622732328702,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,2,622732328602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,2,622799398402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,2,622802395102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,2,622732335102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,9,622732327409,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,9,622763521109,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,9,622769772309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,9,622732321009,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,9,622732324209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,9,622763514609,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,9,622793314209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,14,622732321014,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,14,622732324214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,14,622732327414,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,14,622763521114,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,14,622769772314,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,14,622763514614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,14,622793314214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,4,622769772204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,4,622732333504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,4,622763514404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,4,622763520804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,4,622732327204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,4,622732324004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,4,622732320804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,4,622732320704,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,6,622732320606,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,6,622732320506,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,6,622732323706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,6,622732327006,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,6,622763520706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,6,622732323806,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,6,622763514206,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,6,622769771906,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,6,622732333406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,6,622803655406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,6,622799396606,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,11,622763520811,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,11,622769772211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,11,622763514411,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,11,622732333511,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,11,622732324011,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,11,622732327211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,11,622732320711,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,11,622732320811,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,8,622793314308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,13,622793314313,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMAPK I-12 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,DNA,09-Apr-2026,09-Apr-2026,6227635218,1,622763521801,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,DNA,26-Mar-2026,26-Mar-2026,6227635156,1,622763515601,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,DNA,19-Mar-2026,19-Mar-2026,6227323219,1,622732321901,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,DNA,20-Feb-2026,20-Feb-2026,6227323217,1,622732321701,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,DNA,21-Mar-2026,21-Mar-2026,6227323251,1,622732325101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,DNA,06-May-2026,06-May-2026,6227323346,1,622732334601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,DNA,27-May-2026,27-May-2026,6227635155,1,622763515501,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,DNA,10-Mar-2026,10-Mar-2026,6227323283,1,622732328301,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,DNA,10-Apr-2026,10-Apr-2026,6228179942,1,622817994201,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,DNA,08-Apr-2026,08-Apr-2026,6227697731,1,622769773101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,DNA,20-May-2026,20-May-2026,6227993977,1,622799397701,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,6,622817993606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,14,622817993614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,9,622817993609,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,4,622817993204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,4,622839811504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,8,622817993208,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,8,622839811508,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,11,622839811511,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,11,622817993211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,6,622817339706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,6,622830822406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,22,622769774522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,22,622732326522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,22,622732326422,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,22,622732323222,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,22,622732323122,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,22,622732323322,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,22,622732329722,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,22,622732329522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,19,622769774519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,6,622763520806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,8,622732333408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,8,622732320508,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,8,622732327008,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,8,622732323708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,8,622803655408,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,8,622732323808,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,8,622763514208,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,8,622769771908,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,8,622763520708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,8,622799396608,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,8,622732320608,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,15,622793314315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,16,622817993616,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,6,622817993206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,6,622839811506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,8,622830822408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,8,622817339708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,6,622769772306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,6,622732327406,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,6,622732321006,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,6,622732324206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,6,622793314206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,6,622763514606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,6,622763521106,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,8,622732320808,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,8,622732327208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,8,622732324008,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,8,622769772208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,8,622763520808,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,8,622763514408,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,8,622732320708,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,8,622732333508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,10,622793314210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,10,622763514610,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,10,622732327410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,10,622732321010,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,10,622732324210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,10,622769772310,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,10,622763521110,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,12,622732320812,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,12,622732320712,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,12,622763520812,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,12,622732324012,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,12,622732327212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,12,622732333512,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,12,622769772212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,12,622763514412,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,7,622799396607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,7,622817339707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,5,622830822405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,5,622817339705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,5,622799396605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,5,622763514205,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,5,622732333405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,5,622763520705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,5,622732323805,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,5,622732323705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,5,622732327005,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,5,622732320605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,1,622817339701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,1,622830822401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,1,622732320601,"Whole Blood, EDTA, Dry",Cancelled,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,16,622817339716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,16,622830822416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,20,622793314220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,20,622732321020,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,20,622732327420,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,20,622732324220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,20,622763514620,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,20,622769772320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,20,622763521120,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,14,622799396614,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,14,622803655414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,14,622732320514,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,14,622732323714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,14,622732327014,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,14,622732333414,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,14,622763520714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,11,622763520711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,11,622799396611,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,11,622803655411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,11,622732333411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,11,622732323711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,11,622732327011,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,11,622732320511,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,11,622763514211,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,11,622769771911,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,11,622732323811,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,11,622732320611,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,22,622732327422,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,22,622732321022,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,22,622732324222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,17,622830822417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,17,622817339717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,17,622799396617,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,17,622732320617,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,17,622732327017,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,17,622732323717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,17,622732323817,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,17,622763520717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,17,622732333417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,17,622763514217,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,12,622763514212,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,12,622732333412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,12,622763520712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,12,622732323812,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,12,622732323712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,12,622732327012,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,12,622732320612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,12,622799396612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,22,622769772322,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,22,622793314222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,22,622763514622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,22,622763521122,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,21,622793314321,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,9,622793314309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,10,622817993610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,22,622817993622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,12,622817993212,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,12,622839811512,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,11,622830822411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,11,622817339711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,14,622769774514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,14,622732326414,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,14,622732326514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,12,622817339712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,12,622830822412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,18,622830822418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,18,622817339718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,18,622732320618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,10,622830822410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,10,622817339710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,2,622769774502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,2,622732323302,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,2,622732323102,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,2,622732323202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,2,622732329502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,2,622732329702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,5,622732329505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,5,622732329705,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,5,622732323205,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323231,5,622732323105,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,5,622732323305,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,14,622732323114,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,14,622732323214,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,14,622732323314,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,14,622732329714,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,14,622732329514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,23,622769774523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,23,622732326523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,23,622732326423,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,23,622732323123,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,23,622732323223,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,23,622732323323,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,23,622732329723,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,23,622732329523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,5,622732326505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,5,622732326405,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,5,622769774505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,7,622769774507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,7,622732326507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,7,622732326407,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,7,622732323307,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,7,622732323107,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,7,622732323207,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,7,622732329507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,7,622732329707,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,6,622732329506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,6,622732329706,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,6,622732323206,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,6,622732323106,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,6,622732323306,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,6,622732326406,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,6,622732326506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,14,622769771914,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,14,622732323814,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,14,622763514214,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,14,622732320614,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,5,622793314305,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-12,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,19,622793314319,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,,6227323254,4,622732325404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,,6227323286,4,622732328604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,,6227323287,4,622732328704,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,,6227323223,4,622732322304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,20,622817993620,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,14,622830822414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,14,622817339714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,17,622732329517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,17,622732329717,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,6,622769774506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,8,622769774508,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,8,622732326508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,8,622732326408,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,8,622732323308,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,8,622732329508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,8,622732329708,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,9,622732329709,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,9,622732329509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,9,622732323309,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,9,622732323109,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,9,622732323209,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,9,622732326409,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,9,622732326509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,9,622769774509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,3,622769774503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,3,622732326503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,3,622732326403,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,17,622732323317,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,17,622732323217,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,17,622732323117,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,17,622732326517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,17,622732326417,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,17,622769774517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,4,622825207204,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,4,622817994504,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,4,622850173204,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,,6228252073,4,622825207304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,,6227993984,4,622799398404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,,6228023951,4,622802395104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,,6227697736,4,622769773604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,,6227323256,4,622732325604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,,6227323224,4,622732322404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,,6227323351,4,622732335104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,,6227635223,4,622763522304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,,6227635159,4,622763515904,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,,6227635161,4,622763516104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,,6227635193,4,622763519304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,3,622732323203,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,3,622732323103,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,3,622732323303,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,3,622732329503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,3,622732329703,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,4,622732323304,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,4,622732323104,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,4,622732326404,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,4,622732326504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,4,622769774504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,1,622769774501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,1,622732323101,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,1,622732323201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,1,622732323301,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,1,622732329501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,1,622732329701,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,10,622769774510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,10,622732326410,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,10,622732326510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,10,622732323110,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,10,622732323210,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,10,622732323310,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,10,622732329710,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,10,622732329510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,12,622732329512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,12,622732329712,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,12,622732323312,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,12,622732323212,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,12,622732323112,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,12,622732326512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,12,622732326412,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,12,622769774512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,15,622732329515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,15,622732329715,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,15,622732323315,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,15,622732323215,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,15,622732323115,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,15,622732326515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,15,622732326415,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,15,622769774515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,13,622732329513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,13,622732329713,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,13,622732323313,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,13,622732323213,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,13,622732323113,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,13,622732326513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,13,622732326413,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,13,622769774513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,11,622769774511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,11,622732326411,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,11,622732326511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,11,622732323111,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,11,622732323211,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,11,622732323311,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,11,622732329711,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,11,622732329511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,24,622732329524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,24,622732329724,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,24,622732323324,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,24,622732323224,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,24,622732323124,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,24,622732326424,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,24,622732326524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,24,622769774524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,27,622732329527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,27,622732329727,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,27,622732323327,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,27,622732323227,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,27,622732323127,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,27,622732326427,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,27,622732326527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,27,622769774527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,29,622732329529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,29,622732329729,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,29,622732323329,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,29,622732323229,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,29,622732323129,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,29,622732326429,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,29,622732326529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,29,622769774529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,30,622732329530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,30,622732329730,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,30,622732323330,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,30,622732323230,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,30,622732323130,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,30,622732326430,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,30,622732326530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,30,622769774530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,,6227993987,1,622799398701,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,,6227323355,1,622732335501,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,3,622769773603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,8,622817993608,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,10,622817993210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,10,622839811510,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,25,622769774525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,25,622732326525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,25,622732326425,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,25,622732323225,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,25,622732323125,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,25,622732323325,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,25,622732329725,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,25,622732329525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,21,622769774521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,21,622732326521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,21,622732326421,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,21,622732323121,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,21,622732323221,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,21,622732323321,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,21,622732329721,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,21,622732329521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,3,622850173203,"Biopsy, Frozen Tissue",Not Received,Frozen,,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,3,622825207303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,3,622825207203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,3,622817994503,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,13,622732327013,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,13,622732323713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,13,622799396613,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,13,622803655413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,11,622793314311,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-12TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,18,622793314318,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,12,622817993612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,19,622817993619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,2,622817993202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,2,622839811502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,4,622830822404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,4,622817339704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,13,622830822413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,13,622817339713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,16,622732329516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,16,622732329716,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,16,622732323316,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,16,622732323216,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,16,622732323116,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,16,622732326516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,16,622732326416,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,16,622769774516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,2,622732325602,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,2,622763522302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,2,622732325402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,2,622732322402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,2,622732322302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,7,622817993607,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,21,622817993621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,17,622817993617,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,7,622817993207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,7,622839811507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,9,622839811509,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,9,622817993209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,9,622817339709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,9,622830822409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,15,622817339715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,15,622830822415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,18,622769774518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,18,622732326418,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,18,622732326518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,18,622732323118,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,18,622732323218,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,18,622732323318,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,18,622732329718,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,18,622732329518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,20,622732329520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,20,622732329720,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,20,622732323320,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,20,622732323220,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,20,622732323120,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,20,622732326520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,20,622732326420,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,20,622769774520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,26,622732329526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,26,622732329726,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,26,622732323326,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,26,622732323126,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,26,622732323226,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,26,622732326426,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,26,622732326526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,26,622769774526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,2,622850173202,Biopsy RNA Later,Not Received,Frozen,,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,2,622817994502,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,2,622825207202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,2,622825207302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,1,622825207201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,1,622825207301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,1,622817994501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,1,622850173201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,19,622732326519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,19,622732326419,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,19,622732323219,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,19,622732323119,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,19,622732323319,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,19,622732329719,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,19,622732329519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,28,622769774528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,28,622732326528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,28,622732326428,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,28,622732323128,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,28,622732323228,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,28,622732323328,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,28,622732329728,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,28,622732329528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-28_081852 sponsor-study-36940-samples-allSamples.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-28_081852 sponsor-study-36940-samples-allSamples.csv new file mode 100644 index 0000000..cca9c40 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-28_081852 sponsor-study-36940-samples-allSamples.csv @@ -0,0 +1,1370 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Parent Barcode,Children Barcode +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,31,622732323331,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,5,622732324405,,Cancelled,,,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,6,622732324406,,Cancelled,,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,1,622861056401,"Stool, ova & parasites(form)",Not Received,Ambient,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,3,622861056403,"Culture, Stool",Cancelled,Ambient,,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,4,622861056404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,19,622817339719,,Cancelled,,,,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,31,622769774531,,In Inventory,,Default Return Frozen,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,5,622763515905,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,5,622763519305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,5,622732328605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,5,622799398405,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,5,622732325605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,5,622817994505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,5,622850173205,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,5,622825207305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,5,622763516105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,5,622732328705,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,5,622825207205,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,5,622732322405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,5,622732322305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,5,622732335105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,5,622802395105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,5,622732325405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,5,622763522305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,5,622769773605,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,1,622732320301,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,1,622732323601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,1,622781089901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,1,622781090001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,1,622732320401,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,1,622732326601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,1,622732326801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,5,622732326605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,5,622732326805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,5,622732323605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,5,622732320405,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,5,622781090005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,5,622781089905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,5,622732320305,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,7,622732320307,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,7,622781090007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,7,622781089907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,7,622732320407,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,7,622732323607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,7,622732326807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,7,622732326607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,3,622732326603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,3,622732326803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,3,622732320403,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,3,622781089903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,3,622781090003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,3,622732320303,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,3,622732323603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,2,622732323602,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,2,622732323402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,2,622732320302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,2,622781090002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,2,622781090102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,2,622781089902,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,2,622799396202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,2,622732320402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,2,622732326602,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,2,622732326802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,2,622763517102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,2,622763520402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,2,622769771802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,2,622732329902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,2,622732333002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,2,622732333202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,2,622763513902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,2,622763514002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,2,622763514102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,4,622763514104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,4,622763514004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,4,622763513904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,4,622732333204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,4,622732333004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,4,622732329904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,4,622763520404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,4,622763517104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,4,622769771804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,4,622732326604,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,4,622732326804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,4,622732323604,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,4,622732320404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,4,622799396204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,4,622781089904,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,4,622781090104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,4,622781090004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,4,622732320304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,4,622732323404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,8,622732323408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,8,622732320308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,8,622781090108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,8,622781090008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,8,622781089908,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,8,622799396208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,8,622732320408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,8,622732323608,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,8,622732326808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,8,622732326608,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,8,622769771808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,8,622763517108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,8,622763520408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,8,622732329908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,8,622732333208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,8,622732333008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,8,622763513908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,8,622763514008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,8,622763514108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,6,622763514106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,6,622763513906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,6,622763514006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,6,622732333206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,6,622732333006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,6,622732329906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,6,622763520406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,6,622763517106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,6,622769771806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,6,622732326606,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,6,622732326806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,6,622732323606,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,6,622732320406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,6,622799396206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,6,622781089906,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,6,622781090106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,6,622781090006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,6,622732323406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,6,622732320306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,9,622732323409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,9,622732320309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,9,622781090109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,9,622781089909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,9,622781090009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,9,622799396209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,9,622732320409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,9,622732323609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,9,622732326809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,9,622732326609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,9,622769771809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,9,622763520409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,9,622763517109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,9,622732329909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,9,622732333209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,9,622732333009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,9,622763514109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,9,622763514009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,9,622763513909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,10,622763513910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,10,622763514110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,10,622763514010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,10,622732333210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,10,622732333010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,10,622732329910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,16,622732327416,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,16,622732324216,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,16,622793314216,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,16,622763521116,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,16,622769772316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,16,622763514616,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,16,622732321016,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,6,622732324006,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,6,622732327206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,6,622763514406,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,6,622732320706,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,6,622732320806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,6,622769772206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,6,622732333506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,06-May-2026,6227323355,2,622732335502,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,20-May-2026,6227993987,2,622799398702,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,12,622732327412,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,12,622732324212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,12,622732321012,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,12,622763514612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,12,622763521112,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,12,622769772312,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,12,622793314212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,2,622763520802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,2,622732320702,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,2,622732333502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,2,622769772202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,2,622732327202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,7,622793314207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,7,622763514607,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,7,622732324207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,7,622732321007,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,7,622732327407,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,7,622769772307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,7,622763521107,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,17,622793314217,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,17,622769772317,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,17,622763514617,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,17,622763521117,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,17,622732324217,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,17,622732327417,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,17,622732321017,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,7,622732333507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,10,622763517110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,10,622763520410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,10,622769771810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,10,622732326610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,10,622732326810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,10,622732323610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,10,622732320410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,10,622799396210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,10,622781090010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,10,622781089910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,,6227323203,10,622732320310,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,10,622732323410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,11,622732320311,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,11,622781089911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,11,622781090011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,11,622732320411,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,11,622732323611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,11,622732326811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,11,622732326611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,12,622732326612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,12,622732326812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,12,622732323612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,12,622732320412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,12,622769771812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,12,622763520412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,12,622763517112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,12,622732329912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,12,622732333012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,12,622763514112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,12,622763513912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,12,622763514012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,12,622732333212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,12,622781090112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,12,622799396212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,12,622781089912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,12,622781090012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,12,622732320312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,12,622732323412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,13,622732320313,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,13,622781090013,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,13,622769771813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,13,622732320413,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,13,622732323613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,13,622732326813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,13,622732326613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,15,622732326615,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,15,622732326815,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,15,622732323615,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,15,622732320415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,15,622769771815,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,15,622763517115,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,15,622763520415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,15,622732333215,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,15,622732329915,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,15,622781089915,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,15,622781090115,"Serum, SST",Cancelled,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,15,622732320315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,14,622732320314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,14,622732323414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,14,622781090114,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,14,622799396214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,14,622781089914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,14,622732329914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,14,622732333014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,14,622732333214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,14,622763514014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,14,622763513914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,14,622763514114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,14,622763520414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,14,622763517114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,14,622769771814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,14,622732320414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,14,622732323614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,14,622732326814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,14,622732326614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,2,622732324402,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,18-Mar-2026,6227323243,2,622732324302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,2,622732324502,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,2,622732321102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,2,622732321202,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,2,622732321302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,2,622769772502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,2,622763518202,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,2,622763515002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,2,622763514902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,2,622763514802,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,2,622763521302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,2,622732334002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,2,622732334102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,2,622732330902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,2,622732327602,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,2,622732327702,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,2,622781090402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,2,622781090502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,2,622799397102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,2,622813735902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,2,622819434102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,07-May-2026,6228610564,2,622861056402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,4,622819434104,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,4,622799397104,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,4,622813735904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,4,622781090504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,4,622781090404,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,4,622769772504,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,4,622732327704,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,4,622732327604,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,4,622732330904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,4,622732334004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,4,622732334104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,4,622763521304,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,4,622763515004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,4,622763514804,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,4,622763514904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,4,622763518204,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,4,622732321104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,4,622732321204,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,4,622732321304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,4,622732324504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,4,622732324404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,4,622732324304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,3,622732324303,"Culture, Stool",Cancelled,Ambient,,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,12-Mar-2026,6227323245,3,622732324503,"Culture, Stool",Received,Ambient,Default Return Frozen,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,3,622732324403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,3,622732321203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,3,622732321303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,3,622732321103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,25-Apr-2026,6227635182,3,622763518203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,3,622763514903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,3,622763515003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,3,622763514803,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,3,622763521303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,3,622732334003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,3,622732334103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,3,622732330903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,3,622732327603,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,3,622732327703,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,3,622769772503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,3,622781090403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,3,622781090503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,3,622813735903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,3,622799397103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,3,622819434103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,1,622799397101,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,1,622813735901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,1,622781090401,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,1,622781090501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,1,622819434101,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,1,622732327601,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,1,622732327701,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,1,622732330901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,1,622732334001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,1,622732334101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,1,622763521301,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,1,622763514801,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,1,622763514901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,1,622763515001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,1,622763518201,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,1,622769772501,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,1,622732321101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,1,622732321301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,1,622732321201,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,1,622732324501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,1,622732324401,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,1,622732324301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,5,622732325205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,5,622732325305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,5,622732334805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,3,622732334803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,3,622732325303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,3,622732325203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,7,622732325207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,7,622732325307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,7,622732334807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,1,622732334801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,1,622732325301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,1,622732325201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,2,622732325202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,2,622732325302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,2,622732334802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,6,622732334806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,6,622732325306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,6,622732325206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,4,622732325204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,4,622732325304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,4,622732334804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,8,622732334808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,8,622732325308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,8,622732325208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,1,622793314201,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,1,622732321001,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,1,622763521101,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,2,622763521102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,2,622769772302,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,2,622763514602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,2,622732321002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,2,622732324202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,2,622732327402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,2,622793314202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,3,622793314203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,3,622732327403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,3,622732324203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,3,622732321003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,3,622763514603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,3,622769772303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,3,622763521103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,4,622763521104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,4,622763514604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,4,622769772304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,8,622763521108,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,8,622769772308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,8,622732327408,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,8,622732321008,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,8,622732324208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,8,622763514608,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,8,622793314208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,10,622763514410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,10,622732333510,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,10,622732320710,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,10,622732320810,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,10,622732324010,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,10,622732327210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,10,622763520810,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,10,622769772210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,9,622732327409,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,9,622763521109,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,9,622769772309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,9,622732321009,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,9,622732324209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,9,622763514609,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,9,622793314209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,14,622732321014,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,14,622732324214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,14,622732327414,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,14,622763521114,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,14,622769772314,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,14,622763514614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,14,622793314214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,4,622769772204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,10,622793314210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,10,622763514610,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,10,622732327410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,10,622732321010,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,10,622732324210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,10,622769772310,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,10,622763521110,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,12,622732320812,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,12,622732320712,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,12,622763520812,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,12,622732324012,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,12,622732327212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,12,622732333512,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,12,622769772212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,12,622763514412,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,6,622769772306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,6,622732327406,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,6,622732321006,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,6,622732324206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,6,622793314206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,6,622763514606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,6,622763521106,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,8,622732320808,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,8,622732327208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,8,622732324008,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,8,622769772208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,8,622763520808,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,8,622763514408,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,8,622732320708,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,8,622732333508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,7,622793314307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,3,622732328603,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,3,622732328703,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,3,622763515903,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,3,622763519303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,3,622763516103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,3,622732325403,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,3,622732325603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,3,622763522303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,3,622732335103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,3,622732322303,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,3,622732322403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,3,622802395103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,3,622799398403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,11,622763520711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,11,622799396611,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,11,622803655411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,11,622732333411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,11,622732323711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,11,622732327011,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,11,622732320511,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,11,622763514211,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,11,622769771911,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,11,622732323811,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,11,622732320611,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,22,622732327422,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,22,622732321022,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,22,622732324222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,4,622732327404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,4,622732321004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,4,622732324204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,4,622793314204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,5,622793314205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,5,622732324205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,5,622732321005,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,5,622732327405,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,5,622769772305,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,5,622763521105,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,5,622763514605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,11,622793314211,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,11,622732321011,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,1,622732320701,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,1,622732320801,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,1,622763520801,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,1,622763514401,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,13,622732321013,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,13,622793314213,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,1,622803655401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,1,622799396601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,1,622732323701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,1,622732323801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,1,622732327001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,1,622732320501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,1,622769771901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,1,622763520701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,1,622763514201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,1,622732333401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,2,622732333402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,2,622763514202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,2,622763520702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,2,622769771902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,2,622732320502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,2,622732327002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,2,622732323802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,2,622732323702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,2,622799396602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,2,622803655402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,15,622793314215,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,15,622732321015,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,3,622732320803,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,3,622763520803,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,3,622769771903,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,3,622732320503,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,3,622732323803,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,3,622803655403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,5,622732320705,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,5,622732320805,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,5,622763520805,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,18,622793314218,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,18,622732321018,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,5,622803655405,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,5,622769771905,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,5,622732320505,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,7,622803655407,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,7,622732320507,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,7,622769771907,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,10,622803655410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,10,622732323710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,10,622732327010,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,10,622732320510,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,10,622763520710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,10,622732323810,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,10,622769771910,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,4,622732333504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,4,622763514404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,4,622763520804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,4,622732327204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,4,622732324004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,4,622732320804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,4,622732320704,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,6,622732320606,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,6,622732320506,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,6,622732323706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,6,622732327006,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,6,622763520706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,6,622732323806,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,6,622763514206,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,10,622763514210,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,10,622732333410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,10,622799396610,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,10,622732320610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,14,622732320714,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,14,622732320814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,14,622732324014,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,14,622732327214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,14,622732333514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,14,622763514414,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,14,622763520814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,14,622769772214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,13,622769772213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,13,622763520813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,13,622763514413,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,13,622732333513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,13,622732327213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,13,622732324013,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,13,622732320813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,13,622732320713,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,16,622732320816,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,16,622732320716,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,16,622763514416,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,16,622763520816,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,12,622769771912,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,12,622732320512,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,12,622803655412,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,15,622732320715,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,15,622732320815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,15,622732324015,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,15,622732327215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,15,622769772215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,15,622763520815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,15,622763514415,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,15,622732333515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,17,622769772217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,17,622763520817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,17,622763514417,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,17,622732333517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,17,622732320817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,17,622732320717,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,17,622732324017,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,17,622732327217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,16,622732320616,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,16,622732320516,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,16,622732333416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,16,622763514216,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,16,622763520716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,16,622769771916,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,16,622799396616,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,16,622803655416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,16,622732327016,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,16,622732323816,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,16,622732323716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,17,622803655417,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,17,622769771917,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,17,622732320517,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,18,622732320518,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,18,622769771918,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,18,622763520718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,18,622763514218,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,18,622732333418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,18,622803655418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,18,622799396618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,18,622732323718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,18,622732323818,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,18,622732327018,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,2,622793314302,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,1,622793314301,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,4,622793314304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,3,622793314303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,10,622793314310,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,12,622793314312,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,14,622793314314,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,17,622793314317,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,22,622793314322,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,EXPEDITED FRZN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,23,622793314323,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,2,622732326402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,2,622732326502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,4,622732323204,"Serum, SST",Cancelled,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323295,4,622732329504,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,6,622769771906,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,6,622732333406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,6,622803655406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,6,622799396606,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,11,622763520811,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,11,622769772211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,11,622763514411,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,11,622732333511,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,11,622732324011,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,11,622732327211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,11,622732320711,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,11,622732320811,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,8,622793314308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,13,622793314313,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMAPK I-12 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,DNA,09-Apr-2026,09-Apr-2026,6227635218,1,622763521801,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323297,4,622732329704,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,1,622732326501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,1,622732326401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,8,622732323208,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,23-Apr-2026,6227323231,8,622732323108,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,7,622732323407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,7,622732333007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,7,622732333207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,7,622732329907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,7,622763514007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,7,622763514107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,7,622763513907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,7,622763517107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,7,622763520407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,7,622769771807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,7,622781090107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,7,622799396207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,7,622811461007,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,4,622811461004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,1,622811461001,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,1,622781090101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,1,622799396201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,1,622763520401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,1,622763517101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,1,622769771801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,1,622763514001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,1,622763514101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,1,622763513901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,1,622732329901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,1,622732333201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,1,622732333001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,1,622732323401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,3,622732323403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,3,622732333003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,3,622732333203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,3,622732329903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,3,622763513903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,3,622763514003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,3,622763514103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,3,622769771803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,3,622763517103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,3,622763520403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,3,622799396203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,3,622781090103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,3,622811461003,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,5,622811461005,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,5,622799396205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,5,622781090105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,5,622763520405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,5,622763517105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,5,622769771805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,5,622763513905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,5,622763514105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,5,622763514005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,5,622732329905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,5,622732333205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,5,622732333005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,5,622732323405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,9,622811461009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,6,622811461006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,2,622811461002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,8,622811461008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,2,622817993602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,4,622817993604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,11,622811461011,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,11,622781090111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,DNA,26-Mar-2026,26-Mar-2026,6227635156,1,622763515601,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,DNA,19-Mar-2026,19-Mar-2026,6227323219,1,622732321901,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,DNA,20-Feb-2026,20-Feb-2026,6227323217,1,622732321701,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,DNA,21-Mar-2026,21-Mar-2026,6227323251,1,622732325101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,DNA,06-May-2026,06-May-2026,6227323346,1,622732334601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,DNA,27-May-2026,27-May-2026,6227635155,1,622763515501,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,DNA,10-Mar-2026,10-Mar-2026,6227323283,1,622732328301,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,DNA,10-Apr-2026,10-Apr-2026,6228179942,1,622817994201,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,DNA,08-Apr-2026,08-Apr-2026,6227697731,1,622769773101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,DNA,20-May-2026,20-May-2026,6227993977,1,622799397701,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,6,622817993606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,14,622817993614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,9,622817993609,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,4,622817993204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,11,622799396211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,11,622732323411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,11,622732333011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,11,622732333211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,11,622732329911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,11,622763513911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,11,622763514011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,11,622763514111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,11,622763517111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,11,622763520411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,11,622769771811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,14,622781090014,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,14,622811461014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,5,622817993605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,,6228114610,15,622811461015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,15,622781090015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,15,622799396215,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,6,622763520806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,8,622732333408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,8,622732320508,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,8,622732327008,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,8,622732323708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,8,622803655408,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,8,622732323808,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,8,622763514208,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,8,622769771908,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,8,622763520708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,8,622799396608,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,8,622732320608,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,15,622793314315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,16,622817993616,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,6,622817993206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,6,622839811506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,8,622830822408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,8,622817339708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,3,622769773603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,8,622817993608,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,10,622817993210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,10,622839811510,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,25,622769774525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,25,622732326525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,25,622732326425,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,25,622732323225,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,25,622732323125,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,25,622732323325,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,25,622732329725,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,25,622732329525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,21,622769774521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,21,622732326521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,21,622732326421,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,21,622732323121,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,21,622732323221,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,21,622732323321,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,21,622732329721,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,21,622732329521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,3,622850173203,"Biopsy, Frozen Tissue",Not Received,Frozen,,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,3,622825207303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,3,622825207203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,3,622817994503,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,4,622839811504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,8,622817993208,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,8,622839811508,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,11,622839811511,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,11,622817993211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,6,622817339706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,6,622830822406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,22,622769774522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,22,622732326522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,22,622732326422,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,22,622732323222,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,22,622732323122,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,22,622732323322,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,22,622732329722,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,22,622732329522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,19,622769774519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,22,622769772322,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,22,622793314222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,22,622763514622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,22,622763521122,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,21,622793314321,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,9,622793314309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,10,622817993610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,22,622817993622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,12,622817993212,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,12,622839811512,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,11,622830822411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,11,622817339711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,14,622769774514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,14,622732326414,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,14,622732326514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,15,622763513915,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,15,622763514015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,15,622763514115,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,15,622732333015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,15,622732323415,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,3,622817993603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,10,622811461010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,10,622781090110,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,1,622817993601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,1,622732324201,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,1,622732327401,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,1,622769772301,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,1,622763514601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,12,622811461012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,13,622811461013,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,13,622781089913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,13,622799396213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,14,622732323114,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,14,622732323214,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,14,622732323314,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,14,622732329714,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,14,622732329514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,23,622769774523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,23,622732326523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,23,622732326423,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,23,622732323123,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,23,622732323223,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,23,622732323323,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,23,622732329723,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,23,622732329523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,13,622781090113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,13,622763520413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,13,622763517113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,13,622732333013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,13,622732329913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,13,622763514113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,13,622763514013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,13,622763513913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,13,622732333213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,13,622732323413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,13,622817993613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,13,622732324213,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,13,622732327413,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,13,622763514613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,13,622763521113,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,13,622769772313,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,11,622769772311,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,11,622763521111,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,11,622763514611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,11,622732327411,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,11,622732324211,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,11,622817993611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,15,622817993615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,15,622732324215,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,15,622732327415,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,15,622763514615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,15,622763521115,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,15,622769772315,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,18,622817993618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,18,622769772318,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,18,622763521118,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,18,622763514618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,18,622732327418,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,18,622732324218,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,3,622817993203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,3,622839811503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,3,622732324003,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,3,622732327203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,3,622732320703,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,3,622732333503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,3,622763514403,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,3,622769772203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,1,622817993201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,1,622839811501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,1,622769772201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,1,622732333501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,1,622732327201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,1,622732324001,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,15,622839811515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,15,622817993215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,16,622839811516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,16,622817993216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,16,622732324016,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,16,622732327216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,16,622732333516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,16,622769772216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,5,622769772205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,5,622732333505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,5,622763514405,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,5,622732327205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,5,622732324005,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,5,622817993205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,5,622839811505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,13,622839811513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,13,622817993213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,17,622839811517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,17,622817993217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,14,622839811514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,14,622817993214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,3,622817339703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,3,622799396603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,19,622732326519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,19,622732326419,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,19,622732323219,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,19,622732323119,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,19,622732323319,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,19,622732329719,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,19,622732329519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,28,622769774528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,28,622732326528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,28,622732326428,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,28,622732323128,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,28,622732323228,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,28,622732323328,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,28,622732329728,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,28,622732329528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,3,622830822403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,3,622732323703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,3,622732327003,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,3,622732320603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,3,622763514203,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,3,622732333403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,3,622763520703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,2,622817339702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,2,622830822402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,2,622732320602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,7,622732320607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,7,622732327007,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,7,622732323707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,7,622732323807,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,7,622763520707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,7,622732333407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,7,622763514207,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,7,622830822407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,7,622799396607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,7,622817339707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,5,622830822405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,5,622817339705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,5,622799396605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,5,622763514205,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,5,622732333405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,5,622763520705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,5,622732323805,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,5,622732323705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,5,622732327005,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,5,622732320605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,1,622817339701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,1,622830822401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,1,622732320601,"Whole Blood, EDTA, Dry",Cancelled,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,16,622817339716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,16,622830822416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,17,622830822417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,17,622817339717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,17,622799396617,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,17,622732320617,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,17,622732327017,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,17,622732323717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,17,622732323817,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,17,622763520717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,17,622732333417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,17,622763514217,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,12,622763514212,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,12,622732333412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,12,622763520712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,12,622732323812,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,12,622732323712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,12,622732327012,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,12,622732320612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,12,622799396612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,12,622817339712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,12,622830822412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,18,622830822418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,18,622817339718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,18,622732320618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,10,622830822410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,10,622817339710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,2,622769774502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,2,622732323302,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,2,622732323102,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,2,622732323202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,2,622732329502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,2,622732329702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,5,622732329505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,5,622732329705,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,5,622732323205,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323231,5,622732323105,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,5,622732323305,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,5,622732326505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,5,622732326405,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,5,622769774505,"Serum, SST",Not Received,Ambient,,FSH,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,7,622769774507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,7,622732326507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,7,622732326407,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,7,622732323307,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,7,622732323107,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,7,622732323207,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,7,622732329507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,7,622732329707,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,6,622732329506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,6,622732329706,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,6,622732323206,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,6,622732323106,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,6,622732323306,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,6,622732326406,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,6,622732326506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,6,622769774506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,8,622769774508,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,8,622732326508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,8,622732326408,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,8,622732323308,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,8,622732329508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,8,622732329708,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,9,622732329709,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,9,622732329509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,9,622732323309,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,9,622732323109,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,9,622732323209,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,9,622732326409,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,9,622732326509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,9,622769774509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,3,622769774503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,3,622732326503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,3,622732326403,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,3,622732323203,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,3,622732323103,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,3,622732323303,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,3,622732329503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,3,622732329703,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,4,622732323304,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,4,622732323104,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,4,622732326404,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,4,622732326504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,4,622769774504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,1,622769774501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,1,622732323101,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,1,622732323201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,1,622732323301,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,1,622732329501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,1,622732329701,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,10,622769774510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,10,622732326410,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,10,622732326510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,10,622732323110,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,10,622732323210,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,10,622732323310,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,10,622732329710,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,10,622732329510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,12,622732329512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,12,622732329712,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,12,622732323312,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,12,622732323212,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,12,622732323112,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,12,622732326512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,12,622732326412,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,12,622769774512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,15,622732329515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,15,622732329715,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,15,622732323315,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,15,622732323215,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,15,622732323115,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,15,622732326515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,15,622732326415,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,15,622769774515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,13,622732329513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,13,622732329713,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,13,622732323313,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,13,622732323213,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,13,622732323113,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,13,622732326513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,13,622732326413,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,13,622769774513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,11,622769774511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,11,622732326411,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,11,622732326511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,11,622732323111,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,11,622732323211,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,11,622732323311,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,11,622732329711,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,11,622732329511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,24,622732329524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,24,622732329724,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,24,622732323324,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,24,622732323224,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,24,622732323124,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,24,622732326424,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,24,622732326524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,24,622769774524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,27,622732329527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,27,622732329727,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,27,622732323327,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,27,622732323227,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,27,622732323127,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,27,622732326427,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,27,622732326527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,27,622769774527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,29,622732329529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,29,622732329729,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,29,622732323329,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,29,622732323229,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,29,622732323129,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,29,622732326429,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,29,622732326529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,29,622769774529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,30,622732329530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,30,622732329730,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,30,622732323330,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,30,622732323230,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,30,622732323130,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,30,622732326430,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,30,622732326530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,30,622769774530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,,6227993987,1,622799398701,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,,6227323355,1,622732335501,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,2,622732324002,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,2,622763514402,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,2,622732320802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,4,622763520704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,4,622769771904,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,4,622763514204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,4,622732323804,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,4,622732320504,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,4,622732327004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,4,622732323704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,4,622732333404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,4,622803655404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,4,622799396604,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,4,622732320604,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,19,622732321019,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,19,622732327419,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,19,622793314219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,19,622763521119,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,19,622769772319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,19,622763514619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,19,622732324219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,13,622732320613,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,13,622732323813,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,13,622763514213,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,13,622769771913,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,13,622763520713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,13,622732320513,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,13,622732333413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,13,622732327013,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,13,622732323713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,13,622799396613,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,13,622803655413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,11,622793314311,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-12TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,18,622793314318,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,12,622817993612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,19,622817993619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,2,622817993202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,2,622839811502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,4,622830822404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,4,622817339704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,13,622830822413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,13,622817339713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,16,622732329516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,16,622732329716,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,16,622732323316,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,16,622732323216,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,16,622732323116,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,16,622732326516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,16,622732326416,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,16,622769774516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,7,622769772207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,7,622732320807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,7,622732324007,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,7,622732320707,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,7,622732327207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,7,622763514407,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,7,622763520807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,21,622763521121,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,21,622769772321,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,21,622763514621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,21,622732324221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,21,622732321021,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,21,622732327421,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,21,622793314221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,9,622769771909,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,9,622763520709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,9,622732323709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,9,622732327009,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,9,622732320509,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,9,622763514209,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,9,622732323809,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,9,622799396609,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,9,622803655409,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,9,622732333409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,9,622732320609,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,9,622732320809,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,9,622732320709,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,9,622732327209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,9,622732324009,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,9,622732333509,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,9,622763514409,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,9,622769772209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,9,622763520809,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,15,622732320615,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,15,622803655415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,15,622732327015,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,15,622732323715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,15,622732333415,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,15,622763520715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,15,622799396615,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,15,622732320515,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,15,622732323815,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,15,622769771915,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,15,622763514215,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,6,622793314306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,16,622793314316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,20,622793314320,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,1,622732328701,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,1,622732328601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,1,622763516101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,1,622763522301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,1,622763515901,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,1,622732335101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,1,622763519301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,1,622732325401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,1,622732325601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,1,622732322301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,1,622732322401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,1,622769773601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,1,622802395101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,1,622799398401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,2,622769773602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,2,622763516102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,2,622763519302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,2,622763515902,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,2,622732328702,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,2,622732328602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,2,622799398402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,2,622802395102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,2,622732335102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,20,622793314220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,20,622732321020,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,20,622732327420,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,20,622732324220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,20,622763514620,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,20,622769772320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,20,622763521120,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,14,622799396614,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,14,622803655414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,14,622732320514,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,14,622732323714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,14,622732327014,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,14,622732333414,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,14,622763520714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,2,622732325602,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,2,622763522302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,2,622732325402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,2,622732322402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,2,622732322302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,7,622817993607,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,21,622817993621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,17,622817993617,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,7,622817993207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,7,622839811507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,9,622839811509,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,9,622817993209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,9,622817339709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,9,622830822409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,15,622817339715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,15,622830822415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,18,622769774518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,18,622732326418,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,18,622732326518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,18,622732323118,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,18,622732323218,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,18,622732323318,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,18,622732329718,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,18,622732329518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,20,622732329520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,20,622732329720,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,20,622732323320,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,20,622732323220,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,20,622732323120,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,20,622732326520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,20,622732326420,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,20,622769774520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,14,622769771914,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,14,622732323814,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,14,622763514214,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,14,622732320614,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,5,622793314305,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-12,77242113UCO3001-1,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,19,622793314319,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,,6227323254,4,622732325404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,,6227323286,4,622732328604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,,6227323287,4,622732328704,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,,6227323223,4,622732322304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,20,622817993620,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,14,622830822414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,14,622817339714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,17,622732329517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,17,622732329717,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,26,622732329526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,26,622732329726,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,26,622732323326,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,26,622732323126,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,26,622732323226,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,26,622732326426,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,26,622732326526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,26,622769774526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,2,622850173202,Biopsy RNA Later,Not Received,Frozen,,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,2,622817994502,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,2,622825207202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,2,622825207302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,1,622825207201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,1,622825207301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,1,622817994501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,1,622850173201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,17,622732323317,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,17,622732323217,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,17,622732323117,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,17,622732326517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,17,622732326417,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,17,622769774517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,4,622825207204,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,4,622817994504,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,4,622850173204,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,,6228252073,4,622825207304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,,6227993984,4,622799398404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,,6228023951,4,622802395104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,,6227697736,4,622769773604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,,6227323256,4,622732325604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,,6227323224,4,622732322404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,,6227323351,4,622732335104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,,6227635223,4,622763522304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,,6227635159,4,622763515904,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,,6227635161,4,622763516104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,,6227635193,4,622763519304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-28_092133 sponsor-study-36940-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-28_092133 sponsor-study-36940-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..154c50d --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-28_092133 sponsor-study-36940-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,544 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6227323202,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6228114608,"Mar 10, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6228114609,"Mar 10, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228036552,"Feb 27, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462182,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462184,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462183,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6227933141,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462185,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462186,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462187,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6227323209,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462189,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462188,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227810906,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227933144,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462190,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462191,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933145,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933146,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933147,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933148,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137358,"Mar 12, 2026","Jan 29, 2027",245 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137357,"Mar 12, 2026","Jan 29, 2027",245 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462192,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462193,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462194,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462196,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462197,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462195,"Apr 28, 2026","May 25, 2027",361 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323220,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323221,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6227323222,"Nov 21, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6228252071,"Mar 26, 2026","Jul 20, 2027",417 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323225,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323226,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323227,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323228,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810907,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810909,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810908,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323229,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323230,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810910,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810911,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810912,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323214,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323215,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-11,DILI,6227323216,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6227323218,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252069,"Mar 26, 2026","Mar 31, 2027",306 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252070,"Mar 26, 2026","Mar 31, 2027",306 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252068,"Mar 26, 2026","Mar 31, 2027",306 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462198,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462199,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462200,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462202,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462201,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462203,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462206,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462205,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462204,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462207,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489756,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489757,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489758,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489761,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489760,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489759,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489763,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489762,"May 1, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323298,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323300,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323301,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323302,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323303,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323304,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323306,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323305,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,5,Induction Week 12,6228676757,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323307,"Nov 21, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323308,"Nov 21, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323316,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323317,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323319,"Nov 21, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323318,"Nov 21, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323321,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323322,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323323,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323324,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676759,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676760,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676758,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323326,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323325,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676762,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676763,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676761,"May 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323310,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323311,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-11,DILI,6227323312,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323313,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323314,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323315,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323328,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323327,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323329,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6227323235,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492883,"Apr 23, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492884,"Apr 23, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492885,"Apr 23, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265099,"Mar 27, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265098,"Mar 27, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265100,"Mar 27, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6227323239,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407563,"Apr 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407564,"Apr 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407565,"Apr 15, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6227323241,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461735,"Apr 21, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461736,"Apr 21, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461734,"Apr 21, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228013269,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228492886,"Apr 23, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228194338,"Mar 23, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228690541,"May 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194340,"Mar 23, 2026","Mar 5, 2027",280 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194339,"Mar 23, 2026","Mar 5, 2027",280 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6227323255,"Nov 21, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690542,"May 19, 2026","Aug 7, 2027",435 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690544,"May 19, 2026","Aug 7, 2027",435 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690543,"May 19, 2026","Aug 7, 2027",435 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323257,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323258,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323260,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323259,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013270,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013271,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013272,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323261,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323262,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013275,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013273,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013274,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323246,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323247,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-11,DILI,6227323248,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323250,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323249,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,U,Unscheduled,6227323263,"Nov 21, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227323331,"Nov 23, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765941,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765942,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765943,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227323333,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765944,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765945,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765946,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227323336,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765948,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765947,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765949,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323337,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323338,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765950,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765951,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765952,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765953,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765954,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765955,"Jan 29, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227323339,"Nov 23, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765956,"Jan 29, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765957,"Jan 29, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765958,"Jan 29, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765959,"Jan 29, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227323349,"Nov 23, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765963,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765964,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765965,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765966,"Jan 29, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323350,"Nov 23, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323352,"Nov 23, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765967,"Jan 29, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765968,"Jan 29, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765970,"Jan 29, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765969,"Jan 29, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323353,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323354,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227323356,"Nov 23, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765973,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765972,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765974,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765971,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357528,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357529,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357530,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323357,"Nov 23, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323358,"Nov 23, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357532,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357533,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357531,"Apr 7, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323342,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323343,"Nov 23, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-11,DILI,6227323344,"Nov 23, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323347,"Nov 23, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323345,"Nov 23, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765961,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765962,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765960,"Jan 29, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323359,"Nov 23, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323361,"Nov 23, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323360,"Nov 23, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765975,"Jan 29, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765976,"Jan 29, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765977,"Jan 29, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993930,"Feb 17, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993931,"Feb 17, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993932,"Feb 17, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993933,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993934,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993935,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993936,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993937,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993938,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993941,"Feb 17, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993940,"Feb 17, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993939,"Feb 17, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993949,"Feb 17, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993948,"Feb 17, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993952,"Feb 17, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993951,"Feb 17, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993950,"Feb 17, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993954,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993953,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993955,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993956,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993957,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993958,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993943,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993942,"Feb 17, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-11,DILI,6227993944,"Feb 17, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993945,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993946,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993947,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993959,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993960,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993961,"Feb 17, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697716,"Jan 12, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697717,"Jan 12, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6227697720,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398468,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398470,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398469,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6227697721,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512528,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512526,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512527,"Apr 28, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6227697724,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628517,"May 11, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628515,"May 11, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628516,"May 11, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,5,Induction Week 12,6228251912,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,6,Maintenance Week 4,6228628518,"May 11, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697726,"Jan 12, 2026","Jan 14, 2027",230 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697727,"Jan 12, 2026","Jan 14, 2027",230 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697735,"Jan 12, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697734,"Jan 12, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697737,"Jan 12, 2026","May 11, 2027",347 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697738,"Jan 12, 2026","May 11, 2027",347 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697740,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697739,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697741,"Jan 12, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697742,"Jan 12, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251914,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251913,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251915,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697743,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697744,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251918,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251916,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251917,"Mar 26, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697728,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697729,"Jan 12, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-11,DILI,6227697730,"Jan 12, 2026","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697733,"Jan 12, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697732,"Jan 12, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697747,"Jan 12, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697746,"Jan 12, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367755,"Apr 8, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367756,"Apr 8, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367757,"Apr 8, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6227635143,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308225,"Apr 1, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308226,"Apr 1, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6227635145,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398114,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398116,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6227635147,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501725,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501727,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501726,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228308227,"Apr 1, 2026","Jan 31, 2027",247 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228367758,"Apr 8, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501728,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501729,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367759,"Apr 8, 2026","Mar 5, 2027",280 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367760,"Apr 8, 2026","Mar 5, 2027",280 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367761,"Apr 8, 2026","Mar 5, 2027",280 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635158,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635157,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6227635160,"Jan 5, 2026","Oct 15, 2026",139 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501731,"Apr 26, 2026","Aug 7, 2027",435 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501730,"Apr 26, 2026","Aug 7, 2027",435 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635163,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635162,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635164,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635165,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095872,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095870,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095871,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635167,"Jan 5, 2026","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635166,"Jan 5, 2026","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095874,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095873,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095875,"Mar 5, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635151,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635152,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-11,DILI,6227635153,"Jan 5, 2026","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6227635154,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635168,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635169,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635170,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259263,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259264,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259265,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510217,"Apr 30, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510218,"Apr 30, 2026","Nov 30, 2026",185 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259267,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259266,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510219,"Apr 30, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510220,"Apr 30, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259268,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259269,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510221,"Apr 30, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510222,"Apr 30, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259270,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259271,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259274,"Nov 13, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259273,"Nov 13, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259272,"Nov 13, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259281,"Nov 13, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259282,"Nov 13, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259283,"Nov 13, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259284,"Nov 13, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259285,"Nov 13, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259286,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259287,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259289,"Nov 13, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259288,"Nov 13, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259290,"Nov 13, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259291,"Nov 13, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259276,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259275,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-11,DILI,6227259277,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259280,"Nov 13, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259278,"Nov 13, 2025","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259294,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259293,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259292,"Nov 13, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6227635172,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6227635175,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6227635174,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635176,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635177,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635178,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635179,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,5,Induction Week 12,6228501793,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6227635181,"Jan 5, 2026","Jan 14, 2027",230 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635189,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635190,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635191,"Jan 5, 2026","Oct 15, 2026",139 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635192,"Jan 5, 2026","Oct 15, 2026",139 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635195,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635194,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635197,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635196,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501795,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501794,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501796,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635198,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635199,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501797,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501798,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501799,"Apr 26, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635183,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635184,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-11,DILI,6227635185,"Jan 5, 2026","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635188,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635186,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635187,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635200,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635202,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635201,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993964,"Feb 18, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993963,"Feb 18, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6227993965,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707090,"May 22, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707091,"May 22, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707092,"May 22, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993967,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993968,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993969,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993970,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,5,Induction Week 12,6228436352,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993973,"Feb 18, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993972,"Feb 18, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993980,"Feb 18, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993981,"Feb 18, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993983,"Feb 18, 2026","May 11, 2027",347 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993982,"Feb 18, 2026","May 11, 2027",347 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993985,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993986,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6227993988,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436354,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436353,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436355,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993989,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993990,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436356,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436357,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436358,"Apr 19, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993974,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993975,"Feb 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-11,DILI,6227993976,"Feb 18, 2026","Sep 30, 2026",124 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993978,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993979,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993991,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993992,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993993,"Feb 18, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635205,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635203,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6227635206,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398426,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398427,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398428,"Apr 14, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6227635209,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492827,"Apr 23, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492828,"Apr 23, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492826,"Apr 23, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6227635210,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605821,"May 7, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605823,"May 7, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605822,"May 7, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,5,Induction Week 12,6228084840,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,6,Maintenance Week 4,6228605824,"May 7, 2026","Feb 28, 2027",275 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635214,"Jan 5, 2026","Jan 14, 2027",230 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635212,"Jan 5, 2026","Jan 14, 2027",230 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635221,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635222,"Jan 5, 2026","Aug 31, 2026",94 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635224,"Jan 5, 2026","Nov 25, 2026",180 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635225,"Jan 5, 2026","Nov 25, 2026",180 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635226,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635227,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635228,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635229,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084843,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084842,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084841,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635230,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635231,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084845,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084844,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084846,"Mar 4, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635215,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635216,"Jan 5, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-11,DILI,6227635217,"Jan 5, 2026","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635219,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635220,"Jan 5, 2026","Dec 31, 2026",216 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635234,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635233,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635232,"Jan 5, 2026","Oct 31, 2026",155 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6227323267,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137352,"Mar 11, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137353,"Mar 11, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137354,"Mar 11, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179928,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179930,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179929,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6227323269,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173395,"Mar 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173396,"Mar 18, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6227323271,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179931,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179933,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6227323273,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179934,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179935,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227752380,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227810902,"Jan 28, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137356,"Mar 11, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137355,"Mar 11, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023948,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023949,"Feb 25, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179938,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179937,"Mar 23, 2026","Oct 11, 2026",135 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227323275,"Nov 21, 2025","Dec 26, 2026",211 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227810903,"Jan 28, 2026","Jan 15, 2027",231 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179939,"Mar 23, 2026","Jan 29, 2027",245 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179940,"Mar 23, 2026","Jan 29, 2027",245 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323284,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323285,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6227323288,"Nov 21, 2025","Sep 12, 2026",106 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023950,"Feb 25, 2026","Nov 28, 2026",183 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023952,"Feb 25, 2026","May 11, 2027",347 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179946,"Mar 23, 2026","Jul 20, 2027",417 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179944,"Mar 23, 2026","Jul 20, 2027",417 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323289,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323290,"Nov 21, 2025","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323291,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323292,"Nov 21, 2025","Jun 30, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752381,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752383,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752382,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323293,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323294,"Nov 21, 2025","Jul 1, 2026",33 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752385,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752386,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752384,"Jan 20, 2026","Oct 7, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323279,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323278,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-11,DILI,6227323280,"Nov 21, 2025","May 31, 2026",2 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323281,"Nov 21, 2025","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323282,"Nov 21, 2025","Jul 31, 2026",63 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179941,"Mar 23, 2026","Mar 31, 2027",306 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179943,"Mar 23, 2026","Mar 31, 2027",306 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,U,Unscheduled,6227323296,"Nov 21, 2025","Aug 31, 2026",94 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10001 Dr. Matej Falc, CZ10010 Dr.Nabil El Lababidi, CZ10022 Dr. Petr Hrabak, CZ10020 Dr.Lucie Gonsorcikova, CZ10012 Dr.Stefan Konecny, CZ10021 Dr.Martin Bortlik, CZ10016 Dr.Robert Mudr, CZ10003 Dr. Leksa Vaclav, CZ10009 Dr. Jiri Pumprla, CZ10015 Dr.Jan Matous, CZ10013 Dr.David Stepek, CZ10006 Dr. Michal Konecny",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-28_092149 sponsor-study-35472-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-28_092149 sponsor-study-35472-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..dcbd351 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-28_092149 sponsor-study-35472-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,285 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350973,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350970,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350974,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350976,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350978,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350979,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541248,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541247,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149461,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149462,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149463,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350980,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350983,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261232,"Nov 18, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261231,"Nov 18, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541250,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541253,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350985,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350986,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350987,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547334,"Dec 31, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547335,"Dec 31, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6225350989,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541255,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541254,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547339,"Dec 31, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226573502,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226889397,"Oct 7, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227261233,"Nov 18, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541263,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541262,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226573503,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226889398,"Oct 7, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227043303,"Oct 23, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227261234,"Nov 18, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149464,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149465,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226649754,"Aug 29, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226889399,"Oct 7, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541265,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541267,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541268,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541266,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573504,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573505,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573507,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573506,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573508,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541269,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541270,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541272,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541271,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350990,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350991,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350992,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350993,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350994,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768461,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605654,"May 7, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605655,"May 7, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350996,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350995,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350997,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350998,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350999,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768462,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768463,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768464,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768465,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6225351000,"Feb 24, 2025","Sep 1, 2025",-269 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227547340,"Dec 31, 2025","Sep 12, 2026",106 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227768466,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6225351001,"Feb 24, 2025","Jul 31, 2025",-301 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227547341,"Dec 31, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227768467,"Jan 27, 2026","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6225351003,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649755,"Aug 29, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649756,"Aug 29, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178914,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178913,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178915,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178916,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178917,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178919,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178918,"Nov 14, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351038,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351039,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351043,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520226,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520225,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520227,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6225351048,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551696,"Aug 22, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551699,"Aug 22, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551700,"Aug 22, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655163,"Sep 5, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655166,"Sep 5, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655165,"Sep 5, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655162,"Sep 5, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655164,"Sep 5, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351053,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351054,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351055,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520230,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520228,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520229,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780849,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780851,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780848,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780852,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780850,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520231,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520233,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520232,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226550654,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226561520,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072416,"Oct 20, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072415,"Oct 20, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072418,"Oct 20, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072417,"Oct 20, 2025","Jul 31, 2026",63 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226313626,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226550655,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226561521,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520234,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520235,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520236,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226313627,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226550656,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226561522,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226804963,"Sep 25, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313628,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313629,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313630,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313631,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313632,"Jul 14, 2025","Apr 17, 2026",-41 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520237,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520239,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520240,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520241,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520238,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351058,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351059,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351061,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351062,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351060,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6226780854,"Sep 24, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520244,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520246,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351065,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351067,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351064,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351063,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520248,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520250,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520247,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520249,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520251,"Dec 26, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-4,Liver Monitoring,6225351068,"Feb 24, 2025","Sep 1, 2025",-269 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-5,Suspected Liver Event FU,6225351069,"Feb 24, 2025","Jul 31, 2025",-301 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6225351071,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023802,"Feb 25, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023803,"Feb 25, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351073,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351075,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351079,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542163,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542162,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149810,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149812,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149811,"Mar 13, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351085,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351086,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542165,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542164,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844727,"Feb 1, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844726,"Feb 1, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351087,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351088,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351089,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542167,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542168,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542169,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542166,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351091,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351090,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6226935605,"Oct 14, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6228013045,"Feb 26, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226550647,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226561518,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226991312,"Oct 26, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228013046,"Feb 26, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228114461,"Mar 11, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228398393,"Apr 15, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226550648,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226561519,"Aug 21, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226991313,"Oct 26, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261837,"Nov 20, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261838,"Nov 20, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6228114462,"Mar 11, 2026","Oct 11, 2026",135 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550649,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550650,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550652,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550651,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550653,"Aug 18, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351092,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351096,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6227498378,"Dec 22, 2025","Aug 31, 2026",94 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232036,"Mar 25, 2026","Jan 3, 2027",219 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232038,"Mar 25, 2026","Jan 3, 2027",219 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234299,"Mar 30, 2026","Jan 3, 2027",219 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351097,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351099,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351101,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351100,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351098,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542174,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542176,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542175,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542177,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6225351102,"Feb 24, 2025","Sep 1, 2025",-269 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542179,"Dec 25, 2025","Sep 12, 2026",106 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542178,"Dec 25, 2025","Sep 12, 2026",106 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6225351103,"Feb 24, 2025","Jul 31, 2025",-301 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542180,"Dec 25, 2025","Jun 30, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542181,"Dec 25, 2025","Jun 30, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351104,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351105,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6227542183,"Dec 25, 2025","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417882,"Apr 15, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417883,"Apr 15, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351107,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351108,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351112,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351113,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351114,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351115,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227767268,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775503,"Jan 23, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775504,"Jan 23, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351117,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351116,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351118,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351119,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767269,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767270,"Jan 27, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227775506,"Jan 23, 2026","Oct 7, 2026",131 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351123,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351122,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351121,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742569,"May 25, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742568,"May 25, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351124,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351125,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6226976944,"Oct 26, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6228521304,"Apr 30, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226560889,"Aug 20, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226752556,"Sep 17, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226976945,"Oct 26, 2025","May 31, 2026",2 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560890,"Aug 20, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560892,"Aug 20, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560894,"Aug 20, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560893,"Aug 20, 2025","Jul 1, 2026",33 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389162,"Apr 15, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389161,"Apr 15, 2026","Feb 28, 2027",275 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351129,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351128,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351130,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351127,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351131,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351132,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351133,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351134,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351135,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-4,Liver Monitoring,6225351136,"Feb 24, 2025","Sep 1, 2025",-269 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-5,Suspected Liver Event FU,6225351137,"Feb 24, 2025","Jul 31, 2025",-301 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351139,"Feb 24, 2025","Dec 1, 2025",-178 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351138,"Feb 24, 2025","Dec 1, 2025",-178 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-29_100908 sponsor-study-36940-samples-allSamples.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-29_100908 sponsor-study-36940-samples-allSamples.csv new file mode 100644 index 0000000..7fe468b --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-29_100908 sponsor-study-36940-samples-allSamples.csv @@ -0,0 +1,1445 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,1,622732320301,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,2,622732320302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,3,622732320303,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,7,622732320307,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,8,622732320308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,5,622732320305,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,6,622732320306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,11,622732320311,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,4,622732320304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,14,622732320314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,12,622732320312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,15,622732320315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,1,622732320401,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,9,622732320309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,3,622732320403,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,4,622732320404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,2,622732320402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,6,622732320406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,7,622732320407,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,5,622732320405,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,,6227323203,10,622732320310,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,13,622732320313,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,9,622732320409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,10,622732320410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,11,622732320411,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,13,622732320413,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,14,622732320414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,15,622732320415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,8,622732320408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,1,622732320501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,12,622732320412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,2,622732320502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,4,622732320504,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,7,622732320507,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,3,622732320503,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,6,622732320506,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,10,622732320510,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,9,622732320509,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,8,622732320508,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,5,622732320505,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,11,622732320511,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,13,622732320513,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,14,622732320514,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,15,622732320515,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,16,622732320516,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,18,622732320518,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,1,622732320601,"Whole Blood, EDTA, Dry",Cancelled,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,17,622732320517,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,12,622732320512,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,4,622732320604,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,7,622732320607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,8,622732320608,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,9,622732320609,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,10,622732320610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,11,622732320611,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,12,622732320612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,2,622732320602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,6,622732320606,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,3,622732320603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,5,622732320605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,17,622732320617,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,14,622732320614,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,18,622732320618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,2,622732320702,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,16,622732320616,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,3,622732320703,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,1,622732320701,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,15,622732320615,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,13,622732320613,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,4,622732320704,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,5,622732320705,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,6,622732320706,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,7,622732320707,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,8,622732320708,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,9,622732320709,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,10,622732320710,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,11,622732320711,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,12,622732320712,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,13,622732320713,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,14,622732320714,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,16,622732320716,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,17,622732320717,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,1,622732320801,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,2,622732320802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,3,622732320803,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,5,622732320805,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,4,622732320804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,7,622732320807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,8,622732320808,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,10,622732320810,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,15,622732320715,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,11,622732320811,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,9,622732320809,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,12,622732320812,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-5,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,13,622732320813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,14,622732320814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,15,622732320815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,16,622732320816,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,17,622732320817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,6,622732320806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,2,622732321002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,4,622732321004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,1,622732321001,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,3,622732321003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,6,622732321006,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-1,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,5,622732321005,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,7,622732321007,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-2,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,8,622732321008,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-3,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,9,622732321009,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-4,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,10,622732321010,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,12,622732321012,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,14,622732321014,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,11,622732321011,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,13,622732321013,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,15,622732321015,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,16,622732321016,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,17,622732321017,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,18,622732321018,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,19,622732321019,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,21,622732321021,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,20,622732321020,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,22,622732321022,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,1,622732321101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,2,622732321102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,3,622732321103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,4,622732321104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,1,622732321201,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,3,622732321203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,4,622732321204,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,2,622732321202,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,1,622732321301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,2,622732321302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,3,622732321303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,4,622732321304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,DNA,20-Feb-2026,20-Feb-2026,6227323217,1,622732321701,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,DNA,19-Mar-2026,19-Mar-2026,6227323219,1,622732321901,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,1,622732322301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,2,622732322302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,3,622732322303,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,,6227323223,4,622732322304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,2,622732322402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,1,622732322401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,3,622732322403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,,6227323224,4,622732322404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,2,622732323102,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,3,622732323103,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,4,622732323104,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323231,5,622732323105,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,6,622732323106,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,23-Apr-2026,6227323231,8,622732323108,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,7,622732323107,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,1,622732323101,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,9,622732323109,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,10,622732323110,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,12,622732323112,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,14,622732323114,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,13,622732323113,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,17,622732323117,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,18,622732323118,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,15,622732323115,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,16,622732323116,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,11,622732323111,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,19,622732323119,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,20,622732323120,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,22,622732323122,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,21,622732323121,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,25,622732323125,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,26,622732323126,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,24,622732323124,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,23,622732323123,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,27,622732323127,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,28,622732323128,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,29,622732323129,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,30,622732323130,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,3,622732323203,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,4,622732323204,"Serum, SST",Cancelled,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,5,622732323205,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,6,622732323206,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,7,622732323207,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,8,622732323208,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,1,622732323201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,2,622732323202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,10,622732323210,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,12,622732323212,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,14,622732323214,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,13,622732323213,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,11,622732323211,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,15,622732323215,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,9,622732323209,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,16,622732323216,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,17,622732323217,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,21,622732323221,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,23,622732323223,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,26,622732323226,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,20,622732323220,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,24,622732323224,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,22,622732323222,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,27,622732323227,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,25,622732323225,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,19,622732323219,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,28,622732323228,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,18,622732323218,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,29,622732323229,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,2,622732323302,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,4,622732323304,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,30,622732323230,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,3,622732323303,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,6,622732323306,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,7,622732323307,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,1,622732323301,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,5,622732323305,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,8,622732323308,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,9,622732323309,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,10,622732323310,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,13,622732323313,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,12,622732323312,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,16,622732323316,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,14,622732323314,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,15,622732323315,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,11,622732323311,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,17,622732323317,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,19,622732323319,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,24,622732323324,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,20,622732323320,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,23,622732323323,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,26,622732323326,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,25,622732323325,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,22,622732323322,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,27,622732323327,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,21,622732323321,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,18,622732323318,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,29,622732323329,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,30,622732323330,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,28,622732323328,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,2,622732323402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,3,622732323403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,4,622732323404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,5,622732323405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,1,622732323401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,6,622732323406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,10,622732323410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,8,622732323408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,11,622732323411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,7,622732323407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,9,622732323409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,15,622732323415,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,14,622732323414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,13,622732323413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,12,622732323412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,2,622732323602,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,1,622732323601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,3,622732323603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,4,622732323604,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,8,622732323608,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,5,622732323605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,9,622732323609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,7,622732323607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,6,622732323606,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,11,622732323611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,12,622732323612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,10,622732323610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,13,622732323613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,14,622732323614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,15,622732323615,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,2,622732323702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,4,622732323704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,1,622732323701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,3,622732323703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,7,622732323707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,8,622732323708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,5,622732323705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,6,622732323706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,11,622732323711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,12,622732323712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,9,622732323709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,13,622732323713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,10,622732323710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,15,622732323715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,14,622732323714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,17,622732323717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,18,622732323718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,16,622732323716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,1,622732323801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,2,622732323802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,4,622732323804,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,5,622732323805,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,7,622732323807,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,8,622732323808,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,6,622732323806,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,10,622732323810,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,11,622732323811,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,13,622732323813,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,12,622732323812,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,9,622732323809,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,16,622732323816,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,15,622732323815,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,14,622732323814,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,18,622732323818,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,17,622732323817,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,2,622732324002,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,1,622732324001,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,15,622732324015,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,13,622732324013,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,16,622732324016,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,14,622732324014,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,5,622732324005,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,4,622732324004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,8,622732324008,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,9,622732324009,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,6,622732324006,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,3,622732324003,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,10,622732324010,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,7,622732324007,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,17,622732324017,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,12,622732324012,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,11,622732324011,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,3,622732323803,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,1,622732324201,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,2,622732324202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,3,622732324203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,4,622732324204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,5,622732324205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,9,622732324209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,10,622732324210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,7,622732324207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,8,622732324208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,11,622732324211,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,6,622732324206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,13,622732324213,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,12,622732324212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,15,622732324215,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,16,622732324216,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,17,622732324217,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,19,622732324219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,14,622732324214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,21,622732324221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,18,622732324218,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,20,622732324220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,22,622732324222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,1,622732324301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,3,622732324303,"Culture, Stool",Cancelled,Ambient,,STOOL CULTURE,,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,1,622732324401,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,4,622732324304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,2,622732324402,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,18-Mar-2026,6227323243,2,622732324302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,3,622732324403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,4,622732324404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,12-Mar-2026,6227323245,3,622732324503,"Culture, Stool",Received,Ambient,Default Return Frozen,STOOL CULTURE,,,,,,09:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,4,622732324504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,1,622732324501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,2,622732324502,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,DNA,21-Mar-2026,21-Mar-2026,6227323251,1,622732325101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,1,622732325201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,2,622732325202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,3,622732325203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,4,622732325204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,5,622732325205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,6,622732325206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,7,622732325207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,8,622732325208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,2,622732325302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,1,622732325301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,6,622732325306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,5,622732325305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,3,622732325303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,8,622732325308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,7,622732325307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,2,622732325402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,1,622732325401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,,6227323254,4,622732325404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,4,622732325304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,3,622732325403,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,1,622732325601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,2,622732325602,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,3,622732325603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,,6227323256,4,622732325604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,7,622732326407,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,6,622732326406,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,1,622732326401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,2,622732326402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,9,622732326409,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,10,622732326410,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,3,622732326403,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,8,622732326408,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,11,622732326411,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,4,622732326404,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,13,622732326413,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,12,622732326412,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,15,622732326415,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,14,622732326414,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,17,622732326417,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,16,622732326416,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,18,622732326418,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,20,622732326420,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,5,622732326405,"Serum, SST",Not Received,Ambient,,FSH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,22,622732326422,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,21,622732326421,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,23,622732326423,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,24,622732326424,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,25,622732326425,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,19,622732326419,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,26,622732326426,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,27,622732326427,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,28,622732326428,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,29,622732326429,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,30,622732326430,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,1,622732326501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,3,622732326503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,4,622732326504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,2,622732326502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,5,622732326505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,8,622732326508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,6,622732326506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,7,622732326507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,9,622732326509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,10,622732326510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,11,622732326511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,12,622732326512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,13,622732326513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,14,622732326514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,15,622732326515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,21,622732326521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,18,622732326518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,17,622732326517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,25,622732326525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,22,622732326522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,20,622732326520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,29,622732326529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,27,622732326527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,24,622732326524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,16,622732326516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,19,622732326519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,28,622732326528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,26,622732326526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,30,622732326530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,23,622732326523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,1,622732326601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,3,622732326603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,2,622732326602,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,5,622732326605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,7,622732326607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,6,622732326606,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,9,622732326609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,10,622732326610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,8,622732326608,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,4,622732326604,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,12,622732326612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,13,622732326613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,11,622732326611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,14,622732326614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,15,622732326615,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,1,622732326801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,2,622732326802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,3,622732326803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,4,622732326804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,5,622732326805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,6,622732326806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,7,622732326807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,12,622732326812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,13,622732326813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,14,622732326814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,15,622732326815,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,8,622732326808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,10,622732326810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,9,622732326809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,11,622732326811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,3,622732327003,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,2,622732327002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,4,622732327004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,5,622732327005,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,6,622732327006,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,1,622732327001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,8,622732327008,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,7,622732327007,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,10,622732327010,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,9,622732327009,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,11,622732327011,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,12,622732327012,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,13,622732327013,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,14,622732327014,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,15,622732327015,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,18,622732327018,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,17,622732327017,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,16,622732327016,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,1,622732327201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,2,622732327202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,12,622732327212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,13,622732327213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,3,622732327203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,11,622732327211,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,14,622732327214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,15,622732327215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,17,622732327217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,10,622732327210,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,16,622732327216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,5,622732327205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,6,622732327206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,4,622732327204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,7,622732327207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,8,622732327208,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,9,622732327209,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,1,622732327401,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,2,622732327402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,3,622732327403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,5,622732327405,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,4,622732327404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,6,622732327406,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,7,622732327407,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,8,622732327408,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,9,622732327409,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,11,622732327411,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,10,622732327410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,12,622732327412,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,20,622732327420,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,21,622732327421,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,13,622732327413,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,22,622732327422,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,15,622732327415,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,19,622732327419,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,16,622732327416,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,14,622732327414,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,17,622732327417,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,18,622732327418,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,1,622732327601,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,2,622732327602,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,4,622732327604,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,3,622732327603,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,1,622732327701,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,3,622732327703,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,2,622732327702,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:10,12:40,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,4,622732327704,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,DNA,10-Mar-2026,10-Mar-2026,6227323283,1,622732328301,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,1,622732328601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,10:20,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,3,622732328603,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,2,622732328602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,,6227323286,4,622732328604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,1,622732328701,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,3,622732328703,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:45,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,,6227323287,4,622732328704,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,2,622732328702,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,2,622732329502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,3,622732329503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,1,622732329501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,6,622732329506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,5,622732329505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,7,622732329507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,8,622732329508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,11,622732329511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,9,622732329509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,10,622732329510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323295,4,622732329504,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:40,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,12,622732329512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,13,622732329513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,14,622732329514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,16,622732329516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,15,622732329515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,17,622732329517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,19,622732329519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,18,622732329518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,20,622732329520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,23,622732329523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,22,622732329522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,21,622732329521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,25,622732329525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,26,622732329526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,27,622732329527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,24,622732329524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,29,622732329529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,30,622732329530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,28,622732329528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,2,622732329702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323297,4,622732329704,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:45,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,6,622732329706,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,5,622732329705,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,1,622732329701,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,3,622732329703,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,7,622732329707,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,8,622732329708,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,10,622732329710,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,9,622732329709,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,11,622732329711,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,12,622732329712,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,14,622732329714,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,13,622732329713,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,18,622732329718,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,16,622732329716,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,15,622732329715,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,20,622732329720,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,19,622732329719,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,17,622732329717,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,21,622732329721,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,23,622732329723,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,25,622732329725,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,27,622732329727,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,26,622732329726,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,28,622732329728,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,29,622732329729,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,30,622732329730,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,22,622732329722,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,24,622732329724,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,1,622732329901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,3,622732329903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,4,622732329904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,5,622732329905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,2,622732329902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,7,622732329907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,8,622732329908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,9,622732329909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,6,622732329906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,11,622732329911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,12,622732329912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,10,622732329910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,13,622732329913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,15,622732329915,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,14,622732329914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,1,622732330901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,2,622732330902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,4,622732330904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,3,622732330903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,1,622732332001,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,2,622732332002,Biopsy RNA Later,Not Received,Frozen,,SM13/BIOPSY RNA,FROZEN,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,3,622732332003,"Biopsy, Frozen Tissue",Not Received,Frozen,,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,4,622732332004,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,1,622732333001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,2,622732333002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,3,622732333003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,5,622732333005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,4,622732333004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,7,622732333007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,8,622732333008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,9,622732333009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,6,622732333006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,10,622732333010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,11,622732333011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,13,622732333013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,12,622732333012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,15,622732333015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,14,622732333014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,1,622732333201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,2,622732333202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,3,622732333203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,6,622732333206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,4,622732333204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,8,622732333208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,9,622732333209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,5,622732333205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,10,622732333210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,7,622732333207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,11,622732333211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,12,622732333212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,14,622732333214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,13,622732333213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,15,622732333215,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,1,622732333401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,4,622732333404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,2,622732333402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,5,622732333405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,3,622732333403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,6,622732333406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,7,622732333407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,8,622732333408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,9,622732333409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,10,622732333410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,11,622732333411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,12,622732333412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,13,622732333413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,14,622732333414,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,15,622732333415,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,16,622732333416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,17,622732333417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,18,622732333418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,2,622732333502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,3,622732333503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,5,622732333505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,1,622732333501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,7,622732333507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,6,622732333506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,4,622732333504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,8,622732333508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,9,622732333509,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,11,622732333511,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,10,622732333510,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,13,622732333513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,15,622732333515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,16,622732333516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,17,622732333517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,14,622732333514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,12,622732333512,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,2,622732334002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,4,622732334004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,3,622732334003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,1,622732334001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,1,622732334101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,2,622732334102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,3,622732334103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,4,622732334104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,DNA,06-May-2026,06-May-2026,6227323346,1,622732334601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,1,622732334801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,2,622732334802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,3,622732334803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,4,622732334804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,5,622732334805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,7,622732334807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,6,622732334806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,8,622732334808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,,6227323351,4,622732335104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,3,622732335103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,2,622732335102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,1,622732335101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,,6227323355,1,622732335501,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,06-May-2026,6227323355,2,622732335502,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,1,622763513901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,3,622763513903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,8,622763513908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,4,622763513904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,2,622763513902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,5,622763514005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,8,622763514008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,13,622763513913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,6,622763513906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,6,622763514006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,7,622763514007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,9,622763514009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,10,622763513910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,15,622763513915,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,12,622763513912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,9,622763513909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,7,622763513907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,4,622763514004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,11,622763513911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,2,622763514002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,3,622763514003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,1,622763514001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,5,622763513905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,14,622763513914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,12,622763514012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,14,622763514014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,1,622763514101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,15,622763514015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,2,622763514102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,11,622763514011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,10,622763514010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,3,622763514103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,13,622763514013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,8,622763514108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,9,622763514109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,11,622763514111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,12,622763514112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,10,622763514110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,13,622763514113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,7,622763514107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,6,622763514106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,3,622763514203,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,4,622763514204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,13,622763514213,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,5,622763514205,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,5,622763514105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,4,622763514104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,6,622763514206,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,14,622763514214,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,2,622763514202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,10,622763514210,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,1,622763514201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,15,622763514215,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,7,622763514207,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,9,622763514209,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,16,622763514216,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,17,622763514217,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,14,622763514114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,15,622763514115,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,12,622763514212,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,11,622763514211,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,8,622763514208,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,18,622763514218,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,7,622763514407,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,6,622763514406,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,3,622763514403,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,2,622763514402,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,1,622763514401,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,15,622763514415,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,16,622763514416,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,8,622763514408,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,10,622763514410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,4,622763514404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,17,622763514417,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,12,622763514412,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,11,622763514411,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,14,622763514414,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,13,622763514413,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,5,622763514405,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,9,622763514409,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,2,622763514602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,3,622763514603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,8,622763514608,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,9,622763514609,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-4,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,10,622763514610,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,16,622763514616,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,14,622763514614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,21,622763514621,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,4,622763514604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,5,622763514605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,15,622763514615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,18,622763514618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,11,622763514611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,13,622763514613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,6,622763514606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,22,622763514622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,7,622763514607,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,19,622763514619,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,1,622763514601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,17,622763514617,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,12,622763514612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,20,622763514620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,3,622763514803,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,4,622763514804,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,1,622763514801,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,2,622763515002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,3,622763515003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,2,622763514902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,4,622763515004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,2,622763514802,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,1,622763514901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,4,622763514904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,3,622763514903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,1,622763515001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,DNA,26-Mar-2026,26-Mar-2026,6227635156,1,622763515601,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,DNA,27-May-2026,27-May-2026,6227635155,1,622763515501,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,,6227635159,4,622763515904,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,1,622763515901,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,2,622763515902,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,3,622763515903,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,3,622763516103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,,6227635161,4,622763516104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,1,622763516101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,2,622763516102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,1,622763517101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,2,622763517102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,5,622763517105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,7,622763517107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,3,622763517103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,6,622763517106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,4,622763517104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,10,622763517110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,14,622763517114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,15,622763517115,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,11,622763517111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,8,622763517108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,9,622763517109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,13,622763517113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,12,622763517112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,2,622763517302,"Plasma, QuantiFERON Nil",Not Received,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,6,622763517306,"Plasma, QuantiFERON TB2",Not Received,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,7,622763517307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,8,622763517308,"Plasma, QuantiFERON Mitoge",Not Received,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,5,622763517305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,10,622763517310,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,4,622763517304,"Plasma, QuantiFERON TB1",Not Received,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,9,622763517309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,1,622763517301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,3,622763517303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,14,622763517314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,13,622763517313,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,1,622763517401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,15,622763517315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,3,622763517403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,11,622763517311,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,2,622763517402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,12,622763517312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,9,622763517409,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,5,622763517405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,11,622763517411,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,6,622763517406,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,12,622763517412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,4,622763517404,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,7,622763517407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,8,622763517408,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,13,622763517413,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,10,622763517410,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,14,622763517414,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,18,622763517418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,17,622763517417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,15,622763517415,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,16,622763517416,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,1,622763518001,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,28-May-2026,6227635180,3,622763518003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,4,622763518004,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,2,622763518002,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,4,622763518204,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,25-Apr-2026,6227635182,3,622763518203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:45,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,1,622763518201,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,2,622763518202,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,2,622763519302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,1,622763519301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,3,622763519303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,,6227635193,4,622763519304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,1,622763520401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,2,622763520402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,3,622763520403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,15,622763520415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,9,622763520409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,10,622763520410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,11,622763520411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,12,622763520412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,13,622763520413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,5,622763520405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,4,622763520404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,14,622763520414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,7,622763520407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,6,622763520406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,8,622763520408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,2,622763520702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,8,622763520708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,5,622763520705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,4,622763520704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,9,622763520709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,1,622763520701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,11,622763520711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,3,622763520703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,6,622763520706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,17,622763520717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,18,622763520718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,2,622763520802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,3,622763520803,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,13,622763520713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,1,622763520801,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,7,622763520707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,10,622763520710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,12,622763520712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,16,622763520716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,7,622763520807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,9,622763520809,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,10,622763520810,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,11,622763520811,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,14,622763520714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,15,622763520715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,12,622763520812,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,4,622763520804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,6,622763520806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,8,622763520808,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,17,622763520817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,14,622763520814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,5,622763520805,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,13,622763520813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,16,622763520816,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,15,622763520815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,2,622763521102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,3,622763521103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,4,622763521104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,1,622763521101,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,8,622763521108,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,10,622763521110,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,6,622763521106,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,5,622763521105,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,11,622763521111,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,13,622763521113,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,14,622763521114,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,7,622763521107,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,19,622763521119,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,16,622763521116,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,20,622763521120,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,9,622763521109,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,21,622763521121,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,22,622763521122,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,17,622763521117,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,18,622763521118,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,12,622763521112,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,2,622763521302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,3,622763521303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,4,622763521304,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,15,622763521115,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,1,622763521301,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,DNA,09-Apr-2026,09-Apr-2026,6227635218,1,622763521801,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,2,622763522302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,1,622763522301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,3,622763522303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,,6227635223,4,622763522304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,2,622769771802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,3,622769771803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,5,622769771805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,1,622769771801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,6,622769771806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,4,622769771804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,7,622769771807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,11,622769771811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,13,622769771813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,10,622769771810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,14,622769771814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,15,622769771815,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,8,622769771808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,1,622769771901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,2,622769771902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,4,622769771904,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,5,622769771905,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,3,622769771903,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,8,622769771908,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,7,622769771907,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,6,622769771906,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,10,622769771910,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,9,622769771809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,11,622769771911,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,12,622769771812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,9,622769771909,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,12,622769771912,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,13,622769771913,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,14,622769771914,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,17,622769771917,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,15,622769771915,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,16,622769771916,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,18,622769771918,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,6,622769772206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,7,622769772207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,13,622769772213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,10,622769772210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,12,622769772212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,11,622769772211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,14,622769772214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,8,622769772208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,15,622769772215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,9,622769772209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,2,622769772202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,5,622769772205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,3,622769772203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,4,622769772204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,1,622769772201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,1,622769772301,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,4,622769772304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,2,622769772302,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,3,622769772303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,5,622769772305,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,7,622769772307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,16,622769772216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,17,622769772217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,21,622769772321,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,6,622769772306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,12,622769772312,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,13,622769772313,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,14,622769772314,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,9,622769772309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,18,622769772318,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,16,622769772316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,17,622769772317,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,8,622769772308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,15,622769772315,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,19,622769772319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,10,622769772310,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,20,622769772320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,22,622769772322,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,11,622769772311,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,1,622769772501,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,3,622769772503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,4,622769772504,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,2,622769772502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,2,622769773602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,DNA,08-Apr-2026,08-Apr-2026,6227697731,1,622769773101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,1,622769773601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,,6227697736,4,622769773604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,3,622769773603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,5,622769774505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,1,622769774501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,6,622769774506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,4,622769774504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,8,622769774508,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,3,622769774503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,2,622769774502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,7,622769774507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,9,622769774509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,14,622769774514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,16,622769774516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,18,622769774518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,17,622769774517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,13,622769774513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,12,622769774512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,11,622769774511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,15,622769774515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,19,622769774519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,10,622769774510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,30,622769774530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,20,622769774520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,22,622769774522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,25,622769774525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,23,622769774523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,26,622769774526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,21,622769774521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,29,622769774529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,27,622769774527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,24,622769774524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,28,622769774528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,1,622781089901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,3,622781089903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,2,622781089902,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,4,622781089904,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,5,622781089905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,6,622781089906,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,10,622781089910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,11,622781089911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,12,622781089912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,13,622781089913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,14,622781089914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,15,622781089915,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,8,622781089908,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,9,622781089909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,2,622781090002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,4,622781090004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,6,622781090006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,7,622781090007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,8,622781090008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,9,622781090009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,10,622781090010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,3,622781090003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,5,622781090005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,12,622781090012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,14,622781090014,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,13,622781090013,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,15,622781090015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,1,622781090101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,2,622781090102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,3,622781090103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,4,622781090104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,1,622781090001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,6,622781090106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,7,622781090107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,8,622781090108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,9,622781090109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,10,622781090110,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,11,622781090111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,12,622781090112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,14,622781090114,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,13,622781090113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,7,622781089907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,11,622781090011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,5,622781090105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,15,622781090115,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,2,622781090402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,3,622781090403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,4,622781090404,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,1,622781090501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,2,622781090502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,3,622781090503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,4,622781090504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,1,622781090401,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,5,622732322305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:01,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,3,622793314203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,5,622793314205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,2,622793314202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,4,622793314204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,6,622793314206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,1,622793314201,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,7,622793314207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,10,622793314210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,12,622793314212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,9,622793314209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,11,622793314211,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,8,622793314208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,14,622793314214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,17,622793314217,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,13,622793314213,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,18,622793314218,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,1,622793314301,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,15,622793314215,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,19,622793314219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,2,622793314302,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,21,622793314221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,22,622793314222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,20,622793314220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,16,622793314216,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,4,622793314304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,8,622793314308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,7,622793314307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,3,622793314303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,20,622793314320,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,6,622793314306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,9,622793314309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,11,622793314311,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-12TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,19,622793314319,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,17,622793314317,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,22,622793314322,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,EXPEDITED FRZN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,10,622793314310,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,16,622793314316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,23,622793314323,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,18,622793314318,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,12,622793314312,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,15,622793314315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,14,622793314314,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,13,622793314313,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMAPK I-12 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,5,622793314305,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-12,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,21,622793314321,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,5,622732328705,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,12:52,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,2,622799396202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,15,622799396215,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,4,622799396204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,1,622799396201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,10,622799396210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,14,622799396214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,3,622799396203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,8,622799396208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,12,622799396212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,11,622799396211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,7,622799396207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,9,622799396209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,5,622799396205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,6,622799396206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,13,622799396213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,14,622799396614,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,17,622799396617,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,2,622799396602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,3,622799396603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,12,622799396612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,1,622799396601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,13,622799396613,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,7,622799396607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,15,622799396615,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,8,622799396608,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,4,622799396604,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,10,622799396610,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,11,622799396611,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,6,622799396606,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,5,622799396605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,16,622799396616,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,18,622799396618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,9,622799396609,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,4,622799397104,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,3,622799397103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,1,622799397101,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,2,622799397102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,DNA,20-May-2026,20-May-2026,6227993977,1,622799397701,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,1,622799398401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,3,622799398403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,,6227993984,4,622799398404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,2,622799398402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,20-May-2026,6227993987,2,622799398702,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,,6227993987,1,622799398701,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,5,622732324405,,Cancelled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,6,622732324406,,Cancelled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,5,622732328605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,15:49,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,2,622802395102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,1,622802395101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,3,622802395103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,,6228023951,4,622802395104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,5,622732325405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:49,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,3,622803655303,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,5,622803655305,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,7,622803655307,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,8,622803655308,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,4,622803655304,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,1,622803655301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,6,622803655306,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,2,622803655302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,12,622803655312,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,13,622803655313,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,15,622803655315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,11,622803655311,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,17,622803655317,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,18,622803655318,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,14,622803655314,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,9,622803655309,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,16,622803655316,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,4,622803655404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,5,622803655405,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,1,622803655401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,6,622803655406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,7,622803655407,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,9,622803655409,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,10,622803655410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,8,622803655408,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,10,622803655310,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,3,622803655403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,11,622803655411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,2,622803655402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,12,622803655412,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,13,622803655413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,14,622803655414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,15,622803655415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,16,622803655416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,17,622803655417,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,18,622803655418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,1,622811460801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,7,622811460807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,3,622811460803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,6,622811460806,"Plasma, QuantiFERON TB2",Not Received,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,8,622811460808,"Plasma, QuantiFERON Mitoge",Not Received,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,9,622811460809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,4,622811460804,"Plasma, QuantiFERON TB1",Not Received,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,5,622811460805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,11,622811460811,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,10,622811460810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,2,622811460802,"Plasma, QuantiFERON Nil",Not Received,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,12,622811460812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,14,622811460814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,15,622811460815,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,13,622811460813,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,1,622811461001,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,2,622811461002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,5,622811461005,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,3,622811461003,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,6,622811461006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,4,622811461004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,10,622811461010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,11,622811461011,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,9,622811461009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,7,622811461007,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,12,622811461012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,13,622811461013,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,14,622811461014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,8,622811461008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,,6228114610,15,622811461015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,3,622813735903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,1,622813735901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,4,622813735904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,2,622813735902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,1,622817339701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,4,622817339704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,3,622817339703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,2,622817339702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,6,622817339706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,8,622817339708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,5,622817339705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,7,622817339707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,12,622817339712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,16,622817339716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,18,622817339718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,17,622817339717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,9,622817339709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,14,622817339714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,11,622817339711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,10,622817339710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,15,622817339715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,13,622817339713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,14,622817993214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,9,622817993209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,15,622817993215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,16,622817993216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,12,622817993212,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,13,622817993213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,17,622817993217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,10,622817993210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,11,622817993211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,1,622817993201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,3,622817993203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,4,622817993204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,7,622817993207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,2,622817993202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,8,622817993208,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,1,622817993601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,2,622817993602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,6,622817993606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,4,622817993604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,10,622817993610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,5,622817993605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,14,622817993614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,11,622817993611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,12,622817993612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,13,622817993613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,16,622817993616,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,15,622817993615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,9,622817993609,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,19,622817993619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,18,622817993618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,3,622817993603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,17,622817993617,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,6,622817993206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,5,622817993205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,20,622817993620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,21,622817993621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,8,622817993608,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,7,622817993607,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,22,622817993622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,DNA,10-Apr-2026,10-Apr-2026,6228179942,1,622817994201,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,3,622817994503,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,4,622817994504,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,1,622817994501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,2,622817994502,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,1,622819434101,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,4,622819434104,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,3,622819434103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,2,622819434102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,5,622763516105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:58,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,5,622763522305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:49,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,31,622732323331,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,5,622732322405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:46,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,3,622825207203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,1,622825207201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,08:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,,6228252073,4,622825207304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,2,622825207302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,4,622825207204,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,2,622825207202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,3,622825207303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,1,622825207301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,5,622769773605,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:15,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,1,622830822401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,2,622830822402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,5,622830822405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,6,622830822406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,7,622830822407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,9,622830822409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,10,622830822410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,8,622830822408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,11,622830822411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,13,622830822413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,3,622830822403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,4,622830822404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,14,622830822414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,16,622830822416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,15,622830822415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,12,622830822412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,17,622830822417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,18,622830822418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,5,622802395105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:31,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,3,622839811503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,2,622839811502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,4,622839811504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,6,622839811506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,5,622839811505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,7,622839811507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,8,622839811508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,10,622839811510,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,9,622839811509,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,11,622839811511,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,12,622839811512,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,13,622839811513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,14,622839811514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,1,622839811501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,17,622839811517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,15,622839811515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,16,622839811516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,19,622817339719,,Cancelled,,,,,,,,,10:35,13:56,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,5,622799398405,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:04,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,5,622763515905,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:18,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,1,622850173201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,2,622850173202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,4,622850173204,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,3,622850173203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,5,622732335105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:22,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,1,622861056401,"Stool, ova & parasites(form)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,3,622861056403,"Culture, Stool",Cancelled,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,4,622861056404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,07-May-2026,6228610564,2,622861056402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,5,622825207205,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:52,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,31,622769774531,,In Inventory,,Default Return Frozen,,,,,,,,16:05,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,5,622825207305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,12:51,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,5,622732325605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:06,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,5,622763519305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:34,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,5,622817994505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:59,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,5,622850173205,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:03,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,5,622732332005,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-29_111722 sponsor-study-36940-samples-allSamples.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-29_111722 sponsor-study-36940-samples-allSamples.csv new file mode 100644 index 0000000..7fe468b --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-29_111722 sponsor-study-36940-samples-allSamples.csv @@ -0,0 +1,1445 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,1,622732320301,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,2,622732320302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,3,622732320303,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,7,622732320307,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,8,622732320308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,5,622732320305,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,6,622732320306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,11,622732320311,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,4,622732320304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,14,622732320314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,12,622732320312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,15,622732320315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,1,622732320401,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,9,622732320309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,3,622732320403,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,4,622732320404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,2,622732320402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,6,622732320406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,7,622732320407,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,5,622732320405,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,,6227323203,10,622732320310,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,13,622732320313,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,9,622732320409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,10,622732320410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,11,622732320411,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,13,622732320413,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,14,622732320414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,15,622732320415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,8,622732320408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,1,622732320501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,12,622732320412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,2,622732320502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,4,622732320504,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,7,622732320507,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,3,622732320503,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,6,622732320506,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,10,622732320510,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,9,622732320509,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,8,622732320508,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,5,622732320505,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,11,622732320511,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,13,622732320513,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,14,622732320514,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,15,622732320515,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,16,622732320516,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,18,622732320518,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,1,622732320601,"Whole Blood, EDTA, Dry",Cancelled,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,17,622732320517,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,12,622732320512,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,4,622732320604,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,7,622732320607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,8,622732320608,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,9,622732320609,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,10,622732320610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,11,622732320611,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,12,622732320612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,2,622732320602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,6,622732320606,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,3,622732320603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,5,622732320605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,17,622732320617,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,14,622732320614,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,18,622732320618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,2,622732320702,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,16,622732320616,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,3,622732320703,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,1,622732320701,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,15,622732320615,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,13,622732320613,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,4,622732320704,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,5,622732320705,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,6,622732320706,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,7,622732320707,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,8,622732320708,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,9,622732320709,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,10,622732320710,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,11,622732320711,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,12,622732320712,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,13,622732320713,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,14,622732320714,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,16,622732320716,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,17,622732320717,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,1,622732320801,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,2,622732320802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,3,622732320803,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,5,622732320805,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,4,622732320804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,7,622732320807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,8,622732320808,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,10,622732320810,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,15,622732320715,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,11,622732320811,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,9,622732320809,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,12,622732320812,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-5,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,13,622732320813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,14,622732320814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,15,622732320815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,16,622732320816,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,17,622732320817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,6,622732320806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,2,622732321002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,4,622732321004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,1,622732321001,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,3,622732321003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,6,622732321006,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-1,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,5,622732321005,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,7,622732321007,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-2,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,8,622732321008,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-3,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,9,622732321009,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-4,77242113UCO3001-4,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,10,622732321010,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,12,622732321012,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,14,622732321014,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,11,622732321011,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,13,622732321013,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,15,622732321015,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,16,622732321016,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,17,622732321017,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,18,622732321018,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,19,622732321019,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,21,622732321021,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,20,622732321020,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,22,622732321022,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,1,622732321101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,2,622732321102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,3,622732321103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,4,622732321104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,1,622732321201,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,3,622732321203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,4,622732321204,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,2,622732321202,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,1,622732321301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,2,622732321302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,3,622732321303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,4,622732321304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,DNA,20-Feb-2026,20-Feb-2026,6227323217,1,622732321701,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,DNA,19-Mar-2026,19-Mar-2026,6227323219,1,622732321901,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,1,622732322301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,2,622732322302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,3,622732322303,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,,6227323223,4,622732322304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,2,622732322402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,1,622732322401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,3,622732322403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,,6227323224,4,622732322404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,2,622732323102,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,3,622732323103,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,4,622732323104,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323231,5,622732323105,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,6,622732323106,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,23-Apr-2026,6227323231,8,622732323108,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,7,622732323107,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,1,622732323101,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,9,622732323109,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,10,622732323110,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,12,622732323112,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,14,622732323114,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,13,622732323113,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,17,622732323117,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,18,622732323118,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,15,622732323115,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,16,622732323116,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,11,622732323111,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,19,622732323119,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,20,622732323120,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,22,622732323122,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,21,622732323121,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,25,622732323125,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,26,622732323126,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,24,622732323124,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,23,622732323123,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,27,622732323127,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,28,622732323128,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,29,622732323129,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,30,622732323130,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,3,622732323203,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,4,622732323204,"Serum, SST",Cancelled,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,5,622732323205,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,6,622732323206,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,7,622732323207,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,8,622732323208,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,1,622732323201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,2,622732323202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,10,622732323210,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,12,622732323212,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,14,622732323214,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,13,622732323213,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,11,622732323211,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,15,622732323215,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,9,622732323209,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,16,622732323216,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,17,622732323217,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,21,622732323221,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,23,622732323223,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,26,622732323226,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,20,622732323220,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,24,622732323224,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,22,622732323222,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,27,622732323227,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,25,622732323225,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,19,622732323219,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,28,622732323228,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,18,622732323218,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,29,622732323229,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,2,622732323302,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,4,622732323304,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,30,622732323230,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,3,622732323303,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,6,622732323306,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,7,622732323307,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,1,622732323301,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,5,622732323305,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,8,622732323308,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,9,622732323309,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,10,622732323310,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,13,622732323313,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,12,622732323312,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,16,622732323316,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,14,622732323314,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,15,622732323315,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,11,622732323311,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,17,622732323317,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,19,622732323319,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,24,622732323324,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,20,622732323320,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,23,622732323323,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,26,622732323326,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,25,622732323325,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,22,622732323322,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,27,622732323327,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,21,622732323321,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,18,622732323318,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,29,622732323329,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,30,622732323330,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,28,622732323328,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,2,622732323402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,3,622732323403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,4,622732323404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,5,622732323405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,1,622732323401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,6,622732323406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,10,622732323410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,8,622732323408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,11,622732323411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,7,622732323407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,9,622732323409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,15,622732323415,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,14,622732323414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,13,622732323413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,12,622732323412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,2,622732323602,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,1,622732323601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,3,622732323603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,4,622732323604,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,8,622732323608,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,5,622732323605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,9,622732323609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,7,622732323607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,6,622732323606,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,11,622732323611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,12,622732323612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,10,622732323610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,13,622732323613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,14,622732323614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,15,622732323615,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,2,622732323702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,4,622732323704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,1,622732323701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,3,622732323703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,7,622732323707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,8,622732323708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,5,622732323705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,6,622732323706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,11,622732323711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,12,622732323712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,9,622732323709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,13,622732323713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,10,622732323710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,15,622732323715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,14,622732323714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,17,622732323717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,18,622732323718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,16,622732323716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,1,622732323801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,2,622732323802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,4,622732323804,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,5,622732323805,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,7,622732323807,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,8,622732323808,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,6,622732323806,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,10,622732323810,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,11,622732323811,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,13,622732323813,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,12,622732323812,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,9,622732323809,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,16,622732323816,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,15,622732323815,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,14,622732323814,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,18,622732323818,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,17,622732323817,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,2,622732324002,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,1,622732324001,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,15,622732324015,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,13,622732324013,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,16,622732324016,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,14,622732324014,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,5,622732324005,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,4,622732324004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,8,622732324008,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,9,622732324009,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,6,622732324006,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,3,622732324003,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,10,622732324010,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,7,622732324007,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,17,622732324017,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,12,622732324012,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,11,622732324011,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,3,622732323803,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,1,622732324201,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,2,622732324202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,3,622732324203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,4,622732324204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,5,622732324205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,9,622732324209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,10,622732324210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,7,622732324207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,8,622732324208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,11,622732324211,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,6,622732324206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,13,622732324213,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,12,622732324212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,15,622732324215,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,16,622732324216,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,17,622732324217,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,19,622732324219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,14,622732324214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,21,622732324221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,18,622732324218,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,20,622732324220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,22,622732324222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,1,622732324301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,3,622732324303,"Culture, Stool",Cancelled,Ambient,,STOOL CULTURE,,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,1,622732324401,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,4,622732324304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,2,622732324402,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,18-Mar-2026,6227323243,2,622732324302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,3,622732324403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,4,622732324404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,12-Mar-2026,6227323245,3,622732324503,"Culture, Stool",Received,Ambient,Default Return Frozen,STOOL CULTURE,,,,,,09:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,4,622732324504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,1,622732324501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,2,622732324502,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,DNA,21-Mar-2026,21-Mar-2026,6227323251,1,622732325101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,1,622732325201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,2,622732325202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,3,622732325203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,4,622732325204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,5,622732325205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,6,622732325206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,7,622732325207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,8,622732325208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,2,622732325302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,1,622732325301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,6,622732325306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,5,622732325305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,3,622732325303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,8,622732325308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,7,622732325307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,2,622732325402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,1,622732325401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,,6227323254,4,622732325404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,4,622732325304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,3,622732325403,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,1,622732325601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,2,622732325602,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,3,622732325603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,,6227323256,4,622732325604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,7,622732326407,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,6,622732326406,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,1,622732326401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,2,622732326402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,9,622732326409,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,10,622732326410,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,3,622732326403,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,8,622732326408,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,11,622732326411,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,4,622732326404,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,13,622732326413,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,12,622732326412,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,15,622732326415,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,14,622732326414,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,17,622732326417,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,16,622732326416,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,18,622732326418,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,20,622732326420,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,5,622732326405,"Serum, SST",Not Received,Ambient,,FSH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,22,622732326422,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,21,622732326421,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,23,622732326423,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,24,622732326424,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,25,622732326425,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,19,622732326419,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,26,622732326426,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,27,622732326427,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,28,622732326428,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,29,622732326429,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,30,622732326430,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,1,622732326501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,3,622732326503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,4,622732326504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,2,622732326502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,5,622732326505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,8,622732326508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,6,622732326506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,7,622732326507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,9,622732326509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,10,622732326510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,11,622732326511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,12,622732326512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,13,622732326513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,14,622732326514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,15,622732326515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,21,622732326521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,18,622732326518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,17,622732326517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,25,622732326525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,22,622732326522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,20,622732326520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,29,622732326529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,27,622732326527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,24,622732326524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,16,622732326516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,19,622732326519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,28,622732326528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,26,622732326526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,30,622732326530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,23,622732326523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,1,622732326601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,3,622732326603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,2,622732326602,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,5,622732326605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,7,622732326607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,6,622732326606,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,9,622732326609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,10,622732326610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,8,622732326608,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,4,622732326604,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,12,622732326612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,13,622732326613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,11,622732326611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,14,622732326614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,15,622732326615,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,1,622732326801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,2,622732326802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,3,622732326803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,4,622732326804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,5,622732326805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,6,622732326806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,7,622732326807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,12,622732326812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,13,622732326813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,14,622732326814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,15,622732326815,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,8,622732326808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,10,622732326810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,9,622732326809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,11,622732326811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,3,622732327003,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,2,622732327002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,4,622732327004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,5,622732327005,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,6,622732327006,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,1,622732327001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,8,622732327008,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,7,622732327007,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,10,622732327010,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,9,622732327009,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,11,622732327011,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,12,622732327012,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,13,622732327013,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,14,622732327014,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,15,622732327015,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,18,622732327018,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,17,622732327017,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,16,622732327016,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,1,622732327201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,2,622732327202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,12,622732327212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,13,622732327213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,3,622732327203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,11,622732327211,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,14,622732327214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,15,622732327215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,17,622732327217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,10,622732327210,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,16,622732327216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,5,622732327205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,6,622732327206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,4,622732327204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,7,622732327207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,8,622732327208,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,9,622732327209,"Stool, unpreserved",Cancelled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,1,622732327401,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,2,622732327402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,3,622732327403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,5,622732327405,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,4,622732327404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,6,622732327406,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,7,622732327407,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,8,622732327408,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,9,622732327409,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,11,622732327411,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,10,622732327410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,12,622732327412,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,20,622732327420,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,21,622732327421,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,13,622732327413,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,22,622732327422,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,15,622732327415,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,19,622732327419,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,16,622732327416,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,14,622732327414,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,17,622732327417,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,18,622732327418,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,1,622732327601,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,2,622732327602,"Stool, unpreserved",Cancelled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,4,622732327604,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,3,622732327603,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,1,622732327701,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,3,622732327703,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,2,622732327702,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:10,12:40,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,4,622732327704,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,DNA,10-Mar-2026,10-Mar-2026,6227323283,1,622732328301,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,1,622732328601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,10:20,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,3,622732328603,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,2,622732328602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,,6227323286,4,622732328604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,1,622732328701,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,3,622732328703,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:45,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,,6227323287,4,622732328704,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,2,622732328702,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,2,622732329502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,3,622732329503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,1,622732329501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,6,622732329506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,5,622732329505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,7,622732329507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,8,622732329508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,11,622732329511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,9,622732329509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,10,622732329510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323295,4,622732329504,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:40,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,12,622732329512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,13,622732329513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,14,622732329514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,16,622732329516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,15,622732329515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,17,622732329517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,19,622732329519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,18,622732329518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,20,622732329520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,23,622732329523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,22,622732329522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,21,622732329521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,25,622732329525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,26,622732329526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,27,622732329527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,24,622732329524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,29,622732329529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,30,622732329530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,28,622732329528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,2,622732329702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323297,4,622732329704,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:45,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,6,622732329706,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,5,622732329705,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,1,622732329701,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,3,622732329703,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,7,622732329707,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,8,622732329708,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,10,622732329710,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,9,622732329709,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,11,622732329711,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,12,622732329712,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,14,622732329714,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,13,622732329713,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,18,622732329718,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,16,622732329716,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,15,622732329715,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,20,622732329720,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,19,622732329719,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,17,622732329717,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,21,622732329721,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,23,622732329723,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,25,622732329725,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,27,622732329727,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,26,622732329726,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,28,622732329728,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,29,622732329729,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,30,622732329730,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,22,622732329722,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,24,622732329724,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,1,622732329901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,3,622732329903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,4,622732329904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,5,622732329905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,2,622732329902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,7,622732329907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,8,622732329908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,9,622732329909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,6,622732329906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,11,622732329911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,12,622732329912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,10,622732329910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,13,622732329913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,15,622732329915,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,14,622732329914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,1,622732330901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,2,622732330902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,4,622732330904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,3,622732330903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,1,622732332001,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,2,622732332002,Biopsy RNA Later,Not Received,Frozen,,SM13/BIOPSY RNA,FROZEN,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,3,622732332003,"Biopsy, Frozen Tissue",Not Received,Frozen,,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,4,622732332004,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,1,622732333001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,2,622732333002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,3,622732333003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,5,622732333005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,4,622732333004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,7,622732333007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,8,622732333008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,9,622732333009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,6,622732333006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,10,622732333010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,11,622732333011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,13,622732333013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,12,622732333012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,15,622732333015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,14,622732333014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,1,622732333201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,2,622732333202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,3,622732333203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,6,622732333206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,4,622732333204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,8,622732333208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,9,622732333209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,5,622732333205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,10,622732333210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,7,622732333207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,11,622732333211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,12,622732333212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,14,622732333214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,13,622732333213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,15,622732333215,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,1,622732333401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,4,622732333404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,2,622732333402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,5,622732333405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,3,622732333403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,6,622732333406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,7,622732333407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,8,622732333408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,9,622732333409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,10,622732333410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,11,622732333411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,12,622732333412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,13,622732333413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,14,622732333414,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,15,622732333415,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,16,622732333416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,17,622732333417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,18,622732333418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,2,622732333502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,3,622732333503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,5,622732333505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,1,622732333501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,7,622732333507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,6,622732333506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,4,622732333504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,8,622732333508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,9,622732333509,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,11,622732333511,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,10,622732333510,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,13,622732333513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,15,622732333515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,16,622732333516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,17,622732333517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,14,622732333514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,12,622732333512,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,2,622732334002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,4,622732334004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,3,622732334003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,1,622732334001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,1,622732334101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,2,622732334102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,3,622732334103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,4,622732334104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,DNA,06-May-2026,06-May-2026,6227323346,1,622732334601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,1,622732334801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,2,622732334802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,3,622732334803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,4,622732334804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,5,622732334805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,7,622732334807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,6,622732334806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,8,622732334808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,,6227323351,4,622732335104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,3,622732335103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,2,622732335102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,1,622732335101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,,6227323355,1,622732335501,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,06-May-2026,6227323355,2,622732335502,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,1,622763513901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,3,622763513903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,8,622763513908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,4,622763513904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,2,622763513902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,5,622763514005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,8,622763514008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,13,622763513913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,6,622763513906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,6,622763514006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,7,622763514007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,9,622763514009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,10,622763513910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,15,622763513915,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,12,622763513912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,9,622763513909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,7,622763513907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,4,622763514004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,11,622763513911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,2,622763514002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,3,622763514003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,1,622763514001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,5,622763513905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,14,622763513914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,12,622763514012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,14,622763514014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,1,622763514101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,15,622763514015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,2,622763514102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,11,622763514011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,10,622763514010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,3,622763514103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,13,622763514013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,8,622763514108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,9,622763514109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,11,622763514111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,12,622763514112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,10,622763514110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,13,622763514113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,7,622763514107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,6,622763514106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,3,622763514203,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,4,622763514204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,13,622763514213,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,5,622763514205,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,5,622763514105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,4,622763514104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,6,622763514206,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,14,622763514214,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,2,622763514202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,10,622763514210,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,1,622763514201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,15,622763514215,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,7,622763514207,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,9,622763514209,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,16,622763514216,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,17,622763514217,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,14,622763514114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,15,622763514115,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,12,622763514212,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,11,622763514211,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,8,622763514208,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,18,622763514218,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,7,622763514407,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,6,622763514406,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,3,622763514403,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,2,622763514402,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,1,622763514401,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,15,622763514415,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,16,622763514416,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,8,622763514408,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,10,622763514410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,4,622763514404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,17,622763514417,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,12,622763514412,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,11,622763514411,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,14,622763514414,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,13,622763514413,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,5,622763514405,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,9,622763514409,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,2,622763514602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,3,622763514603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,8,622763514608,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,9,622763514609,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-4,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,10,622763514610,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,16,622763514616,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,14,622763514614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,21,622763514621,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,4,622763514604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,5,622763514605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,15,622763514615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,18,622763514618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,11,622763514611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,13,622763514613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,6,622763514606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,22,622763514622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,7,622763514607,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,19,622763514619,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,1,622763514601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,17,622763514617,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,12,622763514612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,20,622763514620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,3,622763514803,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,4,622763514804,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,1,622763514801,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,2,622763515002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,3,622763515003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,2,622763514902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,4,622763515004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,2,622763514802,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,1,622763514901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,4,622763514904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,3,622763514903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,1,622763515001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,DNA,26-Mar-2026,26-Mar-2026,6227635156,1,622763515601,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,DNA,27-May-2026,27-May-2026,6227635155,1,622763515501,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,,6227635159,4,622763515904,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,1,622763515901,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,2,622763515902,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,3,622763515903,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,3,622763516103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,,6227635161,4,622763516104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,1,622763516101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,2,622763516102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,1,622763517101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,2,622763517102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,5,622763517105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,7,622763517107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,3,622763517103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,6,622763517106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,4,622763517104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,10,622763517110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,14,622763517114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,15,622763517115,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,11,622763517111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,8,622763517108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,9,622763517109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,13,622763517113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,12,622763517112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,2,622763517302,"Plasma, QuantiFERON Nil",Not Received,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,6,622763517306,"Plasma, QuantiFERON TB2",Not Received,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,7,622763517307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,8,622763517308,"Plasma, QuantiFERON Mitoge",Not Received,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,5,622763517305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,10,622763517310,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,4,622763517304,"Plasma, QuantiFERON TB1",Not Received,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,9,622763517309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,1,622763517301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,3,622763517303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,14,622763517314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,13,622763517313,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,1,622763517401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,15,622763517315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,3,622763517403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,11,622763517311,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,2,622763517402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,12,622763517312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,9,622763517409,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,5,622763517405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,11,622763517411,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,6,622763517406,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,12,622763517412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,4,622763517404,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,7,622763517407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,8,622763517408,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,13,622763517413,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,10,622763517410,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,14,622763517414,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,29-May-2026,6227635174,18,622763517418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,17,622763517417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,15,622763517415,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,,28-May-2026,,29-May-2026,,6227635174,16,622763517416,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,1,622763518001,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,28-May-2026,6227635180,3,622763518003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,4,622763518004,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,2,622763518002,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,4,622763518204,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,25-Apr-2026,6227635182,3,622763518203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:45,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,1,622763518201,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,2,622763518202,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,2,622763519302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,1,622763519301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,3,622763519303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,,6227635193,4,622763519304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,1,622763520401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,2,622763520402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,3,622763520403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,15,622763520415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,9,622763520409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,10,622763520410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,11,622763520411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,12,622763520412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,13,622763520413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,5,622763520405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,4,622763520404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,14,622763520414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,7,622763520407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,6,622763520406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,8,622763520408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,2,622763520702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,8,622763520708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,5,622763520705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,4,622763520704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,9,622763520709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,1,622763520701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,11,622763520711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,3,622763520703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,6,622763520706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,17,622763520717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,18,622763520718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,2,622763520802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,3,622763520803,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,13,622763520713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,1,622763520801,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,7,622763520707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,10,622763520710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,12,622763520712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,16,622763520716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,7,622763520807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,9,622763520809,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,10,622763520810,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,11,622763520811,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,14,622763520714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,15,622763520715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,12,622763520812,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,4,622763520804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,6,622763520806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,8,622763520808,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,17,622763520817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,14,622763520814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,5,622763520805,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,13,622763520813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,16,622763520816,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,15,622763520815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,2,622763521102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,3,622763521103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,4,622763521104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,1,622763521101,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,8,622763521108,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,10,622763521110,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,6,622763521106,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,5,622763521105,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,11,622763521111,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,13,622763521113,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,14,622763521114,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,7,622763521107,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,19,622763521119,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,16,622763521116,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,20,622763521120,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,9,622763521109,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,21,622763521121,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,22,622763521122,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,17,622763521117,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,18,622763521118,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,12,622763521112,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,2,622763521302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,3,622763521303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,4,622763521304,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,15,622763521115,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,1,622763521301,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,DNA,09-Apr-2026,09-Apr-2026,6227635218,1,622763521801,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,2,622763522302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,1,622763522301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,3,622763522303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,,6227635223,4,622763522304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,2,622769771802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,3,622769771803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,5,622769771805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,1,622769771801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,6,622769771806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,4,622769771804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,7,622769771807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,11,622769771811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,13,622769771813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,10,622769771810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,14,622769771814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,15,622769771815,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,8,622769771808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,1,622769771901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,2,622769771902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,4,622769771904,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,5,622769771905,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,3,622769771903,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,8,622769771908,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,7,622769771907,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,6,622769771906,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,10,622769771910,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,9,622769771809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,11,622769771911,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,12,622769771812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,9,622769771909,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,12,622769771912,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,13,622769771913,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,14,622769771914,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,17,622769771917,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,15,622769771915,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,16,622769771916,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,18,622769771918,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,6,622769772206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,7,622769772207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,13,622769772213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,10,622769772210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,12,622769772212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,11,622769772211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,14,622769772214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,8,622769772208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,15,622769772215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,9,622769772209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,2,622769772202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,5,622769772205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,3,622769772203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,4,622769772204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,1,622769772201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,1,622769772301,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,4,622769772304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,2,622769772302,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,3,622769772303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,5,622769772305,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,7,622769772307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,16,622769772216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,17,622769772217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,21,622769772321,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,6,622769772306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,12,622769772312,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,13,622769772313,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,14,622769772314,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,9,622769772309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,18,622769772318,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,16,622769772316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,17,622769772317,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,8,622769772308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,15,622769772315,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,19,622769772319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,10,622769772310,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,20,622769772320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,22,622769772322,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,11,622769772311,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,1,622769772501,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,3,622769772503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,4,622769772504,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,2,622769772502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,2,622769773602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,DNA,08-Apr-2026,08-Apr-2026,6227697731,1,622769773101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,1,622769773601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,,6227697736,4,622769773604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,3,622769773603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,5,622769774505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,1,622769774501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,6,622769774506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,4,622769774504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,8,622769774508,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,3,622769774503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,2,622769774502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,7,622769774507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,9,622769774509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,14,622769774514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,16,622769774516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,18,622769774518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,17,622769774517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,13,622769774513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,12,622769774512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,11,622769774511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,15,622769774515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,19,622769774519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,10,622769774510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,30,622769774530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,20,622769774520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,22,622769774522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,25,622769774525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,23,622769774523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,26,622769774526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,21,622769774521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,29,622769774529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,27,622769774527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,24,622769774524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,28,622769774528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,1,622781089901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,3,622781089903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,2,622781089902,"Plasma, QuantiFERON Nil",Cancelled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,4,622781089904,"Plasma, QuantiFERON TB1",Cancelled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,5,622781089905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,6,622781089906,"Plasma, QuantiFERON TB2",Cancelled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,10,622781089910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,11,622781089911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,12,622781089912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,13,622781089913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,14,622781089914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,15,622781089915,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,8,622781089908,"Plasma, QuantiFERON Mitoge",Cancelled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,9,622781089909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,2,622781090002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,4,622781090004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,6,622781090006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,7,622781090007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,8,622781090008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,9,622781090009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,10,622781090010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,3,622781090003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,5,622781090005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,12,622781090012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,14,622781090014,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,13,622781090013,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,15,622781090015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,1,622781090101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,2,622781090102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,3,622781090103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,4,622781090104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,1,622781090001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,6,622781090106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,7,622781090107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,8,622781090108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,9,622781090109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,10,622781090110,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,11,622781090111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,12,622781090112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,14,622781090114,"Serum, SST",Cancelled,Ambient,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,13,622781090113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,7,622781089907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,11,622781090011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,5,622781090105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,15,622781090115,"Serum, SST",Cancelled,Ambient,,FSH,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,2,622781090402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,3,622781090403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,4,622781090404,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,1,622781090501,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,2,622781090502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,3,622781090503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,4,622781090504,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,1,622781090401,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,5,622732322305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:01,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,3,622793314203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,5,622793314205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,2,622793314202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,4,622793314204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,6,622793314206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,1,622793314201,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,7,622793314207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,10,622793314210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,12,622793314212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,9,622793314209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,11,622793314211,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,8,622793314208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,14,622793314214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,17,622793314217,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,13,622793314213,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,18,622793314218,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,1,622793314301,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,15,622793314215,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,19,622793314219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,2,622793314302,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,21,622793314221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,22,622793314222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,20,622793314220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,16,622793314216,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,4,622793314304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,8,622793314308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,7,622793314307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,3,622793314303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,20,622793314320,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,6,622793314306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,9,622793314309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,11,622793314311,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-12TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,19,622793314319,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,17,622793314317,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,22,622793314322,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,EXPEDITED FRZN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,10,622793314310,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,16,622793314316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,23,622793314323,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,18,622793314318,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,12,622793314312,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,15,622793314315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,14,622793314314,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,13,622793314313,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMAPK I-12 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,5,622793314305,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-12,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,21,622793314321,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,5,622732328705,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,12:52,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,2,622799396202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,15,622799396215,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,4,622799396204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,1,622799396201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,10,622799396210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,14,622799396214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,3,622799396203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,8,622799396208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,12,622799396212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,11,622799396211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,7,622799396207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,9,622799396209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,5,622799396205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,6,622799396206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,13,622799396213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,14,622799396614,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,17,622799396617,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,2,622799396602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,3,622799396603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,12,622799396612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,1,622799396601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,13,622799396613,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,7,622799396607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,15,622799396615,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,8,622799396608,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,4,622799396604,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,10,622799396610,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,11,622799396611,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,6,622799396606,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,5,622799396605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,16,622799396616,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,18,622799396618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,9,622799396609,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,4,622799397104,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,3,622799397103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,1,622799397101,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,2,622799397102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,DNA,20-May-2026,20-May-2026,6227993977,1,622799397701,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,1,622799398401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,3,622799398403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,,6227993984,4,622799398404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,2,622799398402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,20-May-2026,6227993987,2,622799398702,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,,6227993987,1,622799398701,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,5,622732324405,,Cancelled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,6,622732324406,,Cancelled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,5,622732328605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,15:49,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,2,622802395102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,1,622802395101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,3,622802395103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,,6228023951,4,622802395104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,5,622732325405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:49,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,3,622803655303,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,5,622803655305,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,7,622803655307,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,8,622803655308,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,4,622803655304,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,1,622803655301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,6,622803655306,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,2,622803655302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,12,622803655312,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,13,622803655313,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,15,622803655315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,11,622803655311,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,17,622803655317,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,18,622803655318,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,14,622803655314,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,9,622803655309,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,16,622803655316,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,4,622803655404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,5,622803655405,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,1,622803655401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,6,622803655406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,7,622803655407,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,9,622803655409,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,10,622803655410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,8,622803655408,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,10,622803655310,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,3,622803655403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,11,622803655411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,2,622803655402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,12,622803655412,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,13,622803655413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,14,622803655414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,15,622803655415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,16,622803655416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,17,622803655417,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,18,622803655418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,1,622811460801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,7,622811460807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,3,622811460803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,6,622811460806,"Plasma, QuantiFERON TB2",Not Received,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,8,622811460808,"Plasma, QuantiFERON Mitoge",Not Received,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,9,622811460809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,4,622811460804,"Plasma, QuantiFERON TB1",Not Received,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,5,622811460805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,11,622811460811,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,10,622811460810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,2,622811460802,"Plasma, QuantiFERON Nil",Not Received,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,12,622811460812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,14,622811460814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,,6228114608,15,622811460815,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,28-May-2026,,29-May-2026,29-May-2026,6228114608,13,622811460813,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,1,622811461001,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,2,622811461002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,5,622811461005,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,3,622811461003,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,6,622811461006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,4,622811461004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,10,622811461010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,11,622811461011,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,9,622811461009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,7,622811461007,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,12,622811461012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,13,622811461013,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,14,622811461014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,8,622811461008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,,6228114610,15,622811461015,"Serum, SST",Cancelled,Ambient,,FSH,FROZEN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,3,622813735903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,1,622813735901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,4,622813735904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,2,622813735902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,1,622817339701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,4,622817339704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,3,622817339703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,2,622817339702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,6,622817339706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,8,622817339708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,5,622817339705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,7,622817339707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,12,622817339712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,16,622817339716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,18,622817339718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,17,622817339717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,9,622817339709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,14,622817339714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,11,622817339711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,10,622817339710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,15,622817339715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,13,622817339713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,14,622817993214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,9,622817993209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,15,622817993215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,16,622817993216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,12,622817993212,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,13,622817993213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,17,622817993217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,10,622817993210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,11,622817993211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,1,622817993201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,3,622817993203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,4,622817993204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,7,622817993207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,2,622817993202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,8,622817993208,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,1,622817993601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,2,622817993602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,6,622817993606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,4,622817993604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,10,622817993610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,5,622817993605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,14,622817993614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,11,622817993611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,12,622817993612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,13,622817993613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,16,622817993616,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,15,622817993615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,9,622817993609,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,19,622817993619,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,18,622817993618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,3,622817993603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,17,622817993617,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,6,622817993206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,5,622817993205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,20,622817993620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,21,622817993621,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,8,622817993608,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,7,622817993607,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,22,622817993622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,DNA,10-Apr-2026,10-Apr-2026,6228179942,1,622817994201,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,3,622817994503,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,4,622817994504,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,1,622817994501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,2,622817994502,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,1,622819434101,"Stool, ova & parasites(form)",Cancelled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,4,622819434104,"Stool, ova & parasites(PVA)",Cancelled,Ambient,,OVA & PARASITES 2,PVA,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,3,622819434103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,2,622819434102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,5,622763516105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:58,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,5,622763522305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:49,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,31,622732323331,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,5,622732322405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:46,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,3,622825207203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,1,622825207201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,08:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,,6228252073,4,622825207304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,2,622825207302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,4,622825207204,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,2,622825207202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,3,622825207303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,1,622825207301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,5,622769773605,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:15,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,1,622830822401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,2,622830822402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,5,622830822405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,6,622830822406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,7,622830822407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,9,622830822409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,10,622830822410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,8,622830822408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,11,622830822411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,13,622830822413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,3,622830822403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,4,622830822404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,14,622830822414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,16,622830822416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,15,622830822415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,12,622830822412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,17,622830822417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,18,622830822418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,5,622802395105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:31,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,3,622839811503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,2,622839811502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,4,622839811504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,6,622839811506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,5,622839811505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,7,622839811507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,8,622839811508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,10,622839811510,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,9,622839811509,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,11,622839811511,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,12,622839811512,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,13,622839811513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,14,622839811514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,1,622839811501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,17,622839811517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,15,622839811515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,16,622839811516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,19,622817339719,,Cancelled,,,,,,,,,10:35,13:56,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,5,622799398405,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:04,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,5,622763515905,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:18,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,1,622850173201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,2,622850173202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,4,622850173204,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,3,622850173203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,5,622732335105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:22,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,1,622861056401,"Stool, ova & parasites(form)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,3,622861056403,"Culture, Stool",Cancelled,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,4,622861056404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,07-May-2026,6228610564,2,622861056402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,5,622825207205,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:52,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,31,622769774531,,In Inventory,,Default Return Frozen,,,,,,,,16:05,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,5,622825207305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,12:51,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,5,622732325605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:06,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,5,622763519305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:34,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,5,622817994505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:59,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,5,622850173205,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:03,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,5,622732332005,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-29_112154 sponsor-study-36940-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-29_112154 sponsor-study-36940-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..b405441 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-29_112154 sponsor-study-36940-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,544 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6227323202,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6228114609,"Mar 10, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228036552,"Feb 27, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462182,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462184,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462183,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6227933141,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462185,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462186,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462187,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6227323209,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462189,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462188,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227810906,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227933144,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462190,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462191,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933145,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933146,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933147,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933148,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137358,"Mar 12, 2026","Jan 29, 2027",244 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137357,"Mar 12, 2026","Jan 29, 2027",244 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462192,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462193,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462194,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462196,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462197,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462195,"Apr 28, 2026","May 25, 2027",360 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323220,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323221,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6227323222,"Nov 21, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6228252071,"Mar 26, 2026","Jul 20, 2027",416 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323225,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323226,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323227,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323228,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810907,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810909,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810908,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323229,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323230,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810910,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810911,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810912,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323214,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323215,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-11,DILI,6227323216,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6227323218,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252069,"Mar 26, 2026","Mar 31, 2027",305 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252070,"Mar 26, 2026","Mar 31, 2027",305 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252068,"Mar 26, 2026","Mar 31, 2027",305 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462198,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462199,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462200,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462202,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462201,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462203,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462206,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462205,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462204,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462207,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489756,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489757,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489758,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489761,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489760,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489759,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489763,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489762,"May 1, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323298,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323300,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323301,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323302,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323303,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323304,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323306,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323305,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,5,Induction Week 12,6228676757,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323307,"Nov 21, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323308,"Nov 21, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323316,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323317,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323319,"Nov 21, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323318,"Nov 21, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323321,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323322,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323323,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323324,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676759,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676760,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676758,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323326,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323325,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676762,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676763,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676761,"May 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323310,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323311,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-11,DILI,6227323312,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323313,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323314,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323315,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323328,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323327,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323329,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6227323235,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492883,"Apr 23, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492884,"Apr 23, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492885,"Apr 23, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265099,"Mar 27, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265098,"Mar 27, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265100,"Mar 27, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6227323239,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407563,"Apr 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407564,"Apr 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407565,"Apr 15, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6227323241,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461735,"Apr 21, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461736,"Apr 21, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461734,"Apr 21, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228013269,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228492886,"Apr 23, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228194338,"Mar 23, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228690541,"May 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194340,"Mar 23, 2026","Mar 5, 2027",279 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194339,"Mar 23, 2026","Mar 5, 2027",279 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6227323255,"Nov 21, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690542,"May 19, 2026","Aug 7, 2027",434 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690544,"May 19, 2026","Aug 7, 2027",434 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690543,"May 19, 2026","Aug 7, 2027",434 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323257,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323258,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323260,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323259,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013270,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013271,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013272,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323261,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323262,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013275,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013273,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013274,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323246,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323247,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-11,DILI,6227323248,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323250,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323249,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,U,Unscheduled,6227323263,"Nov 21, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227323331,"Nov 23, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765941,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765942,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765943,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227323333,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765944,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765945,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765946,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227323336,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765948,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765947,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765949,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323337,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323338,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765950,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765951,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765952,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765953,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765954,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765955,"Jan 29, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227323339,"Nov 23, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765956,"Jan 29, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765957,"Jan 29, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765958,"Jan 29, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765959,"Jan 29, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227323349,"Nov 23, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765963,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765964,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765965,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765966,"Jan 29, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323350,"Nov 23, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323352,"Nov 23, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765967,"Jan 29, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765968,"Jan 29, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765970,"Jan 29, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765969,"Jan 29, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323353,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323354,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227323356,"Nov 23, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765973,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765972,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765974,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765971,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357528,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357529,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357530,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323357,"Nov 23, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323358,"Nov 23, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357532,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357533,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357531,"Apr 7, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323342,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323343,"Nov 23, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-11,DILI,6227323344,"Nov 23, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323347,"Nov 23, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323345,"Nov 23, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765961,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765962,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765960,"Jan 29, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323359,"Nov 23, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323361,"Nov 23, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323360,"Nov 23, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765975,"Jan 29, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765976,"Jan 29, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765977,"Jan 29, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993930,"Feb 17, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993931,"Feb 17, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993932,"Feb 17, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993933,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993934,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993935,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993936,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993937,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993938,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993941,"Feb 17, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993940,"Feb 17, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993939,"Feb 17, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993949,"Feb 17, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993948,"Feb 17, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993952,"Feb 17, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993951,"Feb 17, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993950,"Feb 17, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993954,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993953,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993955,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993956,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993957,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993958,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993943,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993942,"Feb 17, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-11,DILI,6227993944,"Feb 17, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993945,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993946,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993947,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993959,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993960,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993961,"Feb 17, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697716,"Jan 12, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697717,"Jan 12, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6227697720,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398468,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398470,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398469,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6227697721,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512528,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512526,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512527,"Apr 28, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6227697724,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628517,"May 11, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628515,"May 11, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628516,"May 11, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,5,Induction Week 12,6228251912,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,6,Maintenance Week 4,6228628518,"May 11, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697726,"Jan 12, 2026","Jan 14, 2027",229 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697727,"Jan 12, 2026","Jan 14, 2027",229 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697735,"Jan 12, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697734,"Jan 12, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697737,"Jan 12, 2026","May 11, 2027",346 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697738,"Jan 12, 2026","May 11, 2027",346 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697740,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697739,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697741,"Jan 12, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697742,"Jan 12, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251914,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251913,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251915,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697743,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697744,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251918,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251916,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251917,"Mar 26, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697728,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697729,"Jan 12, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-11,DILI,6227697730,"Jan 12, 2026","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697733,"Jan 12, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697732,"Jan 12, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697747,"Jan 12, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697746,"Jan 12, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367755,"Apr 8, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367756,"Apr 8, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367757,"Apr 8, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6227635143,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308225,"Apr 1, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308226,"Apr 1, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6227635145,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398114,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398116,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6227635147,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501725,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501727,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501726,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228308227,"Apr 1, 2026","Jan 31, 2027",246 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228367758,"Apr 8, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501728,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501729,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367759,"Apr 8, 2026","Mar 5, 2027",279 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367760,"Apr 8, 2026","Mar 5, 2027",279 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367761,"Apr 8, 2026","Mar 5, 2027",279 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635158,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635157,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6227635160,"Jan 5, 2026","Oct 15, 2026",138 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501731,"Apr 26, 2026","Aug 7, 2027",434 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501730,"Apr 26, 2026","Aug 7, 2027",434 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635163,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635162,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635164,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635165,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095872,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095870,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095871,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635167,"Jan 5, 2026","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635166,"Jan 5, 2026","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095874,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095873,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095875,"Mar 5, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635151,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635152,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-11,DILI,6227635153,"Jan 5, 2026","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6227635154,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635168,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635169,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635170,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259263,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259264,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259265,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510217,"Apr 30, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510218,"Apr 30, 2026","Nov 30, 2026",184 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259267,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259266,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510219,"Apr 30, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510220,"Apr 30, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259268,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259269,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510221,"Apr 30, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510222,"Apr 30, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259270,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259271,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259274,"Nov 13, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259273,"Nov 13, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259272,"Nov 13, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259281,"Nov 13, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259282,"Nov 13, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259283,"Nov 13, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259284,"Nov 13, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259285,"Nov 13, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259286,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259287,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259289,"Nov 13, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259288,"Nov 13, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259290,"Nov 13, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259291,"Nov 13, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259276,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259275,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-11,DILI,6227259277,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259280,"Nov 13, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259278,"Nov 13, 2025","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259294,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259293,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259292,"Nov 13, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6227635172,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6227635175,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635176,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635177,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635178,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635179,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,5,Induction Week 12,6228501793,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6227635181,"Jan 5, 2026","Jan 14, 2027",229 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635189,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635190,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635191,"Jan 5, 2026","Oct 15, 2026",138 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635192,"Jan 5, 2026","Oct 15, 2026",138 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635195,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635194,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635197,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635196,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501795,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501794,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501796,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635198,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635199,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501797,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501798,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501799,"Apr 26, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635183,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635184,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-11,DILI,6227635185,"Jan 5, 2026","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635188,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635186,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635187,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635200,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635202,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635201,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993964,"Feb 18, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993963,"Feb 18, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6227993965,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707090,"May 22, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707091,"May 22, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707092,"May 22, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228711855,"May 29, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993967,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993968,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993969,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993970,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,5,Induction Week 12,6228436352,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993973,"Feb 18, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993972,"Feb 18, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993980,"Feb 18, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993981,"Feb 18, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993983,"Feb 18, 2026","May 11, 2027",346 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993982,"Feb 18, 2026","May 11, 2027",346 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993985,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993986,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6227993988,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6228711856,"May 29, 2026","May 31, 2027",366 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436354,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436353,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436355,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993989,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993990,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436356,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436357,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436358,"Apr 19, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993974,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993975,"Feb 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-11,DILI,6227993976,"Feb 18, 2026","Sep 30, 2026",123 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993978,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993979,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993991,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993992,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993993,"Feb 18, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635205,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635203,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6227635206,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398426,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398427,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398428,"Apr 14, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6227635209,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492827,"Apr 23, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492828,"Apr 23, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492826,"Apr 23, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6227635210,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605821,"May 7, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605823,"May 7, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605822,"May 7, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,5,Induction Week 12,6228084840,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,6,Maintenance Week 4,6228605824,"May 7, 2026","Feb 28, 2027",274 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635214,"Jan 5, 2026","Jan 14, 2027",229 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635212,"Jan 5, 2026","Jan 14, 2027",229 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635221,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635222,"Jan 5, 2026","Aug 31, 2026",93 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635224,"Jan 5, 2026","Nov 25, 2026",179 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635225,"Jan 5, 2026","Nov 25, 2026",179 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635226,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635227,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635228,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635229,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084843,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084842,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084841,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635230,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635231,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084845,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084844,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084846,"Mar 4, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635215,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635216,"Jan 5, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-11,DILI,6227635217,"Jan 5, 2026","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635219,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635220,"Jan 5, 2026","Dec 31, 2026",215 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635234,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635233,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635232,"Jan 5, 2026","Oct 31, 2026",154 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6227323267,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137352,"Mar 11, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137353,"Mar 11, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137354,"Mar 11, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179928,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179930,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179929,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6227323269,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173395,"Mar 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173396,"Mar 18, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6227323271,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179931,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179933,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6227323273,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179934,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179935,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227752380,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227810902,"Jan 28, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137356,"Mar 11, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137355,"Mar 11, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023948,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023949,"Feb 25, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179938,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179937,"Mar 23, 2026","Oct 11, 2026",134 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227323275,"Nov 21, 2025","Dec 26, 2026",210 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227810903,"Jan 28, 2026","Jan 15, 2027",230 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179939,"Mar 23, 2026","Jan 29, 2027",244 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179940,"Mar 23, 2026","Jan 29, 2027",244 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323284,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323285,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6227323288,"Nov 21, 2025","Sep 12, 2026",105 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023950,"Feb 25, 2026","Nov 28, 2026",182 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023952,"Feb 25, 2026","May 11, 2027",346 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179946,"Mar 23, 2026","Jul 20, 2027",416 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179944,"Mar 23, 2026","Jul 20, 2027",416 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323289,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323290,"Nov 21, 2025","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323291,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323292,"Nov 21, 2025","Jun 30, 2026",31 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752381,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752383,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752382,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323293,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323294,"Nov 21, 2025","Jul 1, 2026",32 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752385,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752386,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752384,"Jan 20, 2026","Oct 7, 2026",130 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323279,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323278,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-11,DILI,6227323280,"Nov 21, 2025","May 31, 2026",1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323281,"Nov 21, 2025","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323282,"Nov 21, 2025","Jul 31, 2026",62 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179941,"Mar 23, 2026","Mar 31, 2027",305 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179943,"Mar 23, 2026","Mar 31, 2027",305 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,U,Unscheduled,6227323296,"Nov 21, 2025","Aug 31, 2026",93 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10001 Dr. Matej Falc, CZ10010 Dr.Nabil El Lababidi, CZ10022 Dr. Petr Hrabak, CZ10020 Dr.Lucie Gonsorcikova, CZ10012 Dr.Stefan Konecny, CZ10021 Dr.Martin Bortlik, CZ10016 Dr.Robert Mudr, CZ10003 Dr. Leksa Vaclav, CZ10009 Dr. Jiri Pumprla, CZ10015 Dr.Jan Matous, CZ10013 Dr.David Stepek, CZ10006 Dr. Michal Konecny",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-05-29_112211 sponsor-study-35472-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-05-29_112211 sponsor-study-35472-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..9cfdc22 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-05-29_112211 sponsor-study-35472-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,285 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350973,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350970,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350974,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350976,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350978,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350979,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541248,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541247,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149461,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149462,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149463,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350980,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350983,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261232,"Nov 18, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261231,"Nov 18, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541250,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541253,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350985,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350986,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350987,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547334,"Dec 31, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547335,"Dec 31, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6225350989,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541255,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541254,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547339,"Dec 31, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226573502,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226889397,"Oct 7, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227261233,"Nov 18, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541263,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541262,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226573503,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226889398,"Oct 7, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227043303,"Oct 23, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227261234,"Nov 18, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149464,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149465,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226649754,"Aug 29, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226889399,"Oct 7, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541265,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541267,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541268,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541266,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573504,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573505,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573507,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573506,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573508,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541269,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541270,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541272,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541271,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350990,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350991,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350992,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350993,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350994,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768461,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605654,"May 7, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605655,"May 7, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350996,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350995,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350997,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350998,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350999,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768462,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768463,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768464,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768465,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6225351000,"Feb 24, 2025","Sep 1, 2025",-270 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227547340,"Dec 31, 2025","Sep 12, 2026",105 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227768466,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6225351001,"Feb 24, 2025","Jul 31, 2025",-302 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227547341,"Dec 31, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227768467,"Jan 27, 2026","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6225351003,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649755,"Aug 29, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649756,"Aug 29, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178914,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178913,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178915,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178916,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178917,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178919,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178918,"Nov 14, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351038,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351039,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351043,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520226,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520225,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520227,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6225351048,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551696,"Aug 22, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551699,"Aug 22, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551700,"Aug 22, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655163,"Sep 5, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655166,"Sep 5, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655165,"Sep 5, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655162,"Sep 5, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655164,"Sep 5, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351053,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351054,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351055,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520230,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520228,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520229,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780849,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780851,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780848,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780852,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780850,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520231,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520233,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520232,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226550654,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226561520,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072416,"Oct 20, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072415,"Oct 20, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072418,"Oct 20, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072417,"Oct 20, 2025","Jul 31, 2026",62 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226313626,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226550655,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226561521,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520234,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520235,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520236,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226313627,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226550656,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226561522,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226804963,"Sep 25, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313628,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313629,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313630,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313631,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313632,"Jul 14, 2025","Apr 17, 2026",-42 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520237,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520239,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520240,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520241,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520238,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351058,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351059,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351061,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351062,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351060,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6226780854,"Sep 24, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520244,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520246,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351065,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351067,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351064,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351063,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520248,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520250,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520247,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520249,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520251,"Dec 26, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-4,Liver Monitoring,6225351068,"Feb 24, 2025","Sep 1, 2025",-270 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-5,Suspected Liver Event FU,6225351069,"Feb 24, 2025","Jul 31, 2025",-302 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6225351071,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023802,"Feb 25, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023803,"Feb 25, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351073,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351075,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351079,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542163,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542162,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149810,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149812,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149811,"Mar 13, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351085,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351086,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542165,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542164,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844727,"Feb 1, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844726,"Feb 1, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351087,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351088,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351089,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542167,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542168,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542169,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542166,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351091,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351090,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6226935605,"Oct 14, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6228013045,"Feb 26, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226550647,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226561518,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226991312,"Oct 26, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228013046,"Feb 26, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228114461,"Mar 11, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228398393,"Apr 15, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226550648,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226561519,"Aug 21, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226991313,"Oct 26, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261837,"Nov 20, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261838,"Nov 20, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6228114462,"Mar 11, 2026","Oct 11, 2026",134 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550649,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550650,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550652,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550651,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550653,"Aug 18, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351092,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351096,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6227498378,"Dec 22, 2025","Aug 31, 2026",93 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232036,"Mar 25, 2026","Jan 3, 2027",218 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232038,"Mar 25, 2026","Jan 3, 2027",218 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234299,"Mar 30, 2026","Jan 3, 2027",218 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351097,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351099,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351101,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351100,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351098,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542174,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542176,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542175,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542177,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6225351102,"Feb 24, 2025","Sep 1, 2025",-270 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542179,"Dec 25, 2025","Sep 12, 2026",105 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542178,"Dec 25, 2025","Sep 12, 2026",105 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6225351103,"Feb 24, 2025","Jul 31, 2025",-302 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542180,"Dec 25, 2025","Jun 30, 2026",31 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542181,"Dec 25, 2025","Jun 30, 2026",31 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351104,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351105,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6227542183,"Dec 25, 2025","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417882,"Apr 15, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417883,"Apr 15, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351107,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351108,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351112,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351113,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351114,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351115,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227767268,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775503,"Jan 23, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775504,"Jan 23, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351117,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351116,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351118,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351119,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767269,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767270,"Jan 27, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227775506,"Jan 23, 2026","Oct 7, 2026",130 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351123,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351122,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351121,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742569,"May 25, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742568,"May 25, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351124,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351125,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6226976944,"Oct 26, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6228521304,"Apr 30, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226560889,"Aug 20, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226752556,"Sep 17, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226976945,"Oct 26, 2025","May 31, 2026",1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560890,"Aug 20, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560892,"Aug 20, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560894,"Aug 20, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560893,"Aug 20, 2025","Jul 1, 2026",32 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389162,"Apr 15, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389161,"Apr 15, 2026","Feb 28, 2027",274 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351129,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351128,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351130,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351127,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351131,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351132,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351133,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351134,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351135,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-4,Liver Monitoring,6225351136,"Feb 24, 2025","Sep 1, 2025",-270 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-5,Suspected Liver Event FU,6225351137,"Feb 24, 2025","Jul 31, 2025",-302 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351139,"Feb 24, 2025","Dec 1, 2025",-179 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351138,"Feb 24, 2025","Dec 1, 2025",-179 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-06-01_122158 sponsor-study-36940-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122158 sponsor-study-36940-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..60c0175 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122158 sponsor-study-36940-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,542 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6227323202,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6228114609,"Mar 10, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228036552,"Feb 27, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462182,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462184,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462183,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6227933141,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462185,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462186,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462187,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6227323209,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462189,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462188,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227810906,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227933144,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462190,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462191,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933145,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933146,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933147,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933148,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137358,"Mar 12, 2026","Jan 29, 2027",241 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137357,"Mar 12, 2026","Jan 29, 2027",241 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462192,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462193,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462194,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462196,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462197,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462195,"Apr 28, 2026","May 25, 2027",357 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323220,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323221,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6227323222,"Nov 21, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6228252071,"Mar 26, 2026","Jul 20, 2027",413 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323225,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323226,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323227,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323228,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810907,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810909,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810908,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323229,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323230,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810910,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810911,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810912,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323214,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323215,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-11,DILI,6227323216,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6227323218,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252069,"Mar 26, 2026","Mar 31, 2027",302 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252070,"Mar 26, 2026","Mar 31, 2027",302 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252068,"Mar 26, 2026","Mar 31, 2027",302 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462198,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462199,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462200,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462202,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462201,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462203,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462206,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462205,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462204,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462207,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489756,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489757,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489758,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489761,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489760,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489759,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489763,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489762,"May 1, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323298,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323300,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323301,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323302,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323303,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323304,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323306,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323305,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,5,Induction Week 12,6228676757,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323307,"Nov 21, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323308,"Nov 21, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323316,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323317,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323319,"Nov 21, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323318,"Nov 21, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323321,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323322,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323323,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323324,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676759,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676760,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676758,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323326,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323325,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676762,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676763,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676761,"May 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323310,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323311,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-11,DILI,6227323312,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323313,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323314,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323315,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323328,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323327,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323329,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6227323235,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492883,"Apr 23, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492884,"Apr 23, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492885,"Apr 23, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265099,"Mar 27, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265098,"Mar 27, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265100,"Mar 27, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6227323239,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407563,"Apr 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407564,"Apr 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407565,"Apr 15, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6227323241,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461735,"Apr 21, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461736,"Apr 21, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461734,"Apr 21, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228013269,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228492886,"Apr 23, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228194338,"Mar 23, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228690541,"May 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194340,"Mar 23, 2026","Mar 5, 2027",276 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194339,"Mar 23, 2026","Mar 5, 2027",276 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690542,"May 19, 2026","Aug 7, 2027",431 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690544,"May 19, 2026","Aug 7, 2027",431 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690543,"May 19, 2026","Aug 7, 2027",431 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323257,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323258,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323260,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323259,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013270,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013271,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013272,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323261,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323262,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013275,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013273,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013274,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323246,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323247,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-11,DILI,6227323248,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323250,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323249,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,U,Unscheduled,6227323263,"Nov 21, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227323331,"Nov 23, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765941,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765942,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765943,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227323333,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765944,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765945,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765946,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227323336,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765948,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765947,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765949,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323337,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323338,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765950,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765951,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765952,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765953,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765954,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765955,"Jan 29, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227323339,"Nov 23, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765956,"Jan 29, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765957,"Jan 29, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765958,"Jan 29, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765959,"Jan 29, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227323349,"Nov 23, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765963,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765964,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765965,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765966,"Jan 29, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323350,"Nov 23, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323352,"Nov 23, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765967,"Jan 29, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765968,"Jan 29, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765970,"Jan 29, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765969,"Jan 29, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323353,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323354,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227323356,"Nov 23, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765973,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765972,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765974,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765971,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357528,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357529,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357530,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323357,"Nov 23, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323358,"Nov 23, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357532,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357533,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357531,"Apr 7, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323342,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323343,"Nov 23, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-11,DILI,6227323344,"Nov 23, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323347,"Nov 23, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323345,"Nov 23, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765961,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765962,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765960,"Jan 29, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323359,"Nov 23, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323361,"Nov 23, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323360,"Nov 23, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765975,"Jan 29, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765976,"Jan 29, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765977,"Jan 29, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993930,"Feb 17, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993931,"Feb 17, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993932,"Feb 17, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993933,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993934,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993935,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993936,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993937,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993938,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993941,"Feb 17, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993940,"Feb 17, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993939,"Feb 17, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993949,"Feb 17, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993948,"Feb 17, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993952,"Feb 17, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993951,"Feb 17, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993950,"Feb 17, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993954,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993953,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993955,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993956,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993957,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993958,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993943,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993942,"Feb 17, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-11,DILI,6227993944,"Feb 17, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993945,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993946,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993947,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993959,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993960,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993961,"Feb 17, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697716,"Jan 12, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697717,"Jan 12, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6227697720,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398468,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398470,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398469,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6227697721,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512528,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512526,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512527,"Apr 28, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6227697724,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628517,"May 11, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628515,"May 11, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628516,"May 11, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,5,Induction Week 12,6228251912,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,6,Maintenance Week 4,6228628518,"May 11, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697726,"Jan 12, 2026","Jan 14, 2027",226 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697727,"Jan 12, 2026","Jan 14, 2027",226 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697735,"Jan 12, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697734,"Jan 12, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697737,"Jan 12, 2026","May 11, 2027",343 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697738,"Jan 12, 2026","May 11, 2027",343 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697740,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697739,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697741,"Jan 12, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697742,"Jan 12, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251914,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251913,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251915,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697743,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697744,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251918,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251916,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251917,"Mar 26, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697728,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697729,"Jan 12, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-11,DILI,6227697730,"Jan 12, 2026","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697733,"Jan 12, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697732,"Jan 12, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697747,"Jan 12, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697746,"Jan 12, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367755,"Apr 8, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367756,"Apr 8, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367757,"Apr 8, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6227635143,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308225,"Apr 1, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308226,"Apr 1, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6227635145,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398114,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398116,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6227635147,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501725,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501727,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501726,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228308227,"Apr 1, 2026","Jan 31, 2027",243 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228367758,"Apr 8, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501728,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501729,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367759,"Apr 8, 2026","Mar 5, 2027",276 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367760,"Apr 8, 2026","Mar 5, 2027",276 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367761,"Apr 8, 2026","Mar 5, 2027",276 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635158,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635157,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6227635160,"Jan 5, 2026","Oct 15, 2026",135 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501731,"Apr 26, 2026","Aug 7, 2027",431 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501730,"Apr 26, 2026","Aug 7, 2027",431 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635163,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635162,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635164,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635165,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095872,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095870,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095871,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635167,"Jan 5, 2026","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635166,"Jan 5, 2026","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095874,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095873,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095875,"Mar 5, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635151,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635152,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-11,DILI,6227635153,"Jan 5, 2026","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6227635154,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635168,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635169,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635170,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259263,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259264,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259265,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510217,"Apr 30, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510218,"Apr 30, 2026","Nov 30, 2026",181 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259267,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259266,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510219,"Apr 30, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510220,"Apr 30, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259268,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259269,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510221,"Apr 30, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510222,"Apr 30, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259270,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259271,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259274,"Nov 13, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259273,"Nov 13, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259272,"Nov 13, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259281,"Nov 13, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259282,"Nov 13, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259283,"Nov 13, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259284,"Nov 13, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259285,"Nov 13, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259286,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259287,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259289,"Nov 13, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259288,"Nov 13, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259290,"Nov 13, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259291,"Nov 13, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259276,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259275,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-11,DILI,6227259277,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259280,"Nov 13, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259278,"Nov 13, 2025","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259294,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259293,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259292,"Nov 13, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6227635172,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6227635175,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635176,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635177,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635178,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635179,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,5,Induction Week 12,6228501793,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6227635181,"Jan 5, 2026","Jan 14, 2027",226 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635189,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635190,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635191,"Jan 5, 2026","Oct 15, 2026",135 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635192,"Jan 5, 2026","Oct 15, 2026",135 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635195,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635194,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635197,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635196,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501795,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501794,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501796,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635198,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635199,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501797,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501798,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501799,"Apr 26, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635183,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635184,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-11,DILI,6227635185,"Jan 5, 2026","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635188,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635187,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635200,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635202,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635201,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993964,"Feb 18, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993963,"Feb 18, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6227993965,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707090,"May 22, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707091,"May 22, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707092,"May 22, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228711855,"May 29, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993967,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993968,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993969,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993970,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,5,Induction Week 12,6228436352,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993973,"Feb 18, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993972,"Feb 18, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993980,"Feb 18, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993981,"Feb 18, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993983,"Feb 18, 2026","May 11, 2027",343 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993982,"Feb 18, 2026","May 11, 2027",343 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993985,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993986,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6227993988,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6228711856,"May 29, 2026","May 31, 2027",363 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436354,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436353,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436355,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993989,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993990,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436356,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436357,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436358,"Apr 19, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993974,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993975,"Feb 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-11,DILI,6227993976,"Feb 18, 2026","Sep 30, 2026",120 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993978,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993979,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993991,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993992,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993993,"Feb 18, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635205,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635203,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6227635206,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398426,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398427,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398428,"Apr 14, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6227635209,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492827,"Apr 23, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492828,"Apr 23, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492826,"Apr 23, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6227635210,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605821,"May 7, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605823,"May 7, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605822,"May 7, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,5,Induction Week 12,6228084840,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,6,Maintenance Week 4,6228605824,"May 7, 2026","Feb 28, 2027",271 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635214,"Jan 5, 2026","Jan 14, 2027",226 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635212,"Jan 5, 2026","Jan 14, 2027",226 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635221,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635222,"Jan 5, 2026","Aug 31, 2026",90 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635224,"Jan 5, 2026","Nov 25, 2026",176 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635225,"Jan 5, 2026","Nov 25, 2026",176 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635226,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635227,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635228,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635229,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084843,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084842,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084841,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635230,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635231,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084845,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084844,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084846,"Mar 4, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635215,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635216,"Jan 5, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-11,DILI,6227635217,"Jan 5, 2026","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635219,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635220,"Jan 5, 2026","Dec 31, 2026",212 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635234,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635233,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635232,"Jan 5, 2026","Oct 31, 2026",151 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6227323267,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137352,"Mar 11, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137353,"Mar 11, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137354,"Mar 11, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179928,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179930,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179929,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6227323269,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173395,"Mar 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173396,"Mar 18, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6227323271,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179931,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179933,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6227323273,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179934,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179935,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227752380,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227810902,"Jan 28, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137356,"Mar 11, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137355,"Mar 11, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023948,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023949,"Feb 25, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179938,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179937,"Mar 23, 2026","Oct 11, 2026",131 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227323275,"Nov 21, 2025","Dec 26, 2026",207 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227810903,"Jan 28, 2026","Jan 15, 2027",227 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179939,"Mar 23, 2026","Jan 29, 2027",241 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179940,"Mar 23, 2026","Jan 29, 2027",241 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323284,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323285,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6227323288,"Nov 21, 2025","Sep 12, 2026",102 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023950,"Feb 25, 2026","Nov 28, 2026",179 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023952,"Feb 25, 2026","May 11, 2027",343 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179946,"Mar 23, 2026","Jul 20, 2027",413 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179944,"Mar 23, 2026","Jul 20, 2027",413 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323289,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323290,"Nov 21, 2025","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323291,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323292,"Nov 21, 2025","Jun 30, 2026",28 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752381,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752383,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752382,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323293,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323294,"Nov 21, 2025","Jul 1, 2026",29 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752385,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752386,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752384,"Jan 20, 2026","Oct 7, 2026",127 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323279,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323278,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-11,DILI,6227323280,"Nov 21, 2025","May 31, 2026",-1 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323281,"Nov 21, 2025","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323282,"Nov 21, 2025","Jul 31, 2026",59 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179941,"Mar 23, 2026","Mar 31, 2027",302 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179943,"Mar 23, 2026","Mar 31, 2027",302 +213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,U,Unscheduled,6227323296,"Nov 21, 2025","Aug 31, 2026",90 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10021 Dr.Martin Bortlik, CZ10016 Dr.Robert Mudr, CZ10003 Dr. Leksa Vaclav, CZ10009 Dr. Jiri Pumprla, CZ10006 Dr. Michal Konecny, CZ10015 Dr.Jan Matous, CZ10013 Dr.David Stepek, CZ10001 Dr. Matej Falc, CZ10010 Dr.Nabil El Lababidi, CZ10022 Dr. Petr Hrabak, CZ10020 Dr.Lucie Gonsorcikova, CZ10012 Dr.Stefan Konecny",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-06-01_122215 sponsor-study-35472-kit-inventory-on-hand-expiration.csv b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122215 sponsor-study-35472-kit-inventory-on-hand-expiration.csv new file mode 100644 index 0000000..48cdd86 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122215 sponsor-study-35472-kit-inventory-on-hand-expiration.csv @@ -0,0 +1,284 @@ +Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350973,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350970,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350974,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350976,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350978,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350979,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541248,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541247,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149461,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149462,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149463,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350980,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350983,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261232,"Nov 18, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261231,"Nov 18, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541250,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541253,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350985,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350986,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350987,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547334,"Dec 31, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547335,"Dec 31, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6225350989,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541255,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541254,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547339,"Dec 31, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226573502,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6226889397,"Oct 7, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227261233,"Nov 18, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541263,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541262,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226573503,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226889398,"Oct 7, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227043303,"Oct 23, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227261234,"Nov 18, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149464,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149465,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226889399,"Oct 7, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541265,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541267,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541268,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541266,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573504,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573505,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573507,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573506,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573508,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541269,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541270,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541272,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541271,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350990,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350991,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350992,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350993,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350994,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768461,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605654,"May 7, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605655,"May 7, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350996,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350995,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350997,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350998,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350999,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768462,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768463,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768464,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768465,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6225351000,"Feb 24, 2025","Sep 1, 2025",-273 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227547340,"Dec 31, 2025","Sep 12, 2026",102 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227768466,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6225351001,"Feb 24, 2025","Jul 31, 2025",-305 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227547341,"Dec 31, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227768467,"Jan 27, 2026","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6225351003,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649755,"Aug 29, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649756,"Aug 29, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178914,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178913,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178915,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178916,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178917,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178919,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178918,"Nov 14, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351038,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351039,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351043,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520226,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520225,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520227,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6225351048,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551696,"Aug 22, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551699,"Aug 22, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551700,"Aug 22, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655163,"Sep 5, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655166,"Sep 5, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655165,"Sep 5, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655162,"Sep 5, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655164,"Sep 5, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351053,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351054,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351055,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520230,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520228,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520229,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780849,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780851,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780848,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780852,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780850,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520231,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520233,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520232,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226550654,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226561520,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072416,"Oct 20, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072415,"Oct 20, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072418,"Oct 20, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072417,"Oct 20, 2025","Jul 31, 2026",59 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226313626,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226550655,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226561521,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520234,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520235,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520236,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226313627,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226550656,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226561522,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226804963,"Sep 25, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313628,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313629,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313630,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313631,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313632,"Jul 14, 2025","Apr 17, 2026",-45 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520237,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520239,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520240,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520241,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520238,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351058,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351059,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351061,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351062,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351060,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6226780854,"Sep 24, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520244,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520246,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351065,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351067,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351064,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351063,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520248,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520250,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520247,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520249,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520251,"Dec 26, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-4,Liver Monitoring,6225351068,"Feb 24, 2025","Sep 1, 2025",-273 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-5,Suspected Liver Event FU,6225351069,"Feb 24, 2025","Jul 31, 2025",-305 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6225351071,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023802,"Feb 25, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023803,"Feb 25, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351073,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351075,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351079,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542163,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542162,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149810,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149812,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149811,"Mar 13, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351085,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351086,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542165,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542164,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844727,"Feb 1, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844726,"Feb 1, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351087,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351088,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351089,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542167,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542168,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542169,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542166,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351091,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351090,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6226935605,"Oct 14, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6228013045,"Feb 26, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226550647,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226561518,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226991312,"Oct 26, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228013046,"Feb 26, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228114461,"Mar 11, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228398393,"Apr 15, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226550648,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226561519,"Aug 21, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226991313,"Oct 26, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261837,"Nov 20, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261838,"Nov 20, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6228114462,"Mar 11, 2026","Oct 11, 2026",131 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550649,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550650,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550652,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550651,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550653,"Aug 18, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351092,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351096,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6227498378,"Dec 22, 2025","Aug 31, 2026",90 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232036,"Mar 25, 2026","Jan 3, 2027",215 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232038,"Mar 25, 2026","Jan 3, 2027",215 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234299,"Mar 30, 2026","Jan 3, 2027",215 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351097,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351099,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351101,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351100,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351098,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542174,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542176,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542175,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542177,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6225351102,"Feb 24, 2025","Sep 1, 2025",-273 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542179,"Dec 25, 2025","Sep 12, 2026",102 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542178,"Dec 25, 2025","Sep 12, 2026",102 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6225351103,"Feb 24, 2025","Jul 31, 2025",-305 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542180,"Dec 25, 2025","Jun 30, 2026",28 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542181,"Dec 25, 2025","Jun 30, 2026",28 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351104,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351105,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6227542183,"Dec 25, 2025","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417882,"Apr 15, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417883,"Apr 15, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351107,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351108,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351112,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351113,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351114,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351115,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227767268,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775503,"Jan 23, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775504,"Jan 23, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351117,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351116,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351118,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351119,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767269,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767270,"Jan 27, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227775506,"Jan 23, 2026","Oct 7, 2026",127 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351123,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351122,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351121,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742569,"May 25, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742568,"May 25, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351124,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351125,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6226976944,"Oct 26, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6228521304,"Apr 30, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226560889,"Aug 20, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226752556,"Sep 17, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226976945,"Oct 26, 2025","May 31, 2026",-1 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560890,"Aug 20, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560892,"Aug 20, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560894,"Aug 20, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560893,"Aug 20, 2025","Jul 1, 2026",29 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389162,"Apr 15, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389161,"Apr 15, 2026","Feb 28, 2027",271 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351129,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351128,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351130,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351127,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351131,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351132,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351133,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351134,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351135,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-4,Liver Monitoring,6225351136,"Feb 24, 2025","Sep 1, 2025",-273 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-5,Suspected Liver Event FU,6225351137,"Feb 24, 2025","Jul 31, 2025",-305 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351139,"Feb 24, 2025","Dec 1, 2025",-182 +212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351138,"Feb 24, 2025","Dec 1, 2025",-182 +title,value,,,,,,,, +Search,,,,,,,,, +Site,"CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle",,,,,,,, +Expiration Date Range,From - To - ,,,,,,,, +Shipped Date Range,From - To - ,,,,,,,, +Kit Type,,,,,,,,, +Ignore Record Limit,TRUE,,,,,,,, diff --git a/Covance_UCO3001/Source/Zpracovano/2026-06-01_122357 sponsor-study-36940-samples-allSamples.csv b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122357 sponsor-study-36940-samples-allSamples.csv new file mode 100644 index 0000000..4271ba5 --- /dev/null +++ b/Covance_UCO3001/Source/Zpracovano/2026-06-01_122357 sponsor-study-36940-samples-allSamples.csv @@ -0,0 +1,1451 @@ +Protocol Code,Investigator No.,Investigator Name,Patient No.,Collection Date,Protocol Visit Code,Kit Receipt Date,Container Receipt Date,Accession,Container No.,Container Barcode No.,Specimen Type,Sample Status,Expected Receipt Condition,Actual Receipt Condition,Container Label Line 1,Container Label Line 2,SM Sample Status,SMART Specimen Class Description,Aliquot Created Date,Aliquoted Date,Collection Time,Container Receipt Time,Country,Courier,Kit Receipt Time,Parent Barcode Number,Parent Sample Type,Project,Region,Screening No.,Shipped To Organization Name,Site Waybill No.,Site - Scheduled Shipment Date,Site - Shipment Created Date,Site - Shipment Details Entered Date,SMART Specimen Class,Visit Description,Parent Barcode,Children Barcode +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,1,622732320301,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,2,622732320302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,3,622732320303,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,7,622732320307,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,8,622732320308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,5,622732320305,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,6,622732320306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,11,622732320311,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,24-Jan-2026,6227323203,4,622732320304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,12:40,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,14,622732320314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,12,622732320312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,15,622732320315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,1,622732320401,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,9,622732320309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,3,622732320403,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,4,622732320404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,2,622732320402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,6,622732320406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,7,622732320407,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,5,622732320405,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,,6227323203,10,622732320310,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Jan-2026,SCRN,23-Jan-2026,23-Jan-2026,6227323203,13,622732320313,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,08:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,9,622732320409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,10,622732320410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,11,622732320411,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,13,622732320413,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM PANEL, BETA",HCG & FSH,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,14,622732320414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,15,622732320415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,04-Mar-2026,6227323204,8,622732320408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,1,622732320501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227323204,12,622732320412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,2,622732320502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,4,622732320504,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,7,622732320507,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,3,622732320503,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,6,622732320506,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,10,622732320510,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,9,622732320509,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,8,622732320508,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,5,622732320505,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,11,622732320511,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,13,622732320513,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,14,622732320514,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,15,622732320515,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,16,622732320516,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,18,622732320518,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,1,622732320601,"Whole Blood, EDTA, Dry",Canceled,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,17,622732320517,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,I-0,20-Feb-2026,20-Feb-2026,6227323205,12,622732320512,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,4,622732320604,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,7,622732320607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,8,622732320608,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,9,622732320609,"Serum, SST",Not Received,Frozen,Specimen not submitted,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,10,622732320610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,11,622732320611,Whole Blood PAXgene RNA,Not Received,Frozen,Specimen not submitted,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,12,622732320612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,2,622732320602,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,6,622732320606,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,3,622732320603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,5,622732320605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,17,622732320617,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,14,622732320614,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,23-Apr-2026,6227323206,18,622732320618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,2,622732320702,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,16,622732320616,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,3,622732320703,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,1,622732320701,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,15,622732320615,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,23-Apr-2026,,6227323206,13,622732320613,"Serum, SST",Not Received,Frozen,Specimen not submitted,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,4,622732320704,"Plasma, EDTA",Not Received,Frozen,Specimen not submitted,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,5,622732320705,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,6,622732320706,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,7,622732320707,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,8,622732320708,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,9,622732320709,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,10,622732320710,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,11,622732320711,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,,6227323207,12,622732320712,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,13,622732320713,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,14,622732320714,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,16,622732320716,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,17,622732320717,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,1,622732320801,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,2,622732320802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,3,622732320803,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,5,622732320805,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,4,622732320804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,7,622732320807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,8,622732320808,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,10,622732320810,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,23-Apr-2026,I-2,24-Apr-2026,24-Apr-2026,6227323207,15,622732320715,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,11,622732320811,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,9,622732320809,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,,6227323208,12,622732320812,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-5,,,,,07:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,13,622732320813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,14,622732320814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,15,622732320815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,16,622732320816,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,17,622732320817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,04-Mar-2026,I-2,05-Mar-2026,05-Mar-2026,6227323208,6,622732320806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,2,622732321002,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,4,622732321004,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,1,622732321001,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,3,622732321003,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,6,622732321006,"Stool, unpreserved",Canceled,Frozen,,STOOL I-4,77242113UCO3001-1,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,5,622732321005,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,7,622732321007,"Stool, unpreserved",Canceled,Frozen,,STOOL I-4,77242113UCO3001-2,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,8,622732321008,"Stool, unpreserved",Canceled,Frozen,,STOOL I-4,77242113UCO3001-3,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,,6227323210,9,622732321009,"Stool, unpreserved",Canceled,Frozen,,STOOL I-4,77242113UCO3001-4,,,,,07:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,10,622732321010,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,12,622732321012,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,14,622732321014,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,11,622732321011,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,13,622732321013,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,15,622732321015,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,16,622732321016,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,17,622732321017,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,18,622732321018,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,19,622732321019,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,21,622732321021,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,20,622732321020,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,I-4,19-Mar-2026,19-Mar-2026,6227323210,22,622732321022,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,1,622732321101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,2,622732321102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,3,622732321103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,28-Jan-2026,SCRNSTOOL,29-Jan-2026,29-Jan-2026,6227323211,4,622732321104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:00,07:40,Czech Republic,,07:40,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,1,622732321201,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,3,622732321203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,4,622732321204,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,03-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227323212,2,622732321202,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,13:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,1,622732321301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,2,622732321302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,30-Apr-2026,6227323213,3,622732321303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRNSTOOL,30-Apr-2026,,6227323213,4,622732321304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,19-Feb-2026,DNA,20-Feb-2026,20-Feb-2026,6227323217,1,622732321701,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,18-Mar-2026,DNA,19-Mar-2026,19-Mar-2026,6227323219,1,622732321901,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,07:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,1,622732322301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,2,622732322302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,07-Feb-2026,6227323223,3,622732322303,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,,6227323223,4,622732322304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,2,622732322402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,1,622732322401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,20-Mar-2026,6227323224,3,622732322403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,,6227323224,4,622732322404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,2,622732323102,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,3,622732323103,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,4,622732323104,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323231,5,622732323105,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,6,622732323106,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,23-Apr-2026,6227323231,8,622732323108,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,7,622732323107,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,1,622732323101,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,9,622732323109,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,10,622732323110,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,12,622732323112,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,14,622732323114,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,13,622732323113,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,17,622732323117,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,18,622732323118,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,15,622732323115,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,16,622732323116,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,11,622732323111,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,19,622732323119,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,20,622732323120,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,22,622732323122,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,21,622732323121,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,25,622732323125,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,26,622732323126,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,24,622732323124,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,23,622732323123,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,27,622732323127,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,28,622732323128,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,29,622732323129,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323231,30,622732323130,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,3,622732323203,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,4,622732323204,"Serum, SST",Canceled,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,5,622732323205,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,6,622732323206,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,7,622732323207,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,8,622732323208,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,1,622732323201,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,2,622732323202,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,10,622732323210,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,12,622732323212,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,14,622732323214,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,13,622732323213,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,11,622732323211,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,15,622732323215,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,9,622732323209,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,16,622732323216,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,17,622732323217,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,21,622732323221,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,23,622732323223,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,26,622732323226,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,20,622732323220,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,24,622732323224,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,22,622732323222,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,27,622732323227,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,25,622732323225,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,19,622732323219,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,28,622732323228,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,18,622732323218,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,29,622732323229,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,2,622732323302,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,4,622732323304,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCH,23-Apr-2026,,6227323232,30,622732323230,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,3,622732323303,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,6,622732323306,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,7,622732323307,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,1,622732323301,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,5,622732323305,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,8,622732323308,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,9,622732323309,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,10,622732323310,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,13,622732323313,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,12,622732323312,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,16,622732323316,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,14,622732323314,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,15,622732323315,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,11,622732323311,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,17,622732323317,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,19,622732323319,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,24,622732323324,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,20,622732323320,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,23,622732323323,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,26,622732323326,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,25,622732323325,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,22,622732323322,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,27,622732323327,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,21,622732323321,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,18,622732323318,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,29,622732323329,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,30,622732323330,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,,6227323233,28,622732323328,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,2,622732323402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,3,622732323403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,4,622732323404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,5,622732323405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,1,622732323401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,6,622732323406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,10,622732323410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,22-Apr-2026,6227323234,8,622732323408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,11,622732323411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,7,622732323407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,9,622732323409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,15,622732323415,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,14,622732323414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,,6227323234,13,622732323413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRN,21-Apr-2026,21-Apr-2026,6227323234,12,622732323412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,2,622732323602,"Plasma, QuantiFERON Nil",Canceled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,1,622732323601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,3,622732323603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,4,622732323604,"Plasma, QuantiFERON TB1",Canceled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,8,622732323608,"Plasma, QuantiFERON Mitoge",Canceled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,5,622732323605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,9,622732323609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,7,622732323607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,6,622732323606,"Plasma, QuantiFERON TB2",Canceled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,11,622732323611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,12,622732323612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,10,622732323610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,,6227323236,13,622732323613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,14,622732323614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRN,18-Feb-2026,18-Feb-2026,6227323236,15,622732323615,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,2,622732323702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,4,622732323704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,1,622732323701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,3,622732323703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,7,622732323707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,8,622732323708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,5,622732323705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,6,622732323706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,11,622732323711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,12,622732323712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,9,622732323709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,13,622732323713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,10,622732323710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,15,622732323715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,14,622732323714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,,6227323237,17,622732323717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,18,622732323718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,I-0,21-Mar-2026,21-Mar-2026,6227323237,16,622732323716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,1,622732323801,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,2,622732323802,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,4,622732323804,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,5,622732323805,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,7,622732323807,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,8,622732323808,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,6,622732323806,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,10,622732323810,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,11,622732323811,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,13,622732323813,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,12,622732323812,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,9,622732323809,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,16,622732323816,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,15,622732323815,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,14,622732323814,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,27-May-2026,6227323238,18,622732323818,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,17,622732323817,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,2,622732324002,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,1,622732324001,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,15,622732324015,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,13,622732324013,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,16,622732324016,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,14,622732324014,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,5,622732324005,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,4,622732324004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,8,622732324008,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,9,622732324009,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,6,622732324006,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,3,622732324003,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,10,622732324010,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,7,622732324007,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,17,622732324017,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,09-Apr-2026,6227323240,12,622732324012,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,08-Apr-2026,I-2,09-Apr-2026,,6227323240,11,622732324011,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,26-May-2026,I-0,27-May-2026,,6227323238,3,622732323803,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,1,622732324201,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,2,622732324202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,3,622732324203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,4,622732324204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,5,622732324205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,9,622732324209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,10,622732324210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,7,622732324207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,8,622732324208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,11,622732324211,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,6,622732324206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,13,622732324213,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,12,622732324212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,15,622732324215,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,16,622732324216,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,17,622732324217,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,19,622732324219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,14,622732324214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,21,622732324221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,,6227323242,18,622732324218,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,20,622732324220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,15-Apr-2026,I-4,16-Apr-2026,16-Apr-2026,6227323242,22,622732324222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,1,622732324301,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,3,622732324303,"Culture, Stool",Canceled,Ambient,,STOOL CULTURE,,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,1,622732324401,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,,6227323243,4,622732324304,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,2,622732324402,"Stool, unpreserved",Canceled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCSTOOL,18-Mar-2026,18-Mar-2026,6227323243,2,622732324302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,3,622732324403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:20,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,,6227323244,4,622732324404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,07:20,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,12-Mar-2026,6227323245,3,622732324503,"Culture, Stool",Received,Ambient,Default Return Frozen,STOOL CULTURE,,,,,,09:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,4,622732324504,"Stool, ova & parasites(PVA)",Canceled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,1,622732324501,"Stool, ova & parasites(form)",Canceled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCSTOOL,12-Mar-2026,,6227323245,2,622732324502,"Stool, unpreserved",Canceled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,09:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,20-Mar-2026,DNA,21-Mar-2026,21-Mar-2026,6227323251,1,622732325101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,1,622732325201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,2,622732325202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,3,622732325203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,4,622732325204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,5,622732325205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,6,622732325206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,,6227323252,7,622732325207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:03,,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,TB,18-Feb-2026,18-Feb-2026,6227323252,8,622732325208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:03,07:10,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,2,622732325302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,1,622732325301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,6,622732325306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,5,622732325305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,3,622732325303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,8,622732325308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,,6227323253,7,622732325307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,2,622732325402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,1,622732325401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,,6227323254,4,622732325404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,TB,12-Mar-2026,12-Mar-2026,6227323253,4,622732325304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,29-May-2026,BX12,30-May-2026,,6227323255,2,622732325502,Biopsy RNA Later,Not Received,Frozen,,SM13/BIOPSY RNA,FROZEN,,,,,00:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,29-May-2026,BX12,30-May-2026,30-May-2026,6227323255,1,622732325501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,29-May-2026,BX12,30-May-2026,,6227323255,3,622732325503,"Biopsy, Frozen Tissue",Not Received,Frozen,,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,3,622732325403,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,29-May-2026,BX12,30-May-2026,,6227323255,4,622732325504,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,1,622732325601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,2,622732325602,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,3,622732325603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,,6227323256,4,622732325604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,7,622732326407,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,6,622732326406,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,1,622732326401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,12-Mar-2026,6227323264,2,622732326402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,9,622732326409,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,10,622732326410,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,3,622732326403,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,8,622732326408,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,11,622732326411,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,4,622732326404,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,13,622732326413,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,12,622732326412,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,15,622732326415,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,14,622732326414,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,17,622732326417,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,16,622732326416,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,18,622732326418,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,20,622732326420,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,5,622732326405,"Serum, SST",Not Received,Ambient,,FSH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,22,622732326422,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,21,622732326421,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,23,622732326423,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,24,622732326424,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,25,622732326425,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,19,622732326419,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,26,622732326426,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,27,622732326427,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,28,622732326428,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,29,622732326429,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,11-Mar-2026,UNSCH,12-Mar-2026,,6227323264,30,622732326430,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,1,622732326501,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,3,622732326503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,4,622732326504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,18-Mar-2026,6227323265,2,622732326502,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,5,622732326505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,8,622732326508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,6,622732326506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,7,622732326507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,9,622732326509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,10,622732326510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,11,622732326511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,12,622732326512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,13,622732326513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,14,622732326514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,15,622732326515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,21,622732326521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,18,622732326518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,17,622732326517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,25,622732326525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,22,622732326522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,20,622732326520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,29,622732326529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,27,622732326527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,24,622732326524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,16,622732326516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,19,622732326519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,28,622732326528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,26,622732326526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,30,622732326530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,17-Mar-2026,UNSCH,18-Mar-2026,,6227323265,23,622732326523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,1,622732326601,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,3,622732326603,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,2,622732326602,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,5,622732326605,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,7,622732326607,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,6,622732326606,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,9,622732326609,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,10,622732326610,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,8,622732326608,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,17-Jan-2026,6227323266,4,622732326604,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,16:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,12,622732326612,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,13,622732326613,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,11,622732326611,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,16-Jan-2026,6227323266,14,622732326614,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,16:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRN,16-Jan-2026,,6227323266,15,622732326615,"Serum, SST",Canceled,Ambient,,FSH,,,,,,16:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,1,622732326801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,2,622732326802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,3,622732326803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,4,622732326804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,5,622732326805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,6,622732326806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,7,622732326807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,12,622732326812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,13,622732326813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,14,622732326814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,15,622732326815,"Serum, SST",Canceled,Ambient,,FSH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,30-Jan-2026,6227323268,8,622732326808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,10,622732326810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,24-Jan-2026,6227323268,9,622732326809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRN,24-Jan-2026,,6227323268,11,622732326811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,3,622732327003,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,2,622732327002,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,4,622732327004,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,5,622732327005,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,6,622732327006,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,1,622732327001,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,8,622732327008,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,7,622732327007,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,10,622732327010,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,9,622732327009,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,11,622732327011,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,12,622732327012,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,13,622732327013,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,14,622732327014,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,15,622732327015,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,18,622732327018,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,,6227323270,17,622732327017,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,I-0,10-Mar-2026,10-Mar-2026,6227323270,16,622732327016,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,1,622732327201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,2,622732327202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,12,622732327212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,13,622732327213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,3,622732327203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,11,622732327211,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-4,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,14,622732327214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,15,622732327215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,17,622732327217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,10,622732327210,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-3,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,16,622732327216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,5,622732327205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,6,622732327206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,4,622732327204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,28-Mar-2026,6227323272,7,622732327207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,07:10,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,8,622732327208,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-1,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,27-Mar-2026,I-2,28-Mar-2026,,6227323272,9,622732327209,"Stool, unpreserved",Canceled,Frozen,,STOOL I-2,77242113UCO3001-2,,,,,07:10,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,1,622732327401,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,2,622732327402,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,3,622732327403,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,5,622732327405,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,4,622732327404,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,6,622732327406,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,7,622732327407,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,8,622732327408,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,9,622732327409,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,11,622732327411,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,10,622732327410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,12,622732327412,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,20,622732327420,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,21,622732327421,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,13,622732327413,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,22,622732327422,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,15,622732327415,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,19,622732327419,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,16,622732327416,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,14,622732327414,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,09-Apr-2026,6227323274,17,622732327417,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,08-Apr-2026,I-4,09-Apr-2026,,6227323274,18,622732327418,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,1,622732327601,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,2,622732327602,"Stool, unpreserved",Canceled,Frozen,,C-DIFF TOXIN,& PCR FROZEN,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,,6227323276,4,622732327604,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,16:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,15-Jan-2026,SCRNSTOOL,16-Jan-2026,16-Jan-2026,6227323276,3,622732327603,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,16:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,1,622732327701,"Stool, ova & parasites(form)",Canceled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,3,622732327703,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,24-Jan-2026,6227323277,2,622732327702,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:10,12:40,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222002,23-Jan-2026,SCRNSTOOL,24-Jan-2026,,6227323277,4,622732327704,"Stool, ova & parasites(PVA)",Canceled,Ambient,,OVA & PARASITES 2,PVA,,,,,10:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,09-Mar-2026,DNA,10-Mar-2026,10-Mar-2026,6227323283,1,622732328301,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,1,622732328601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,10:20,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,3,622732328603,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,21-Feb-2026,6227323286,2,622732328602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,,6227323286,4,622732328604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,1,622732328701,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,3,622732328703,"Biopsy, Frozen Tissue",Shipped,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:45,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,,6227323287,4,622732328704,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,14-Feb-2026,6227323287,2,622732328702,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,05:55,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,2,622732329502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,3,622732329503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,1,622732329501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,6,622732329506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,5,622732329505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,7,622732329507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,8,622732329508,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,11,622732329511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,9,622732329509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,10,622732329510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323295,4,622732329504,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,08:40,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,12,622732329512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,13,622732329513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,14,622732329514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,16,622732329516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,15,622732329515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,17,622732329517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,19,622732329519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,18,622732329518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,20,622732329520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,23,622732329523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,22,622732329522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,21,622732329521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,25,622732329525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,26,622732329526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,27,622732329527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,24,622732329524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,29,622732329529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,30,622732329530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,13-Mar-2026,SCRN,14-Mar-2026,,6227323295,28,622732329528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,08:40,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,2,622732329702,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,14-Mar-2026,6227323297,4,622732329704,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,07:45,07:20,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,6,622732329706,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,5,622732329705,"Serum, SST",Not Received,Ambient,,FSH,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,1,622732329701,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,3,622732329703,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,7,622732329707,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,8,622732329708,"Feces, unpreserved",Not Received,Frozen,,FECAL CALPROTECTIN,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,10,622732329710,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,9,622732329709,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,11,622732329711,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,12,622732329712,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,14,622732329714,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,13,622732329713,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,18,622732329718,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,16,622732329716,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,15,622732329715,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,20,622732329720,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,19,622732329719,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,17,622732329717,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,21,622732329721,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,23,622732329723,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,25,622732329725,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,27,622732329727,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,26,622732329726,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,28,622732329728,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,29,622732329729,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,30,622732329730,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,22,622732329722,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,13-Mar-2026,SCRN,14-Mar-2026,,6227323297,24,622732329724,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,07:45,,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,1,622732329901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,3,622732329903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,4,622732329904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,5,622732329905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,2,622732329902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,7,622732329907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,8,622732329908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,9,622732329909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,15-May-2026,6227323299,6,622732329906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,11,622732329911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,12,622732329912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,10,622732329910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,,6227323299,13,622732329913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,15,622732329915,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRN,14-May-2026,14-May-2026,6227323299,14,622732329914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,1,622732330901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,2,622732330902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,4,622732330904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,13-May-2026,SCRNSTOOL,14-May-2026,14-May-2026,6227323309,3,622732330903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,1,622732332001,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,29-May-2026,6227323320,2,622732332002,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,29-May-2026,6227323320,3,622732332003,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,,6227323320,4,622732332004,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,1,622732333001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,2,622732333002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,3,622732333003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,5,622732333005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,4,622732333004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,7,622732333007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,8,622732333008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,9,622732333009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,03-Apr-2026,6227323330,6,622732333006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,10,622732333010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,11,622732333011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,13,622732333013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,12,622732333012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,,6227323330,15,622732333015,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,08:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,31-Mar-2026,SCRN,01-Apr-2026,01-Apr-2026,6227323330,14,622732333014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,1,622732333201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,2,622732333202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,3,622732333203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,6,622732333206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,4,622732333204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,21-Apr-2026,6227323332,8,622732333208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,9,622732333209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,5,622732333205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,10,622732333210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,7,622732333207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,11,622732333211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,12,622732333212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,14,622732333214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,,6227323332,13,622732333213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,16-Apr-2026,SCRN,17-Apr-2026,17-Apr-2026,6227323332,15,622732333215,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,1,622732333401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,4,622732333404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,2,622732333402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,5,622732333405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,3,622732333403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,6,622732333406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,7,622732333407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,8,622732333408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,9,622732333409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,10,622732333410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,11,622732333411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,12,622732333412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,13,622732333413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,14,622732333414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,15,622732333415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,16,622732333416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,,6227323334,17,622732333417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,I-0,06-May-2026,06-May-2026,6227323334,18,622732333418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,2,622732333502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,3,622732333503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,5,622732333505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,1,622732333501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,7,622732333507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,6,622732333506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,4,622732333504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,8,622732333508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,9,622732333509,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,11,622732333511,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,10,622732333510,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,13,622732333513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,15,622732333515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,,6227323335,16,622732333516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,17,622732333517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,14,622732333514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,19-May-2026,I-2,20-May-2026,20-May-2026,6227323335,12,622732333512,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,10:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,2,622732334002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,4,622732334004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,3,622732334003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,02-Apr-2026,SCRNSTOOL,03-Apr-2026,03-Apr-2026,6227323340,1,622732334001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,1,622732334101,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,2,622732334102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,3,622732334103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6227323341,4,622732334104,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,06:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,DNA,06-May-2026,06-May-2026,6227323346,1,622732334601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,1,622732334801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,2,622732334802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,3,622732334803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,4,622732334804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,5,622732334805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,,6227323348,7,622732334807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,6,622732334806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092002,05-May-2026,TB,07-May-2026,07-May-2026,6227323348,8,622732334808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,TB Testing,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,,6227323351,4,622732335104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,3,622732335103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,2,622732335102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,1,622732335101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,,6227323355,1,622732335501,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,11:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,05-May-2026,BDL,06-May-2026,06-May-2026,6227323355,2,622732335502,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,11:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,1,622763513901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,3,622763513903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,8,622763513908,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,4,622763513904,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,2,622763513902,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,5,622763514005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,8,622763514008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,13,622763513913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,03-Apr-2026,6227635139,6,622763513906,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,6,622763514006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,7,622763514007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,9,622763514009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,10,622763513910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,15,622763513915,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,12,622763513912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,9,622763513909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,7,622763513907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,4,622763514004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,11,622763513911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,28-Feb-2026,6227635140,2,622763514002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,13:20,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,3,622763514003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,1,622763514001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,,6227635139,5,622763513905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,08:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRN,02-Apr-2026,02-Apr-2026,6227635139,14,622763513914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,08:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,12,622763514012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,14,622763514014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,1,622763514101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,15,622763514015,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,2,622763514102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,11,622763514011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,27-Feb-2026,6227635140,10,622763514010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,13:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,3,622763514103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRN,27-Feb-2026,,6227635140,13,622763514013,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,13:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,8,622763514108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,9,622763514109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,11,622763514111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,12,622763514112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,10,622763514110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,13,622763514113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,7,622763514107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,6,622763514106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,3,622763514203,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,4,622763514204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,13,622763514213,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,5,622763514205,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,5,622763514105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,08-May-2026,6227635141,4,622763514104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,6,622763514206,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,14,622763514214,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,2,622763514202,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,10,622763514210,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,1,622763514201,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,15,622763514215,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,7,622763514207,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,9,622763514209,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,16,622763514216,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,17,622763514217,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,07-May-2026,6227635141,14,622763514114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,06-May-2026,SCRN,07-May-2026,,6227635141,15,622763514115,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,,6227635142,12,622763514212,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:40,,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,11,622763514211,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,8,622763514208,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,I-0,26-Mar-2026,26-Mar-2026,6227635142,18,622763514218,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,7,622763514407,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,6,622763514406,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,3,622763514403,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,2,622763514402,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,1,622763514401,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,15,622763514415,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,16,622763514416,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,8,622763514408,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,10,622763514410,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-3,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,4,622763514404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,17,622763514417,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,12,622763514412,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,11,622763514411,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-4,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,08-Apr-2026,6227635144,14,622763514414,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,13,622763514413,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,,6227635144,5,622763514405,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:50,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,07-Apr-2026,I-2,08-Apr-2026,09-Apr-2026,6227635144,9,622763514409,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-2,,,,,08:50,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,2,622763514602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,3,622763514603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,8,622763514608,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,9,622763514609,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-4,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,10,622763514610,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-5,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,16,622763514616,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,14,622763514614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,21,622763514621,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,4,622763514604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,5,622763514605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,15,622763514615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,18,622763514618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,11,622763514611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,13,622763514613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,6,622763514606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,22,622763514622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,23-Apr-2026,6227635146,7,622763514607,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,19,622763514619,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,,6227635146,1,622763514601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,17,622763514617,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,12,622763514612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,21-Apr-2026,I-4,22-Apr-2026,22-Apr-2026,6227635146,20,622763514620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,3,622763514803,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,4,622763514804,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,1,622763514801,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,2,622763515002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,3,622763515003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,2,622763514902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,4,622763515004,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,01-Apr-2026,SCRNSTOOL,02-Apr-2026,02-Apr-2026,6227635148,2,622763514802,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,08:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,1,622763514901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,4,622763514904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,26-Feb-2026,SCRNSTOOL,27-Feb-2026,27-Feb-2026,6227635149,3,622763514903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,07-May-2026,SCRNSTOOL,08-May-2026,08-May-2026,6227635150,1,622763515001,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,05:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,24-Mar-2026,DNA,26-Mar-2026,26-Mar-2026,6227635156,1,622763515601,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:40,05:55,Czech Republic,,05:55,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,DNA,27-May-2026,27-May-2026,6227635155,1,622763515501,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,,6227635159,4,622763515904,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,1,622763515901,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,2,622763515902,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,23-Apr-2026,6227635159,3,622763515903,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,3,622763516103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,,6227635161,4,622763516104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,1,622763516101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,14-Mar-2026,6227635161,2,622763516102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:20,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,1,622763517101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,2,622763517102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,5,622763517105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,7,622763517107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,3,622763517103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,6,622763517106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,4,622763517104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,10,622763517110,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,14,622763517114,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,15,622763517115,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,11,622763517111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,23-Apr-2026,6227635171,8,622763517108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,9,622763517109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,,6227635171,13,622763517113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,21-Apr-2026,SCRN,22-Apr-2026,22-Apr-2026,6227635171,12,622763517112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,30-May-2026,6227635173,2,622763517302,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:35,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,30-May-2026,6227635173,6,622763517306,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:35,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,7,622763517307,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,30-May-2026,6227635173,8,622763517308,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:35,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,5,622763517305,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,10,622763517310,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,30-May-2026,6227635173,4,622763517304,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:35,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,9,622763517309,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,1,622763517301,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,3,622763517303,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,14,622763517314,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,13,622763517313,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,29-May-2026,6227635174,1,622763517401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,15,622763517315,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,3,622763517403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,,6227635173,11,622763517311,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,29-May-2026,6227635174,2,622763517402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRN,28-May-2026,28-May-2026,6227635173,12,622763517312,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,9,622763517409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,,6227635174,5,622763517405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,11,622763517411,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,6,622763517406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,,6227635174,12,622763517412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,4,622763517404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,,6227635174,7,622763517407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,8,622763517408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,13,622763517413,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,10,622763517410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,14,622763517414,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,29-May-2026,6227635174,18,622763517418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,,6227635174,17,622763517417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,15,622763517415,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,I-0,29-May-2026,30-May-2026,6227635174,16,622763517416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:45,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,1,622763518001,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,28-May-2026,6227635180,3,622763518003,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,13:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,,6227635180,4,622763518004,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,13:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162002,27-May-2026,SCRNSTOOL,28-May-2026,30-May-2026,6227635180,2,622763518002,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,13:15,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,4,622763518204,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,25-Apr-2026,6227635182,3,622763518203,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,08:45,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,1,622763518201,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,24-Apr-2026,SCRNSTOOL,25-Apr-2026,,6227635182,2,622763518202,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,C-DIFF TOXIN,& PCR FROZEN,,,,,08:45,,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,28-May-2026,DNA,30-May-2026,30-May-2026,6227635186,1,622763518601,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:45,07:30,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,2,622763519302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,1,622763519301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,21-May-2026,6227635193,3,622763519303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,,6227635193,4,622763519304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,1,622763520401,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,2,622763520402,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,3,622763520403,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,15,622763520415,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,9,622763520409,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,10,622763520410,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,11,622763520411,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,12,622763520412,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,13,622763520413,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,5,622763520405,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,4,622763520404,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,26-Feb-2026,6227635204,14,622763520414,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,,6227635204,7,622763520407,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,6,622763520406,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,25-Feb-2026,SCRN,26-Feb-2026,03-Mar-2026,6227635204,8,622763520408,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,2,622763520702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,8,622763520708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,5,622763520705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,4,622763520704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,9,622763520709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,1,622763520701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,11,622763520711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,3,622763520703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,6,622763520706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,17,622763520717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227635207,18,622763520718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,2,622763520802,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,3,622763520803,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,13,622763520713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,1,622763520801,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,7,622763520707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,10,622763520710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,,6227635207,12,622763520712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:37,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,16,622763520716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,7,622763520807,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,9,622763520809,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,10,622763520810,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,11,622763520811,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,14,622763520714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,I-0,08-Apr-2026,09-Apr-2026,6227635207,15,622763520715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,12,622763520812,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,4,622763520804,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,6,622763520806,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,8,622763520808,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-1,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,17,622763520817,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,14,622763520814,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,5,622763520805,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,28-Apr-2026,6227635208,13,622763520813,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,,6227635208,16,622763520816,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,08:43,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,20-Apr-2026,I-2,21-Apr-2026,21-Apr-2026,6227635208,15,622763520815,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:43,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,2,622763521102,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,3,622763521103,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,06-May-2026,6227635211,4,622763521104,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,1,622763521101,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,8,622763521108,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,10,622763521110,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,6,622763521106,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,5,622763521105,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,11,622763521111,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,13,622763521113,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,14,622763521114,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,7,622763521107,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,19,622763521119,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,16,622763521116,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,20,622763521120,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,9,622763521109,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,21,622763521121,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,22,622763521122,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,17,622763521117,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,18,622763521118,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,07-May-2026,6227635211,12,622763521112,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,10:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,2,622763521302,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,3,622763521303,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,4,622763521304,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,05-May-2026,I-4,06-May-2026,,6227635211,15,622763521115,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,01-Mar-2026,SCRNSTOOL,03-Mar-2026,03-Mar-2026,6227635213,1,622763521301,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,14:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,07-Apr-2026,DNA,09-Apr-2026,09-Apr-2026,6227635218,1,622763521801,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:37,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,2,622763522302,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,1,622763522301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,3,622763522303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,,6227635223,4,622763522304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,2,622769771802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,3,622769771803,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,5,622769771805,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,1,622769771801,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,6,622769771806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,4,622769771804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,7,622769771807,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,11,622769771811,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,,6227697718,13,622769771813,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:18,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,10,622769771810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,14,622769771814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,15,622769771815,"Serum, SST",Received,Ambient,Default Return Ambient,FSH,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,20-Mar-2026,6227697718,8,622769771808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,1,622769771901,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,2,622769771902,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,4,622769771904,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,5,622769771905,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,3,622769771903,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,8,622769771908,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,7,622769771907,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,6,622769771906,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,10,622769771910,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,9,622769771809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,11,622769771911,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,18-Mar-2026,SCRN,19-Mar-2026,19-Mar-2026,6227697718,12,622769771812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:18,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,9,622769771909,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,12,622769771912,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,13,622769771913,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,14,622769771914,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,,6227697719,17,622769771917,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,11:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,15,622769771915,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,16,622769771916,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,I-0,08-Apr-2026,08-Apr-2026,6227697719,18,622769771918,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,6,622769772206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,7,622769772207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,13,622769772213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,10,622769772210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,12,622769772212,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001-5,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,11,622769772211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,14,622769772214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,8,622769772208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-1,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,15,622769772215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,9,622769772209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,2,622769772202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,5,622769772205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,3,622769772203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,4,622769772204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,1,622769772201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,1,622769772301,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,4,622769772304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,2,622769772302,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,3,622769772303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,5,622769772305,"Feces, unpreserved",Not Received,Frozen,Specimen not submitted,FECAL CALPROTECTIN,FROZEN,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,7,622769772307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,,6227697722,16,622769772216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6227697722,17,622769772217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,21,622769772321,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,6,622769772306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-1,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,12,622769772312,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,13,622769772313,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,14,622769772314,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,9,622769772309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,18,622769772318,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,16,622769772316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,17,622769772317,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,8,622769772308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,15,622769772315,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,19,622769772319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,10,622769772310,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,20,622769772320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,08-May-2026,6227697723,22,622769772322,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,12:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-May-2026,I-4,08-May-2026,,6227697723,11,622769772311,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,12:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,1,622769772501,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,3,622769772503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,,6227697725,4,622769772504,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,17:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,17-Mar-2026,SCRNSTOOL,19-Mar-2026,19-Mar-2026,6227697725,2,622769772502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,17:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,2,622769773602,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,07-Apr-2026,DNA,08-Apr-2026,08-Apr-2026,6227697731,1,622769773101,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,11:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,1,622769773601,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,,6227697736,4,622769773604,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,26-Mar-2026,6227697736,3,622769773603,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,5,622769774505,"Serum, SST",Not Received,Ambient,,FSH,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,1,622769774501,"Whole Blood, EDTA, Dry",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,6,622769774506,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,4,622769774504,"Serum, SST",Not Received,Ambient,,"CHEM, LIPID PANEL",BETA HCG & CRP,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,8,622769774508,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,3,622769774503,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL,","BHCG, FSH & CRP",,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,2,622769774502,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,7,622769774507,"Serum, SST",Not Received,Ambient,,"HIV SCREEN,",HEPATITIS B & C,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,9,622769774509,"Whole Blood, EDTA, Dry",Not Received,,,HCV RNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,14,622769774514,Whole Blood PAXgene RNA,Not Received,Frozen,,SM07/WB RNA,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,16,622769774516,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,18,622769774518,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,17,622769774517,"Serum, SST",Not Received,Frozen,,SM06/SERUM BIOM,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,13,622769774513,"Stool, unpreserved",Not Received,Frozen,,SM10/FECAL,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,12,622769774512,"Plasma, EDTA",Not Received,Frozen,,HBV DNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,11,622769774511,"Whole Blood, EDTA, Dry",Not Received,,,HBV DNA COBAS 6800,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,15,622769774515,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,19,622769774519,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,10,622769774510,"Plasma, EDTA",Not Received,Frozen,,HCV RNA COBAS 6800,FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,30,622769774530,"Plasma, EDTA",Not Received,Frozen,,HIV-1/HIV-2 QUAL,RNA FROZEN,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,20,622769774520,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,22,622769774522,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-4,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,25,622769774525,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-1,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,23,622769774523,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-5,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,26,622769774526,"Serum, SST",Not Received,Frozen,,SERUM ADA,77242113UCO3001-2,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,21,622769774521,"Stool, unpreserved",Not Received,Frozen,,STOOL,77242113UCO3001-3,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,29,622769774529,"Whole Blood, EDTA, Dry",Not Received,,,HIV-1/HIV-2,QUALITATIVE RNA,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,27,622769774527,"Whole Blood, EDTA, Dry",Not Received,,,SM03/PLASMA PK,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,24,622769774524,"Red Cells, Clot",Not Received,,,SM05/SERUM ADA,,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,,6227697745,28,622769774528,"Plasma, EDTA",Not Received,Frozen,,PLASMA PK,77242113UCO3001,,,,,,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,1,622781089901,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,3,622781089903,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,2,622781089902,"Plasma, QuantiFERON Nil",Canceled,Frozen,,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,4,622781089904,"Plasma, QuantiFERON TB1",Canceled,Frozen,,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,5,622781089905,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,6,622781089906,"Plasma, QuantiFERON TB2",Canceled,Frozen,,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,10,622781089910,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,11,622781089911,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,12,622781089912,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,13,622781089913,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,14,622781089914,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,15,622781089915,"Serum, SST",Canceled,Ambient,,FSH,,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,8,622781089908,"Plasma, QuantiFERON Mitoge",Canceled,Frozen,,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,03-Mar-2026,6227810899,9,622781089909,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,11:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,2,622781090002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,4,622781090004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,6,622781090006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,7,622781090007,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,06-Mar-2026,6227810900,8,622781090008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,9,622781090009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,10,622781090010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,3,622781090003,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,5,622781090005,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,05-Mar-2026,6227810900,12,622781090012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,14,622781090014,"Serum, SST",Canceled,Ambient,,CHEM PANEL &,BETA HCG,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,13,622781090013,"Red Cells, Clot",Not Received,,,"CHEM PANEL, BETA",HCG & FSH,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,15,622781090015,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,1,622781090101,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,2,622781090102,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,3,622781090103,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,4,622781090104,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,1,622781090001,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,6,622781090106,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,7,622781090107,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,05-Mar-2026,6227810901,8,622781090108,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,9,622781090109,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,10,622781090110,"Slides, Hematology",Not Received,Ambient,,HEMATOLOGY,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,11,622781090111,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,04-Mar-2026,6227810901,12,622781090112,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,14,622781090114,"Serum, SST",Canceled,Ambient,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,13,622781090113,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,02-Mar-2026,SCRN,03-Mar-2026,,6227810899,7,622781089907,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,11:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRN,05-Mar-2026,,6227810900,11,622781090011,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,09:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,5,622781090105,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRN,04-Mar-2026,,6227810901,15,622781090115,"Serum, SST",Canceled,Ambient,,FSH,,,,,,12:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,2,622781090402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,05-Mar-2026,6227810904,3,622781090403,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,09:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,4,622781090404,"Stool, ova & parasites(PVA)",Canceled,Ambient,,OVA & PARASITES 2,PVA,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,1,622781090501,"Stool, ova & parasites(form)",Canceled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,2,622781090502,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,04-Mar-2026,6227810905,3,622781090503,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222004,03-Mar-2026,SCRNSTOOL,04-Mar-2026,,6227810905,4,622781090504,"Stool, ova & parasites(PVA)",Canceled,Ambient,,OVA & PARASITES 2,PVA,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,04-Mar-2026,SCRNSTOOL,05-Mar-2026,,6227810904,1,622781090401,"Stool, ova & parasites(form)",Canceled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,09:10,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,05-Feb-2026,BXSCR,06-Feb-2026,06-Feb-2026,6227323223,5,622732322305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:01,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,3,622793314203,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,5,622793314205,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,2,622793314202,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,4,622793314204,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,6,622793314206,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,1,622793314201,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,7,622793314207,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,10,622793314210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,12,622793314212,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,9,622793314209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,11,622793314211,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,,6227933142,8,622793314208,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,14,622793314214,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,17,622793314217,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,13,622793314213,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,18,622793314218,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,1,622793314301,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,15,622793314215,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,19,622793314219,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,2,622793314302,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,21,622793314221,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,22,622793314222,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,20,622793314220,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,06-May-2026,I-4,07-May-2026,07-May-2026,6227933142,16,622793314216,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,4,622793314304,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,8,622793314308,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-4,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,7,622793314307,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-3,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,3,622793314303,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,20,622793314320,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,6,622793314306,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-2,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,,6227933143,9,622793314309,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-12,77242113UCO3001-5,,,,,08:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,11,622793314311,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-12TROUGH,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,19,622793314319,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,17,622793314317,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,22,622793314322,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,EXPEDITED FRZN,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,10,622793314310,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,16,622793314316,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-2,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,23,622793314323,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,18,622793314318,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,12,622793314312,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,15,622793314315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-12 PRE,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,14,622793314314,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,13,622793314313,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMAPK I-12 PEAK,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,5,622793314305,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-12,77242113UCO3001-1,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,13-May-2026,I-12,14-May-2026,14-May-2026,6227933143,21,622793314321,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,08:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 12,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,11-Feb-2026,BXSCR,12-Feb-2026,12-Feb-2026,6227323287,5,622732328705,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,12:52,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,2,622799396202,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,15,622799396215,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,4,622799396204,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,1,622799396201,Whole Blood QuantiFERON Nil,Not Received,,,QUANTIFERON PLUS,NIL-GRAY,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,10,622799396210,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,14,622799396214,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,3,622799396203,Whole Blood QuantiFERON TB1,Not Received,,,QUANTIFERON PLUS,TB1-GREEN,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,8,622799396208,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,12,622799396212,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,11,622799396211,"Red Cells, Clot",Not Received,,,"HIV SCREEN,",HEPATITIS B & C,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,7,622799396207,Whole Blood QuantiFERON Mitoge,Not Received,,,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,14-Apr-2026,6227993962,9,622799396209,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,5,622799396205,Whole Blood QuantiFERON TB2,Not Received,,,QUANTIFERON PLUS,TB2-YELLOW,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,16-Apr-2026,6227993962,6,622799396206,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,12:20,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRN,14-Apr-2026,,6227993962,13,622799396213,"Red Cells, Clot",Not Received,,,CHEM PANEL &,BETA HCG,,,,,12:20,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,14,622799396614,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,17,622799396617,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,2,622799396602,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,3,622799396603,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,12,622799396612,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,1,622799396601,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,13,622799396613,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,7,622799396607,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,15,622799396615,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,8,622799396608,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,4,622799396604,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,10,622799396610,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,11,622799396611,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,6,622799396606,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,,6227993966,5,622799396605,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,16,622799396616,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,19-May-2026,6227993966,18,622799396618,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,I-0,19-May-2026,20-May-2026,6227993966,9,622799396609,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,4,622799397104,"Stool, ova & parasites(PVA)",Not Received,Ambient,,OVA & PARASITES 2,PVA,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,3,622799397103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,,6227993971,1,622799397101,"Stool, ova & parasites(form)",Not Received,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,06:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,13-Apr-2026,SCRNSTOOL,14-Apr-2026,14-Apr-2026,6227993971,2,622799397102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,06:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,DNA,20-May-2026,20-May-2026,6227993977,1,622799397701,"Whole Blood, EDTA, Dry",In Inventory,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,1,622799398401,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,3,622799398403,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,,6227993984,4,622799398404,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,17-Apr-2026,6227993984,2,622799398402,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,20-May-2026,6227993987,2,622799398702,"Serum, SST",Shipped,Frozen,Default Return Frozen,"ADA, GOL, INF",UST OR VED FROZEN,,,,,09:28,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,18-May-2026,BDL,20-May-2026,,6227993987,1,622799398701,"Red Cells, Clot",Not Received,,,DRUG LEVEL TESTING,,,,,,09:28,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biologic Drug Level,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,5,622732324405,,Canceled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,16-Feb-2026,SCRNSTOOL,18-Feb-2026,18-Feb-2026,6227323244,6,622732324406,,Canceled,,,,,,,,,07:20,12:28,Czech Republic,,07:10,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222001,18-Feb-2026,BXSCR,19-Feb-2026,19-Feb-2026,6227323286,5,622732328605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,15:49,Czech Republic,,10:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,2,622802395102,Biopsy RNA Later,Shipped,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,1,622802395101,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,04-Apr-2026,6228023951,3,622802395103,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,,6228023951,4,622802395104,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,19-Feb-2026,BXSCR,21-Feb-2026,21-Feb-2026,6227323254,5,622732325405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:49,Czech Republic,,07:20,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,3,622803655303,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,5,622803655305,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,7,622803655307,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,8,622803655308,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,4,622803655304,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,1,622803655301,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,6,622803655306,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,2,622803655302,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,12,622803655312,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,13,622803655313,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,15,622803655315,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,11,622803655311,Whole Blood PAXgene RNA,In Inventory,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,17,622803655317,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,18,622803655318,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,14,622803655314,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,9,622803655309,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,16,622803655316,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,4,622803655404,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,5,622803655405,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,SM02/PLASMAPK PEAK,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,1,622803655401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,6,622803655406,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,7,622803655407,"Red Cells, Clot",Received,,Default Discard/Not Return,SM04/SERUM ADA PRE,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,9,622803655409,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,10,622803655410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,8,622803655408,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,27-May-2026,I-0,28-May-2026,28-May-2026,6228036553,10,622803655310,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,07:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,3,622803655403,"Whole Blood, EDTA, Dry",Received,,Default Discard/Not Return,PLASMA PK TROUGH,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,11,622803655411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,2,622803655402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,12,622803655412,"Red Cells, Clot",Received,,Default Discard/Not Return,SM06/SERUM,BIOMARKERS,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,13,622803655413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,14,622803655414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,15,622803655415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,16,622803655416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,17,622803655417,"Red Cells, Clot",Received,,Default Discard/Not Return,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,08-Apr-2026,I-0,09-Apr-2026,09-Apr-2026,6228036554,18,622803655418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,07:10,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,1,622811460801,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,7,622811460807,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,3,622811460803,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,6,622811460806,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,8,622811460808,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,9,622811460809,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,4,622811460804,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,5,622811460805,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,11,622811460811,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,10,622811460810,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,30-May-2026,6228114608,2,622811460802,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:30,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,12,622811460812,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,14,622811460814,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,,6228114608,15,622811460815,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,07:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012004,28-May-2026,SCRN,29-May-2026,29-May-2026,6228114608,13,622811460813,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,1,622811461001,Whole Blood QuantiFERON Nil,Received,,Default Discard/Not Return,QUANTIFERON PLUS,NIL-GRAY,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,2,622811461002,"Plasma, QuantiFERON Nil",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,NIL-GRAY FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,5,622811461005,Whole Blood QuantiFERON TB2,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB2-YELLOW,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,3,622811461003,Whole Blood QuantiFERON TB1,Received,,Default Discard/Not Return,QUANTIFERON PLUS,TB1-GREEN,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,6,622811461006,"Plasma, QuantiFERON TB2",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB2-YELLOW FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,4,622811461004,"Plasma, QuantiFERON TB1",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,TB1-GREEN FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,10,622811461010,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,11,622811461011,"Red Cells, Clot",Received,,Default Discard/Not Return,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,9,622811461009,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,7,622811461007,Whole Blood QuantiFERON Mitoge,Received,,Default Discard/Not Return,QUANTIFERON PLUS,MITOGEN-PURPLE,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,12,622811461012,"Serum, SST",Received,Ambient,Default Return Ambient,"HIV SCREEN,",HEPATITIS B & C,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,13,622811461013,"Red Cells, Clot",Received,,Default Discard/Not Return,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,30-Apr-2026,6228114610,14,622811461014,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,BETA HCG,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,01-May-2026,6228114610,8,622811461008,"Plasma, QuantiFERON Mitoge",Received,Frozen,Default Return Frozen,QUANTIFERON PLUS,MITOGEN-PURPLE FRZ,,,,,07:55,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,29-Apr-2026,SCRN,30-Apr-2026,,6228114610,15,622811461015,"Serum, SST",Canceled,Ambient,,FSH,FROZEN,,,,,07:55,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Screening,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,3,622813735903,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,1,622813735901,"Stool, ova & parasites(form)",Received,Ambient,Default Return Ambient,OVA & PARASITES 1,FORMALIN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,4,622813735904,"Stool, ova & parasites(PVA)",Received,Ambient,Default Return Ambient,OVA & PARASITES 2,PVA,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,22-Apr-2026,UNSCSTOOL,23-Apr-2026,23-Apr-2026,6228137359,2,622813735902,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,1,622817339701,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,4,622817339704,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,3,622817339703,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,2,622817339702,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,6,622817339706,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,8,622817339708,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,5,622817339705,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,7,622817339707,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,12,622817339712,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,16,622817339716,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,18,622817339718,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,,6228173397,17,622817339717,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:35,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,9,622817339709,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,14,622817339714,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,11,622817339711,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,10,622817339710,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,15,622817339715,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,13,622817339713,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,14,622817993214,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,9,622817993209,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,15,622817993215,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,16,622817993216,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,12,622817993212,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,13,622817993213,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,17,622817993217,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,10,622817993210,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,11,622817993211,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,1,622817993201,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,3,622817993203,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,4,622817993204,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,7,622817993207,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,2,622817993202,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,8,622817993208,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,1,622817993601,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,2,622817993602,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,6,622817993606,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-4,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,4,622817993604,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,10,622817993610,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-5,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,5,622817993605,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,14,622817993614,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMA PK I-4 PEAK,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,11,622817993611,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,12,622817993612,"Plasma, EDTA",Shipped,Frozen,Default Return Frozen,PLASMPK I-4 TROUGH,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,13,622817993613,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,16,622817993616,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,15,622817993615,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,9,622817993609,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-4,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,19,622817993619,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,18,622817993618,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,3,622817993603,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,17,622817993617,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-4 PRE,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,23-Apr-2026,6228179932,6,622817993206,"Serum, SST",Shipped,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,14:15,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,22-Apr-2026,I-2,23-Apr-2026,,6228179932,5,622817993205,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,14:15,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,20,622817993620,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,21,622817993621,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,8,622817993608,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-3,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,,6228179936,7,622817993607,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-4,77242113UCO3001-2,,,,,07:40,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,05-May-2026,I-4,06-May-2026,06-May-2026,6228179936,22,622817993622,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,07:40,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 4,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,DNA,10-Apr-2026,10-Apr-2026,6228179942,1,622817994201,"Whole Blood, EDTA, Dry",Shipped,Frozen,Default Return Frozen,SM08/WB DNA,77242113UCO3001,,,,,10:35,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,DNA,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,3,622817994503,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,4,622817994504,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,1,622817994501,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,23-May-2026,6228179945,2,622817994502,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,1,622819434101,"Stool, ova & parasites(form)",Canceled,Ambient,,OVA & PARASITES 1,FORMALIN,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,,6228194341,4,622819434104,"Stool, ova & parasites(PVA)",Canceled,Ambient,,OVA & PARASITES 2,PVA,,,,,07:45,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,3,622819434103,"Culture, Stool",Received,Ambient,Default Return Ambient,STOOL CULTURE,,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,20-Apr-2026,SCRNSTOOL,21-Apr-2026,21-Apr-2026,6228194341,2,622819434102,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,07:45,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132001,12-Mar-2026,BXSCR,13-Mar-2026,13-Mar-2026,6227635161,5,622763516105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:58,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10021,Dr.Martin Bortlik,CZ100212001,16-Mar-2026,BXSCR,18-Mar-2026,18-Mar-2026,6227635223,5,622763522305,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,13:49,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,,,,19-Mar-2026,19-Mar-2026,6227323233,31,622732323331,"Serum, SST",Received,Ambient,Default Return Ambient,,,,,,,,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012002,18-Mar-2026,BXSCR,19-Mar-2026,19-Mar-2026,6227323224,5,622732322405,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:46,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,3,622825207203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,1,622825207201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,08:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,,6228252073,4,622825207304,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,2,622825207302,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,4,622825207204,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,BIOPSY PK,77242113UCO3001,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,09-May-2026,6228252072,2,622825207202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:30,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,15-May-2026,6228252073,3,622825207303,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,1,622825207301,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,CZ100122001,23-Mar-2026,BXSCR,24-Mar-2026,24-Mar-2026,6227697736,5,622769773605,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:15,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,1,622830822401,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,2,622830822402,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,5,622830822405,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,6,622830822406,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-0 PEAK,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,7,622830822407,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,9,622830822409,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,10,622830822410,"Stool, unpreserved",In Inventory,Frozen,Default Return Frozen,SM10/FECAL,BIOMARKERS,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,8,622830822408,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-0 PRE,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,11,622830822411,Whole Blood PAXgene RNA,Shipped,Frozen,Default Return Frozen,SM07/WB RNA,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,13,622830822413,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-1,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,3,622830822403,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,4,622830822404,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-0 TROUGH,77242113UCO3001,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,14,622830822414,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-2,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,16,622830822416,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,15,622830822415,"Serum, SST",Shipped,Frozen,Default Return Frozen,SM06/SERUM BIOM,77242113UCO3001-3,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,12,622830822412,"Red Cells, Clot",Not Received,,,SM06/SERUM,BIOMARKERS,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,,6228308224,17,622830822417,"Red Cells, Clot",Not Received,,,"CHEM, LIPID PANEL",& CRP,,,,,10:25,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,12-May-2026,I-0,13-May-2026,13-May-2026,6228308224,18,622830822418,"Serum, SST",Received,Ambient,Default Return Ambient,"CHEM, LIPID PANEL",& CRP,,,,,10:25,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,01-Apr-2026,BXSCR,02-Apr-2026,02-Apr-2026,6228023951,5,622802395105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:31,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,3,622839811503,"Whole Blood, EDTA, Dry",Not Received,,,SM02/PLASMAPK PEAK,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,2,622839811502,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMPK I-2 TROUGH,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,4,622839811504,"Plasma, EDTA",In Inventory,Frozen,Default Return Frozen,PLASMA PK I-2 PEAK,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,6,622839811506,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-1,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,5,622839811505,"Red Cells, Clot",Not Received,,,SM04/SERUM ADA PRE,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,7,622839811507,"Serum, SST",In Inventory,Frozen,Default Return Frozen,SERUM ADA I-2 PRE,77242113UCO3001-2,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,8,622839811508,"Stool, unpreserved",Shipped,Frozen,Default Return Frozen,STOOL I-2,77242113UCO3001,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,10,622839811510,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-3,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,9,622839811509,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-2,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,11,622839811511,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-4,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,12,622839811512,"Stool, unpreserved",Not Received,Frozen,Specimen not submitted,STOOL I-2,77242113UCO3001-5,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,13,622839811513,"Feces, unpreserved",Received,Frozen,Default Return Frozen,FECAL CALPROTECTIN,FROZEN,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,14,622839811514,"Whole Blood, EDTA, Dry",Received,Ambient,Default Return Ambient,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,1,622839811501,"Whole Blood, EDTA, Dry",Not Received,,,PLASMA PK TROUGH,,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,17,622839811517,"Serum, SST",Received,Ambient,Default Return Ambient,CHEM PANEL &,CRP,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,27-May-2026,6228398115,15,622839811515,"Slides, Hematology",Received,Ambient,No Orders Attached,HEMATOLOGY,,,,,,09:05,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,26-May-2026,I-2,27-May-2026,,6228398115,16,622839811516,"Red Cells, Clot",Not Received,,,CHEM PANEL &,CRP,,,,,09:05,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 2,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222005,09-Apr-2026,I-0,10-Apr-2026,10-Apr-2026,6228173397,19,622817339719,,Canceled,,,,,,,,,10:35,13:56,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Induction Week 0,, +77242113UCO3001,CZ10020,Dr.Lucie Gonsorcikova,CZ100201001,15-Apr-2026,BXSCR,16-Apr-2026,16-Apr-2026,6227993984,5,622799398405,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:04,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132002,21-Apr-2026,BXSCR,22-Apr-2026,22-Apr-2026,6227635159,5,622763515905,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:18,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,1,622850173201,Wet Tissue Biopsy,Removed,Ambient,Default Return Ambient,SM11/BIOPSY,HISTOLOGY,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,2,622850173202,Biopsy RNA Later,In Inventory,Frozen,Default Return Frozen,SM13/BIOPSY RNA,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,,6228501732,4,622850173204,"Biopsy, Frozen Tissue",Not Received,Frozen,,BIOPSY PK,77242113UCO3001,,,,,00:00,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,28-May-2026,6228501732,3,622850173203,"Biopsy, Frozen Tissue",In Inventory,Frozen,Default Return Frozen,SM14/BIOPSY CRYO,FROZEN,,,,,00:00,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10009,Dr. Jiri Pumprla,CZ100092001,24-Apr-2026,BXSCR,28-Apr-2026,28-Apr-2026,6227323351,5,622732335105,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,14:22,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,1,622861056401,"Stool, ova & parasites(form)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,3,622861056403,"Culture, Stool",Canceled,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,,6228610564,4,622861056404,"Stool, ova & parasites(PVA)",Not Received,Ambient,,,,,,,,09:30,,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,06-May-2026,SCRNSTOOL,07-May-2026,07-May-2026,6228610564,2,622861056402,"Stool, unpreserved",Received,Frozen,Default Return Frozen,C-DIFF TOXIN,& PCR FROZEN,,,,,09:30,07:00,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Stool Pathogens,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012001,06-May-2026,BX12,07-May-2026,07-May-2026,6228252072,5,622825207205,"Tissue , Paraffin Block",Shipped,,Default Return Ambient,,,,,,,00:00,15:52,Czech Republic,,08:30,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10012,Dr.Stefan Konecny,,,,08-May-2026,08-May-2026,6227697745,31,622769774531,,In Inventory,,Default Return Frozen,,,,,,,,16:05,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Unscheduled,, +77242113UCO3001,CZ10001,Dr. Matej Falc,CZ100012003,13-May-2026,BXSCR,14-May-2026,14-May-2026,6228252073,5,622825207305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,12:51,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062002,14-May-2026,BXSCR,15-May-2026,15-May-2026,6227323256,5,622732325605,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:06,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10016,Dr.Robert Mudr,CZ100162001,19-May-2026,BXSCR,20-May-2026,20-May-2026,6227635193,5,622763519305,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,17:34,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10022,Dr. Petr Hrabak,CZ100222003,20-May-2026,BX12,21-May-2026,21-May-2026,6228179945,5,622817994505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:59,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10013,Dr.David Stepek,CZ100132003,25-May-2026,BXSCR,26-May-2026,26-May-2026,6228501732,5,622850173205,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,13:03,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10003,Dr. Leksa Vaclav,CZ100032001,27-May-2026,BXSCR,28-May-2026,28-May-2026,6227323320,5,622732332005,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,14:30,Czech Republic,,07:00,,,213069,EMEA,,,,,,,,Biopsy,, +77242113UCO3001,CZ10006,Dr. Michal Konecny,CZ100062001,29-May-2026,BX12,30-May-2026,30-May-2026,6227323255,5,622732325505,"Tissue , Paraffin Block",In Inventory,,Default Return Ambient,,,,,,,00:00,15:53,Czech Republic,,07:30,,,213069,EMEA,,,,,,,,Biopsy,, diff --git a/Covance_UCO3001/Testing/create_visit_report.py b/Covance_UCO3001/Testing/create_visit_report.py new file mode 100644 index 0000000..67fc932 --- /dev/null +++ b/Covance_UCO3001/Testing/create_visit_report.py @@ -0,0 +1,83 @@ +import glob +import os +import pandas as pd +from openpyxl import Workbook +from openpyxl.styles import Font, PatternFill, Border, Side, Alignment +from openpyxl.utils import get_column_letter +from datetime import date, datetime + +src_dir = "/Covance_UCO3001/" +out_dir = "U:/Dropbox/!!!Days/Downloads Z230/" + +# Find source CSV +csv_files = glob.glob(src_dir + "_EDCStdRpt-DataListing.csv") +assert csv_files, "CSV file not found!" +csv_file = csv_files[0] +print(f"Source: {csv_file}") + +# Delete old report +today = date.today().strftime("%Y-%m-%d") +out_path = out_dir + f"{today} 77242113UCO3001 Visit report.xlsx" +for old in glob.glob(out_dir + "*77242113UCO3001 Visit report*.xlsx"): + os.remove(old) + print(f"Deleted old: {old}") + +# Load CSV +df = pd.read_csv(csv_file, encoding='utf-8') + +# Select and rename columns +result = df[['SiteNumber', 'Subject', 'InstanceName', 'Field4Value', 'Field5Value']].copy() +result.columns = ['Číslo centra', 'Číslo pacienta', 'Kód návštěvy', 'Datum návštěvy', 'Typ návštěvy'] + +# Parse date to real datetime +def parse_date(val): + if pd.isna(val) or val == '': + return None + try: + return datetime.strptime(str(val).strip(), '%d %b %Y') + except: + return None + +result['Datum návštěvy'] = result['Datum návštěvy'].apply(parse_date) + +# Sort: Číslo centra → Číslo pacienta → Datum návštěvy ascending +result = result.sort_values(['Číslo centra', 'Číslo pacienta', 'Datum návštěvy']).reset_index(drop=True) + +# Build workbook +wb = Workbook() +ws = wb.active +ws.title = "Přehled návštěv" + +thin = Side(style='thin') +border = Border(left=thin, right=thin, top=thin, bottom=thin) +header_fill = PatternFill("solid", fgColor="4472C4") +header_font = Font(name='Calibri', bold=True, size=11, color="FFFFFF") +data_font = Font(name='Calibri', size=11) + +col_widths = [20, 20, 20, 16, 16] + +# Header row +for col_idx, (col_name, width) in enumerate(zip(result.columns, col_widths), 1): + cell = ws.cell(row=1, column=col_idx, value=col_name) + cell.font = header_font + cell.fill = header_fill + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True) + ws.column_dimensions[get_column_letter(col_idx)].width = width + +ws.row_dimensions[1].height = 30 +ws.freeze_panes = "A2" + +# Data rows +for row_idx, row in enumerate(result.itertuples(index=False), 2): + for col_idx, value in enumerate(row, 1): + cell = ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center') + if col_idx == 4 and value is not None: # Datum návštěvy + cell.number_format = 'DD-MMM-YYYY' + +wb.save(out_path) +print(f"Saved: {out_path}") +print(f"Rows: {len(result)}") diff --git a/Covance_UCO3001/Trash/download_test_results_v1.0.md b/Covance_UCO3001/Trash/download_test_results_v1.0.md new file mode 100644 index 0000000..c6fc9c4 --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.0.md @@ -0,0 +1,238 @@ +# download_test_results_v1.0.py — dokumentace + +**Verze:** 1.0 · **Datum:** 2026-05-29 +**Umístění:** `U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.0.py` + +--- + +## 1. Účel + +Automatické stažení reportu **Standard Test Results** z portálu Labcorp Sponsor +Portal (`xsp.labcorp.com`) pro studii **77242113UCO3001** (interní study ID +**36940**). Skript projde **všech 12 center** studie, u každého vyexportuje grid +do CSV a uloží ho timestampovaný do adresáře `Source/`. + +> Pozn.: Stahuje se záložka **Standard** (ne Microbiology). URL končí +> `/standard-test-results`. + +--- + +## 2. Spuštění + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.0.py +``` + +- Prohlížeč běží **viditelně** (`headless=False`), maximalizovaný. +- Používá **persistent profile** (`browser_profile/` vedle skriptu) — session + (přihlášení) přežívá mezi spuštěními. + +--- + +## 3. Konfigurace (konstanty v hlavičce skriptu) + +| Konstanta | Hodnota / význam | +|---|---| +| `EMAIL` | `vbuzalka@its.jnj.com` (login přes iMedidata/OKTA na xsp.covance.com) | +| `PASSWORD` | heslo k účtu (uložené přímo v kódu) | +| `LOGIN_URL` | `https://xsp.covance.com/` — po přihlášení redirect na xsp.labcorp.com | +| `OUT_DIR` | `U:\PythonProject\Janssen\Covance_UCO3001\Source` | +| `PROFILE_DIR` | `browser_profile/` vedle skriptu (persistent Chromium profil) | +| `STUDY` | `36940` (interní study ID pro 77242113UCO3001) | +| `SITE_IDS` | seznam 12 interních čísel center — viz níže | + +### Interní čísla center (SITE_IDS) + +``` +930551, 930556, 930525, 930549, 930543, 930547, +930555, 930557, 930539, 930536, 930553, 930531 +``` + +> **Zdroj:** převzato z `download_equeries_report_v1.1.py` (proměnná `SITES`). +> Jsou to **interní ID** Labcorpu, **nikoli** čísla center typu CZ10001. +> V URL test-results se používá právě toto interní ID: +> `…/test-results/{SITE_ID}/standard-test-results`. + +### Generování REPORTS (DRY) + +`REPORTS` se sestaví automaticky z `SITE_IDS` — URL i název souboru mají vzor +napsaný jen jednou. **Přidání/odebrání centra = úprava seznamu `SITE_IDS`.** + +--- + +## 4. Výstupní soubory + +Formát názvu (timestamp + popisný název): + +``` +{YYYY-MM-DD_HHMMSS} sponsor-study-36940-test-results-{SITE_ID}-standard.csv +``` + +Příklad: +``` +2026-05-29_125710 sponsor-study-36940-test-results-930557-standard.csv +``` + +- Timestamp se generuje pro **každý** report zvlášť (v okamžiku exportu). +- Staré soubory se **nikdy nemažou** (verzování přes timestamp). +- Browser dočasný název se na disk neukládá — `expect_download` zachytí download + event a `save_as()` ho uloží pod naším názvem. + +--- + +## 5. Průběh skriptu (kroky + logging) + +Každý krok se loguje s časem (`[HH:MM:SS]`, `flush=True` → vypisuje průběžně). + +| Fáze | Co dělá | +|---|---| +| START | spustí prohlížeč | +| LOGIN | otevře login; **pokud je session aktivní, přihlášení přeskočí** | +| Pro každé centrum: | | +| KROK 1/5 | navigace na report URL | +| KROK 2/5 | čeká na řádky gridu `.ag-row` **nebo** prázdný grid; pak stabilizace počtu | +| KROK 3/5 | klik na viditelné tři tečky (`more_horiz`) → otevře menu | +| KROK 4/5 | klik na viditelné „Export to CSV" → zachytí download | +| KROK 5/5 | uloží soubor do `OUT_DIR` | +| KONEC | souhrn `hotovo X/12` + seznam selhaných center | + +### Příklad výstupu + +``` +[12:56:35] START: prohlizec spusten. +[12:56:35] LOGIN: otviram login stranku... +[12:56:49] LOGIN: prihlaseni OK (...) +[12:56:49] === Centrum 930557 (studie 36940) === +[12:56:59] KROK 1/5: stranka nactena (...) +[12:57:05] KROK 2/5: radky se objevily, cekam na stabilizaci poctu... +[12:57:06] ...kontrola #1: 153 radku +[12:57:08] ...kontrola #2: 153 radku +[12:57:10] KROK 2/5: data stabilni (153 radku v gridu). +[12:57:10] KROK 3/5: menu otevreno. +[12:57:11] KROK 4/5: stahovani zachyceno, ukladam soubor... +[12:57:11] KROK 5/5: HOTOVO -> ...\2026-05-29_125710 sponsor-study-36940-test-results-930557-standard.csv +``` + +--- + +## 6. Klíčové technické poznatky (PROČ to tak je) — ověřeno přes Chrome DevTools + +Stránka test-results je **Angular SPA** s knihovnou **MDL** a tabulkou **AG Grid**. +Tyto detaily byly zjištěny živou inspekcí DOM (Claude in Chrome MCP), ne hádáním: + +### 6.1 Čekání na data = řádky AG Gridu +- Grid je `` → `` (AG Grid). +- Data jsou načtena, jakmile se objeví řádky **`div.ag-row`** (count jde z 0 → N; + pro 930557 to bylo 153 řádků). +- **Řádky jsou `position-absolute`** (virtuální render AG Gridu) → Playwright je + **nepovažuje za „visible"**. Proto: + - ❌ `wait_for_selector("div.ag-row")` (default `state="visible"`) **timeoutuje** + i když řádky existují. + - ✅ čekat na **přítomnost v DOM**: + `wait_for_function("() => document.querySelectorAll('div.ag-row').length > 0")`. +- Stabilizace: počet řádků se čte opakovaně co 2 s, dokud se 2× po sobě neshodne. + +### 6.2 „Fetching Data" / spinner — POZOR, NEPLATÍ pro tuto stránku +- Na test-results stránce **NENÍ** text „Fetching Data" (ten je na *samples* + reportu, jiná stránka!). +- Je tu element ``, ale ten jen krátce problikne `` + při route-loadingu, **ne** během načítání dat gridu → nelze na něj spoléhat. +- Spolehlivý signál je výhradně **objevení `.ag-row`**. + +### 6.3 Tři tečky (export) — na stránce jsou DVA `` +- Na stránce existují **2× ``**: jeden **skrytý**, jeden viditelný. +- Existují **3× ikona `more_horiz`**: 1 mimo export (toolbar), 1 ve skrytém + ag-export, 1 ve viditelném. +- Proto je nutný filtr na viditelnost: + ✅ `page.locator("ag-export button:visible", has_text="more_horiz").first.click()` + +### 6.4 „Export to CSV" — v DOM jsou DVĚ položky +- Po otevření menu existují **2× `mdl-menu-item` „Export to CSV"** (jedna skrytá + z neviditelného ag-export, jedna viditelná). Stejně tak 2× „Export to Excel". +- Proto: + ✅ `page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click()` + - ❌ `get_by_text("Export to CSV")` → **strict mode violation** (2 elementy). + +### 6.5 Prázdné centrum (ověřeno přes Chrome MCP na centru 930551) +- AG Grid při 0 záznamech zobrazí no-rows overlay s textem **„No Data"**. +- Struktura: `.ag-overlay` → `.ag-overlay-panel` → + **`.ag-overlay-no-rows-wrapper`** → `No Data`. +- ⚠️ Třída **NENÍ** `.ag-overlay-no-rows-center` (to byl chybný předpoklad, + na který detekce nikdy nezabrala) — správně je **`.ag-overlay-no-rows-wrapper`**. +- ⚠️ Text „No Data" **NENÍ** v `.ag-body-viewport` (ten je prázdný, + `height: 1px`) — je v samostatném overlay sourozenci. +- ⚠️ Na stránce jsou **2 overlaye** (jeden skrytý, jeden viditelný) — stejně + jako u `ag-export`. Proto kontrola **viditelnosti** `offsetParent !== null`. +- Detekce (KROK 2): + ```js + () => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + } + ``` +- KROK 2 čeká na `.ag-row` **NEBO** tuto detekci → centrum bez dat + necheká zbytečně 120 s a export se přeskočí. + +--- + +## 7. Login logika (sdílená napříč Covance skripty) + +```python +page.goto(LOGIN_URL) +page.wait_for_load_state("networkidle") +if not page.get_by_label("Email").is_visible(): + return # session aktivní → login přeskočit +# jinak: Email → Next → Password → Verify → wait redirect (code= zmizí z URL) +``` + +- **Proč `is_visible()` a ne kontrola URL:** po `goto(LOGIN_URL)` zůstane URL + `xsp.covance.com` i po redirectu na dashboard, takže URL test je nespolehlivý. + Spolehlivé je, zda **existuje pole Email** (login formulář) nebo ne. +- `is_visible()` neháže výjimku — když pole není, vrátí `False`. + +--- + +## 8. Chrome flagy proti „Restore pages" / broken session + +V `args` launchu: +``` +--disable-restore-session-state # neobnovovat předchozí session +--disable-session-crashed-bubble # potlačit "Chromium didn't shut down correctly" +``` +Důvod: při natvrdo ukončeném skriptu (kill) Chromium jinak při dalším startu +nabídne „Restore pages?" dialog, který rozbil interakci. + +--- + +## 9. Robustnost smyčky + +- Každé centrum je v `try/except` → **chyba u jednoho nezastaví zbytek**. +- Na konci souhrn: `hotovo X/12` + seznam `SELHALA centra: …`. +- Selhané centrum v logu = snadno se dohledá a vyřadí/opraví ID. + +--- + +## 10. Možná budoucí rozšíření + +- **Microbiology záložka**: existuje i `…/test-results/{SITE}/microbiology…` + (analogická stránka, pravděpodobně stejná AG Grid logika). +- **Druhá studie** (MDD3003, study 35472): přidat další `STUDY` + `SITE_IDS` + a obalit do vnější smyčky (vzor viz `download_samples_report` se seznamem STUDIES). +- **Ověření počtu**: počet `.ag-row` se loguje — dá se porovnat s počtem řádků + ve staženém CSV jako sanity check. + +--- + +## 11. Příbuzné skripty (stejná složka / portál) + +| Skript | Co stahuje | +|---|---| +| `download_samples_report_v1.1.py` | All Samples (sampletracking, čeká na „Fetching Data") | +| `download_kit_inventory_v2.1.py` | Kit inventory (on-hand expiration) | +| `download_equeries_report_v1.1.py` | eQuery reporty (zdroj SITE_IDS) | +| `download_test_results_v1.0.py` | **tento** — Standard Test Results | + +Všechny sdílejí: persistent profile, login logiku s `is_visible()` checkem, +`ag-export` + „Export to CSV" pattern (equeries/test-results). diff --git a/Covance_UCO3001/Trash/download_test_results_v1.0.py b/Covance_UCO3001/Trash/download_test_results_v1.0.py new file mode 100644 index 0000000..5c58af0 --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.0.py @@ -0,0 +1,173 @@ +# ============================================================================= +# Název: download_test_results_v1.0.py +# Verze: 1.0 +# Datum: 2026-05-29 +# Popis: Stahuje Standard Test Results ze xsp.labcorp.com pro studii 36940. +# Čeká na načtení AG Grid řádků (.ag-row) před exportem. +# Výstup: timestampované CSV do adresáře Source/. +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import os + + +def log(msg): + print(f"[{datetime.now().strftime('%H:%M:%S')}] {msg}", flush=True) + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +PROFILE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "browser_profile") + +# Studie + jejich interni cisla center. +# 36940 = 77242113UCO3001 (zdroj center: download_equeries_report SITES) +# 35472 = druha studie +STUDIES = [ + { + "study": "36940", + "sites": [ + "930551", "930556", "930525", "930549", "930543", "930547", + "930555", "930557", "930539", "930536", "930553", "930531", + ], + }, + { + "study": "35472", + "sites": [ + "898745", "898739", "898733", "898744", "898727", + ], + }, +] + +# Typy reportu: zalozka v URL + suffix v nazvu souboru. +REPORT_TYPES = [ + {"slug": "standard-test-results", "suffix": "standard"}, + {"slug": "microbiology", "suffix": "microbiology"}, +] + +REPORTS = [ + { + "site": sid, + "study": st["study"], + "type": rt["suffix"], + "url": f"https://xsp.labcorp.com/sponsor/study/{st['study']}/test-results/{sid}/{rt['slug']}", + "filename": f"sponsor-study-{st['study']}-test-results-{sid}-{rt['suffix']}.csv", + } + for st in STUDIES + for sid in st["sites"] + for rt in REPORT_TYPES +] + + +def login(page): + log("LOGIN: otviram login stranku...") + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle") + if not page.get_by_label("Email").is_visible(): + log(f"LOGIN: session uz aktivni, prihlaseni preskoceno ({page.url})") + return + log("LOGIN: zadavam email...") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + log("LOGIN: zadavam heslo...") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + log("LOGIN: cekam na presmerovani po prihlaseni...") + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + log(f"LOGIN: prihlaseni OK ({page.url})") + + +def download_report(page, report): + log(f"=== Centrum {report['site']} / {report['type']} (studie {report['study']}) ===") + + log(f"KROK 1/5: navigace na report URL...") + page.goto(report["url"]) + log(f"KROK 1/5: stranka nactena ({page.url})") + + # Grid je AG Grid uvnitř . Data jsou nactena, jakmile + # se v gridu objevi radky (.ag-row jde z 0 -> N). Pockej na prvni radek + # a pak na stabilizaci poctu (proti castecnemu renderu). + log("KROK 2/5: cekam na radky gridu (.ag-row) nebo prazdny grid ('No Data')...") + # AG Grid radky jsou position-absolute (virtualni render), takze nejsou + # "visible" dle Playwrightu -> cekej na pritomnost v DOM, ne na viditelnost. + # Prazdne centrum: AG Grid vykresli no-rows overlay s textem "No Data" ve + # wrapperu .ag-overlay-no-rows-wrapper. POZOR: trida NENI -no-rows-center; + # navic jsou na strance 2 overlaye (jeden skryty) -> kontroluj viditelny + # (offsetParent != null). Detekuj, aby to u centra bez dat necekalo 120 s. + EMPTY_GRID_JS = """() => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + }""" + page.wait_for_function( + f"""() => document.querySelectorAll('div.ag-row').length > 0 + || ({EMPTY_GRID_JS})()""", + timeout=120000, + ) + if page.evaluate(EMPTY_GRID_JS): + log("KROK 2/5: centrum bez dat ('No Data' overlay) — preskakuji export.") + return + log("KROK 2/5: radky se objevily, cekam na stabilizaci poctu...") + prev = -1 + for i in range(20): # max ~40 s stabilizace + cnt = page.locator("div.ag-row").count() + log(f" ...kontrola #{i+1}: {cnt} radku") + if cnt == prev and cnt > 0: + break + prev = cnt + page.wait_for_timeout(2000) + page.wait_for_timeout(2000) # buffer + log(f"KROK 2/5: data stabilni ({prev} radku v gridu).") + + # Tri tecky: na strance jsou 2x (jeden skryty), klikni na + # VIDITELNY more_horiz button. + log("KROK 3/5: klikam na viditelne tri tecky (more_horiz)...") + page.locator("ag-export button:visible", has_text="more_horiz").first.click() + log("KROK 3/5: menu otevreno.") + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + log("KROK 4/5: klikam na 'Export to CSV' a cekam na stahovani...") + with page.expect_download(timeout=60000) as dl: + # 2x "Export to CSV" v DOM (jeden skryty) -> klikni na VIDITELNY + page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click() + log("KROK 4/5: stahovani zachyceno, ukladam soubor...") + dl.value.save_as(dest) + log(f"KROK 5/5: HOTOVO -> {dest}") + + +if __name__ == "__main__": + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + log("START: prohlizec spusten.") + login(page) + ok, failed = 0, [] + for idx, report in enumerate(REPORTS, 1): + log(f">>> Report {idx}/{len(REPORTS)}") + try: + download_report(page, report) + ok += 1 + except Exception as e: + failed.append(f"{report['site']}/{report['type']}") + log(f"CHYBA u centra {report['site']}/{report['type']}: {e!r} — pokracuji dalsim.") + log(f"KONEC: hotovo {ok}/{len(REPORTS)} reportu.") + if failed: + log(f"KONEC: SELHALA centra: {', '.join(failed)}") + context.close() diff --git a/Covance_UCO3001/Trash/download_test_results_v1.1.md b/Covance_UCO3001/Trash/download_test_results_v1.1.md new file mode 100644 index 0000000..fcb4b92 --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.1.md @@ -0,0 +1,231 @@ +# download_test_results_v1.1.py — dokumentace + +**Verze:** 1.1 · **Datum:** 2026-05-29 +**Umístění:** `U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.1.py` + +> **Změny v1.1 oproti 1.0:** přidána **druhá studie 35472 (MDD)** a druhý typ +> reportu **Microbiology**. Dříve jen 36940 + Standard. + +--- + +## 1. Účel + +Automatické stažení reportů **Test Results** z portálu Labcorp Sponsor Portal +(`xsp.labcorp.com`). Skript projde **2 studie × jejich centra × 2 typy reportu**, +u každého vyexportuje grid do CSV a uloží ho timestampovaný do `Source/`. + +| Studie | Interní ID | Význam | Počet center | +|---|---|---|---| +| UC | `36940` | 77242113UCO3001 | 12 | +| MDD | `35472` | druhá studie | 5 | + +Typy reportu (záložka v URL): **Standard** (`/standard-test-results`) a +**Microbiology** (`/microbiology`). + +**Celkem: (12 + 5) × 2 = 34 reportů** (prázdná centra se přeskakují, viz 6.5). + +--- + +## 2. Spuštění + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.1.py +``` + +- Prohlížeč běží **viditelně** (`headless=False`), maximalizovaný. +- **Persistent profile** (`browser_profile/` vedle skriptu) — session přežívá. + +### Dočasný test (1 centrum / studie) + +Pro rychlé ověření stačí dočasně zúžit `STUDIES`, např.: + +```python +STUDIES = [ + {"study": "36940", "sites": ["930557"]}, # UC — centrum s daty + {"study": "35472", "sites": ["898745"]}, # MDD — první centrum +] +``` + +→ proběhnou 4 reporty (2 centra × 2 typy). Po testu vrátit plný seznam. + +--- + +## 3. Konfigurace (konstanty v hlavičce skriptu) + +| Konstanta | Hodnota / význam | +|---|---| +| `EMAIL` | `vbuzalka@its.jnj.com` (login přes iMedidata/OKTA na xsp.covance.com) | +| `PASSWORD` | heslo k účtu (uložené přímo v kódu) | +| `LOGIN_URL` | `https://xsp.covance.com/` — po přihlášení redirect na xsp.labcorp.com | +| `OUT_DIR` | `U:\PythonProject\Janssen\Covance_UCO3001\Source` | +| `PROFILE_DIR` | `browser_profile/` vedle skriptu (persistent Chromium profil) | +| `STUDIES` | seznam studií, každá má `study` (interní ID) + `sites` (interní ID center) | +| `REPORT_TYPES` | `standard-test-results`/`standard` a `microbiology`/`microbiology` | + +### Interní čísla center + +``` +36940 (UC): 930551, 930556, 930525, 930549, 930543, 930547, + 930555, 930557, 930539, 930536, 930553, 930531 +35472 (MDD): 898745, 898739, 898733, 898744, 898727 +``` + +> **Pozor:** jsou to **interní ID** Labcorpu, **nikoli** čísla center typu +> CZ10001. V URL test-results se používá právě toto interní ID: +> `…/test-results/{SITE_ID}/{standard-test-results|microbiology}`. +> (Pozn.: 36940 zdroj = `download_equeries_report_v1.1.py SITES`; +> 35472 zdroj = ručně dodaná čísla center.) + +### Generování REPORTS (DRY) + +`REPORTS` se sestaví automaticky jako **kartézský součin** +`STUDIES × sites × REPORT_TYPES`. Přidání/odebrání centra, studie nebo typu +reportu = úprava příslušného seznamu, vzor URL i názvu se píše jen jednou. + +--- + +## 4. Výstupní soubory + +Formát názvu (timestamp + popisný název): + +``` +{YYYY-MM-DD_HHMMSS} sponsor-study-{STUDY}-test-results-{SITE_ID}-{TYP}.csv +``` + +`{TYP}` = `standard` nebo `microbiology`. Příklady: +``` +2026-05-29_131121 sponsor-study-36940-test-results-930557-standard.csv +2026-05-29_131500 sponsor-study-36940-test-results-930557-microbiology.csv +2026-05-29_131800 sponsor-study-35472-test-results-898745-standard.csv +``` + +- Timestamp se generuje pro **každý** report zvlášť (v okamžiku exportu). +- Staré soubory se **nikdy nemažou** (verzování přes timestamp). +- `expect_download` zachytí download event, `save_as()` uloží pod naším názvem. + +--- + +## 5. Průběh skriptu (kroky + logging) + +Každý krok se loguje s časem (`[HH:MM:SS]`, `flush=True`). + +| Fáze | Co dělá | +|---|---| +| START | spustí prohlížeč | +| LOGIN | otevře login; **pokud je session aktivní, přihlášení přeskočí** | +| Pro každý report (studie × centrum × typ): | | +| KROK 1/5 | navigace na report URL | +| KROK 2/5 | čeká na řádky gridu `.ag-row` **nebo** prázdný grid („No Data"); pak stabilizace počtu | +| KROK 3/5 | klik na viditelné tři tečky (`more_horiz`) → otevře menu | +| KROK 4/5 | klik na viditelné „Export to CSV" → zachytí download | +| KROK 5/5 | uloží soubor do `OUT_DIR` | +| KONEC | souhrn `hotovo X/34` + seznam selhaných (`site/typ`) | + +Log u každého reportu ukazuje i typ: `=== Centrum 930557 / microbiology (studie 36940) ===`. + +--- + +## 6. Klíčové technické poznatky (PROČ to tak je) — ověřeno přes Chrome MCP + +Stránka test-results je **Angular SPA** s knihovnou **MDL** a tabulkou **AG Grid**. +Microbiology záložka má **stejnou** strukturu jako Standard → vše níže platí pro oba. + +### 6.1 Čekání na data = řádky AG Gridu +- Data jsou načtena, jakmile se objeví řádky **`div.ag-row`** (count 0 → N). +- **Řádky jsou `position-absolute`** (virtuální render) → Playwright je + **nepovažuje za „visible"**. Proto: + - ❌ `wait_for_selector("div.ag-row")` (default visible) **timeoutuje**. + - ✅ `wait_for_function("() => document.querySelectorAll('div.ag-row').length > 0")`. +- Stabilizace: počet řádků se čte co 2 s, dokud se 2× po sobě neshodne. +- **POZN.: počet `.ag-row` se „zastropuje"** (typicky ~153) kvůli virtuálnímu + renderu — NENÍ to skutečný počet záznamů. Slouží jen jako signál „data jsou". + **Export do CSV ale vyexportuje VŠECHNY řádky** (ověřeno: různé velikosti CSV). + +### 6.2 „Fetching Data" / spinner — NEPLATÍ pro tuto stránku +- Na test-results **NENÍ** text „Fetching Data" (ten je na *samples* reportu). +- `` jen problikne při route-loadu → nespoléhat. Signál = `.ag-row`. + +### 6.3 Tři tečky (export) — na stránce jsou DVA `` +- 2× `` (1 skrytý), 3× ikona `more_horiz`. Proto filtr na viditelnost: + ✅ `page.locator("ag-export button:visible", has_text="more_horiz").first.click()` + +### 6.4 „Export to CSV" — v DOM jsou DVĚ položky +- 2× `mdl-menu-item` „Export to CSV" (1 skrytá). Proto: + ✅ `page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click()` + - ❌ `get_by_text("Export to CSV")` → strict mode violation (2 elementy). + +### 6.5 Prázdné centrum (ověřeno přes Chrome MCP na centru 930551) +- AG Grid při 0 záznamech zobrazí no-rows overlay s textem **„No Data"**. +- Struktura: `.ag-overlay` → `.ag-overlay-panel` → + **`.ag-overlay-no-rows-wrapper`** → `No Data`. +- ⚠️ Třída **NENÍ** `.ag-overlay-no-rows-center` (chybný předpoklad, nikdy + nezabral) — správně je **`.ag-overlay-no-rows-wrapper`**. +- ⚠️ Text „No Data" **NENÍ** v `.ag-body-viewport` (ten je prázdný, `height: 1px`). +- ⚠️ Na stránce jsou **2 overlaye** (1 skrytý, 1 viditelný) → kontrola + viditelnosti `offsetParent !== null`. +- Detekce (KROK 2): + ```js + () => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + } + ``` +- KROK 2 čeká na `.ag-row` **NEBO** tuto detekci → prázdné centrum necheká + zbytečně 120 s a export se přeskočí. + +--- + +## 7. Login logika (sdílená napříč Covance skripty) + +```python +page.goto(LOGIN_URL) +page.wait_for_load_state("networkidle") +if not page.get_by_label("Email").is_visible(): + return # session aktivní → login přeskočit +# jinak: Email → Next → Password → Verify → wait redirect (code= zmizí z URL) +``` + +- **Proč `is_visible()` a ne kontrola URL:** po `goto(LOGIN_URL)` zůstane URL + `xsp.covance.com` i po redirectu, takže URL test je nespolehlivý. +- `is_visible()` neháže výjimku — když pole není, vrátí `False`. + +--- + +## 8. Chrome flagy proti „Restore pages" / broken session + +``` +--disable-restore-session-state # neobnovovat předchozí session +--disable-session-crashed-bubble # potlačit "Chromium didn't shut down correctly" +``` + +--- + +## 9. Robustnost smyčky + +- Každý report je v `try/except` → **chyba u jednoho nezastaví zbytek**. +- Na konci souhrn: `hotovo X/34` + seznam `SELHALA centra: site/typ, …`. + +--- + +## 10. Možná budoucí rozšíření + +- **Další studie / centra**: přidat položku do `STUDIES`. +- **Další typ reportu**: přidat položku do `REPORT_TYPES` (slug + suffix). +- **Ověření počtu**: počet `.ag-row` se loguje — POZOR, je zastropený virtuálním + renderem, takže ho nelze porovnávat s počtem řádků v CSV (CSV má všechny). + +--- + +## 11. Příbuzné skripty (stejná složka / portál) + +| Skript | Co stahuje | +|---|---| +| `download_samples_report_v1.1.py` | All Samples (sampletracking, čeká na „Fetching Data") | +| `download_kit_inventory_v2.1.py` | Kit inventory (on-hand expiration) | +| `download_equeries_report_v1.1.py` | eQuery reporty (zdroj SITE_IDS pro 36940) | +| `download_test_results_v1.1.py` | **tento** — Test Results (Standard + Microbiology, 2 studie) | + +Všechny sdílejí: persistent profile, login s `is_visible()` checkem, +`ag-export` + „Export to CSV" pattern. diff --git a/Covance_UCO3001/Trash/download_test_results_v1.1.py b/Covance_UCO3001/Trash/download_test_results_v1.1.py new file mode 100644 index 0000000..bb9c7e7 --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.1.py @@ -0,0 +1,175 @@ +# ============================================================================= +# Název: download_test_results_v1.1.py +# Verze: 1.1 +# Datum: 2026-05-29 +# Popis: Stahuje Test Results ze xsp.labcorp.com pro 2 studie (36940, 35472), +# oba typy reportu (Standard + Microbiology), pres vsechna centra. +# Ceka na nacteni AG Grid radku (.ag-row); prazdne centrum ('No Data') +# preskoci. Vystup: timestampovane CSV do adresare Source/. +# Zmeny v1.1: + studie 35472, + report typ microbiology (driv jen 36940/standard). +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import os + + +def log(msg): + print(f"[{datetime.now().strftime('%H:%M:%S')}] {msg}", flush=True) + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +PROFILE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "browser_profile") + +# Studie + jejich interni cisla center. +# 36940 = 77242113UCO3001 (UC) — zdroj center: download_equeries_report SITES +# 35472 = druha studie (MDD) +STUDIES = [ + { + "study": "36940", + "sites": [ + "930551", "930556", "930525", "930549", "930543", "930547", + "930555", "930557", "930539", "930536", "930553", "930531", + ], + }, + { + "study": "35472", + "sites": [ + "898745", "898739", "898733", "898744", "898727", + ], + }, +] + +# Typy reportu: zalozka v URL + suffix v nazvu souboru. +REPORT_TYPES = [ + {"slug": "standard-test-results", "suffix": "standard"}, + {"slug": "microbiology", "suffix": "microbiology"}, +] + +REPORTS = [ + { + "site": sid, + "study": st["study"], + "type": rt["suffix"], + "url": f"https://xsp.labcorp.com/sponsor/study/{st['study']}/test-results/{sid}/{rt['slug']}", + "filename": f"sponsor-study-{st['study']}-test-results-{sid}-{rt['suffix']}.csv", + } + for st in STUDIES + for sid in st["sites"] + for rt in REPORT_TYPES +] + + +def login(page): + log("LOGIN: otviram login stranku...") + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle") + if not page.get_by_label("Email").is_visible(): + log(f"LOGIN: session uz aktivni, prihlaseni preskoceno ({page.url})") + return + log("LOGIN: zadavam email...") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + log("LOGIN: zadavam heslo...") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + log("LOGIN: cekam na presmerovani po prihlaseni...") + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + log(f"LOGIN: prihlaseni OK ({page.url})") + + +def download_report(page, report): + log(f"=== Centrum {report['site']} / {report['type']} (studie {report['study']}) ===") + + log(f"KROK 1/5: navigace na report URL...") + page.goto(report["url"]) + log(f"KROK 1/5: stranka nactena ({page.url})") + + # Grid je AG Grid uvnitř . Data jsou nactena, jakmile + # se v gridu objevi radky (.ag-row jde z 0 -> N). Pockej na prvni radek + # a pak na stabilizaci poctu (proti castecnemu renderu). + log("KROK 2/5: cekam na radky gridu (.ag-row) nebo prazdny grid ('No Data')...") + # AG Grid radky jsou position-absolute (virtualni render), takze nejsou + # "visible" dle Playwrightu -> cekej na pritomnost v DOM, ne na viditelnost. + # Prazdne centrum: AG Grid vykresli no-rows overlay s textem "No Data" ve + # wrapperu .ag-overlay-no-rows-wrapper. POZOR: trida NENI -no-rows-center; + # navic jsou na strance 2 overlaye (jeden skryty) -> kontroluj viditelny + # (offsetParent != null). Detekuj, aby to u centra bez dat necekalo 120 s. + EMPTY_GRID_JS = """() => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + }""" + page.wait_for_function( + f"""() => document.querySelectorAll('div.ag-row').length > 0 + || ({EMPTY_GRID_JS})()""", + timeout=120000, + ) + if page.evaluate(EMPTY_GRID_JS): + log("KROK 2/5: centrum bez dat ('No Data' overlay) — preskakuji export.") + return + log("KROK 2/5: radky se objevily, cekam na stabilizaci poctu...") + prev = -1 + for i in range(20): # max ~40 s stabilizace + cnt = page.locator("div.ag-row").count() + log(f" ...kontrola #{i+1}: {cnt} radku") + if cnt == prev and cnt > 0: + break + prev = cnt + page.wait_for_timeout(2000) + page.wait_for_timeout(2000) # buffer + log(f"KROK 2/5: data stabilni ({prev} radku v gridu).") + + # Tri tecky: na strance jsou 2x (jeden skryty), klikni na + # VIDITELNY more_horiz button. + log("KROK 3/5: klikam na viditelne tri tecky (more_horiz)...") + page.locator("ag-export button:visible", has_text="more_horiz").first.click() + log("KROK 3/5: menu otevreno.") + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + log("KROK 4/5: klikam na 'Export to CSV' a cekam na stahovani...") + with page.expect_download(timeout=60000) as dl: + # 2x "Export to CSV" v DOM (jeden skryty) -> klikni na VIDITELNY + page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click() + log("KROK 4/5: stahovani zachyceno, ukladam soubor...") + dl.value.save_as(dest) + log(f"KROK 5/5: HOTOVO -> {dest}") + + +if __name__ == "__main__": + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + log("START: prohlizec spusten.") + login(page) + ok, failed = 0, [] + for idx, report in enumerate(REPORTS, 1): + log(f">>> Report {idx}/{len(REPORTS)}") + try: + download_report(page, report) + ok += 1 + except Exception as e: + failed.append(f"{report['site']}/{report['type']}") + log(f"CHYBA u centra {report['site']}/{report['type']}: {e!r} — pokracuji dalsim.") + log(f"KONEC: hotovo {ok}/{len(REPORTS)} reportu.") + if failed: + log(f"KONEC: SELHALA centra: {', '.join(failed)}") + context.close() diff --git a/Covance_UCO3001/Trash/download_test_results_v1.2.md b/Covance_UCO3001/Trash/download_test_results_v1.2.md new file mode 100644 index 0000000..78e239f --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.2.md @@ -0,0 +1,233 @@ +# download_test_results_v1.2.py — dokumentace + +**Verze:** 1.2 · **Datum:** 2026-05-29 +**Umístění:** `U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.2.py` + +> **Změny v1.2 oproti 1.1:** přidán **paralelní běh přes sharding** +> (`--shard N --of M`). Skript lze spustit ve více procesech současně, každý +> zpracuje svůj podíl reportů a používá vlastní profil. Spouští se přes launcher +> `run_test_results_parallel_v1.0.py`. +> **Změny v1.1 oproti 1.0:** druhá studie 35472 (MDD) + report Microbiology. + +--- + +## 1. Účel + +Automatické stažení reportů **Test Results** z portálu Labcorp Sponsor Portal +(`xsp.labcorp.com`). Skript projde **2 studie × jejich centra × 2 typy reportu**, +u každého vyexportuje grid do CSV a uloží ho timestampovaný do `Source/`. + +| Studie | Interní ID | Význam | Počet center | +|---|---|---|---| +| UC | `36940` | 77242113UCO3001 | 12 | +| MDD | `35472` | druhá studie | 5 | + +Typy reportu: **Standard** (`/standard-test-results`) a **Microbiology** (`/microbiology`). + +**Celkem: (12 + 5) × 2 = 34 reportů** (prázdná centra se přeskakují, viz 6.5). + +--- + +## 2. Spuštění + +### 2a) Paralelně (doporučeno — rychlejší) + +Přes launcher, který rozjede 4 procesy (každý ve vlastním okně): + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\run_test_results_parallel_v1.0.py +``` + +### 2b) Serialně (jeden proces, jako dřív) + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.2.py +``` + +### 2c) Jeden konkrétní shard ručně + +```bat +…\python.exe download_test_results_v1.2.py --shard 2 --of 4 +``` + +- Prohlížeč běží **viditelně** (`headless=False`), maximalizovaný. +- **Persistent profile** — session přežívá (viz sekce 4). + +--- + +## 3. Paralelní běh (sharding) — jak funguje + +### 3.1 Rozdělení práce +Argumenty `--shard N --of M` rozkrojí seznam všech 34 reportů: + +```python +REPORTS = ALL_REPORTS[SHARD - 1::OF] +``` + +Tj. shard 1 z 4 vezme reporty na indexech 0, 4, 8, … ; shard 2 indexy 1, 5, 9, … +Rovnoměrné rozdělení, **žádný report neudělají dva shardy**. Bez argumentů +(`--of 1`) běží serialně přes všech 34. + +### 3.2 Proč nestačily 4 taby v jednom procesu +Playwright **sync API je blokující** — `wait_for_*` drží jediné vlákno celou +dobu čekání, takže 4 taby v jednom sync skriptu by se stejně střídaly sériově +(čekání by se sčítala, ne překrývala). Skutečná paralelnost vyžaduje buď async +API (přepis logiky), nebo — jak je zvoleno zde — **4 nezávislé procesy**, kde +souběh zajišťuje OS. + +### 3.3 Profil per shard (povinné) +Chrome zamyká adresář profilu → **dvě běžící instance nemohou sdílet jeden +profil**. Proto: + +| Běh | Profil | +|---|---| +| serialní (`--of 1`) | `browser_profile/` (původní) | +| shard N (`--of M>1`) | `browser_profile_{N}/` | + +### 3.4 Login (varianta B) +Session se mezi profily **nesdílí**. Každý shard se proto při prvním spuštění +**přihlásí sám** (login je jen heslem, žádné MFA). Po prvním běhu už session +zůstane uložená v `browser_profile_{N}/`, takže další běhy login přeskočí +(`is_visible()` check). Launcher startuje procesy s **rozestupem** (`STAGGER_S`), +aby se OKTA login nezahltil 4 současnými požadavky. + +### 3.5 Launcher `run_test_results_parallel_v1.0.py` +- `N_SHARDS = 4` — počet souběžných procesů (oken). +- `STAGGER_S = 4` — rozestup mezi starty (s). +- Každý proces se spustí v **novém konzolovém okně** (`CREATE_NEW_CONSOLE`) → + logy se neprolínají; navíc každý log má prefix `[S{shard}/{of}]`. +- Launcher počká, až všechny dobíhnou, a vypíše souhrn (které shardy selhaly + dle `returncode`). + +### 3.6 Reálné zrychlení +Ne přesně 4× — export běží na serveru a velká centra generují hodně řádků, +takže reálně spíš 2–3×. Server může souběžné exporty throttlovat. + +--- + +## 4. Výstupní soubory + +Formát názvu (timestamp + popisný název): + +``` +{YYYY-MM-DD_HHMMSS} sponsor-study-{STUDY}-test-results-{SITE_ID}-{TYP}.csv +``` + +`{TYP}` = `standard` nebo `microbiology`. Všechny shardy ukládají do **stejného** +adresáře `Source/`; timestamp + unikátní názvy (site/typ) zaručují, že nedojde ke +kolizi. Staré soubory se **nikdy nemažou** (verzování přes timestamp). + +--- + +## 5. Průběh jednoho reportu (kroky + logging) + +| Fáze | Co dělá | +|---|---| +| START | vypíše shard/of, profil, počet reportů; spustí prohlížeč | +| LOGIN | otevře login; **pokud je session aktivní, přihlášení přeskočí** | +| KROK 1/5 | navigace na report URL | +| KROK 2/5 | čeká na `.ag-row` **nebo** prázdný grid („No Data"); pak stabilizace počtu | +| KROK 3/5 | klik na viditelné tři tečky (`more_horiz`) → menu | +| KROK 4/5 | klik na viditelné „Export to CSV" → zachytí download | +| KROK 5/5 | uloží soubor do `OUT_DIR` | +| KONEC | souhrn `hotovo X/Y (shard N/M)` + seznam selhaných | + +Log u každého reportu: `=== Centrum 930557 / microbiology (studie 36940) ===`, +prefixovaný `[S{shard}/{of}]` při paralelním běhu. + +--- + +## 6. Klíčové technické poznatky (PROČ to tak je) — ověřeno přes Chrome MCP + +Stránka test-results je **Angular SPA** s **MDL** a tabulkou **AG Grid**. +Microbiology záložka má **stejnou** strukturu jako Standard. + +### 6.1 Čekání na data = řádky AG Gridu +- Data načtena, jakmile se objeví `div.ag-row` (count 0 → N). +- Řádky jsou `position-absolute` → Playwright je **nepovažuje za „visible"**: + - ❌ `wait_for_selector("div.ag-row")` (default visible) **timeoutuje**. + - ✅ `wait_for_function("() => document.querySelectorAll('div.ag-row').length > 0")`. +- Stabilizace: počet se čte co 2 s, dokud se 2× neshodne. +- **Počet `.ag-row` je zastropený** (~153) virtuálním renderem — NENÍ to skutečný + počet záznamů. **Export do CSV ale vyexportuje VŠECHNY řádky** (ověřeno: různé + velikosti CSV). + +### 6.2 „Fetching Data" / spinner — NEPLATÍ pro tuto stránku +Na test-results NENÍ text „Fetching Data" (je jen na *samples* reportu). +`` jen problikne → nespoléhat. Signál = `.ag-row`. + +### 6.3 Tři tečky (export) — DVA `` +2× `` (1 skrytý) → filtr na viditelnost: +✅ `page.locator("ag-export button:visible", has_text="more_horiz").first.click()` + +### 6.4 „Export to CSV" — DVĚ položky v DOM +2× `mdl-menu-item` (1 skrytá) → +✅ `page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click()` +(❌ `get_by_text` → strict mode violation.) + +### 6.5 Prázdné centrum (ověřeno přes Chrome MCP na centru 930551) +- No-rows overlay s textem **„No Data"** ve `.ag-overlay-no-rows-wrapper`. +- ⚠️ Třída **NENÍ** `.ag-overlay-no-rows-center`. +- ⚠️ Text **NENÍ** v `.ag-body-viewport` (ten je prázdný, `height: 1px`). +- ⚠️ Na stránce **2 overlaye** (1 skrytý) → kontrola `offsetParent !== null`. +- Detekce (KROK 2): + ```js + () => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + } + ``` +- KROK 2 čeká na `.ag-row` **NEBO** tuto detekci → prázdné centrum nečeká 120 s. + +--- + +## 7. Login logika (sdílená napříč Covance skripty) + +```python +page.goto(LOGIN_URL); page.wait_for_load_state("networkidle") +if not page.get_by_label("Email").is_visible(): + return # session aktivní → login přeskočit +# jinak: Email → Next → Password → Verify → wait redirect (code= zmizí z URL) +``` + +`is_visible()` (ne kontrola URL — po redirectu zůstává `xsp.covance.com`). + +--- + +## 8. Chrome flagy proti „Restore pages" / broken session + +``` +--disable-restore-session-state +--disable-session-crashed-bubble +``` + +--- + +## 9. Robustnost + +- Každý report v `try/except` → chyba u jednoho nezastaví zbytek shardu. +- Souhrn na konci: `hotovo X/Y (shard N/M)` + `SELHALA centra: site/typ, …`. +- Launcher hlídá `returncode` každého shardu. + +--- + +## 10. Možná budoucí rozšíření + +- **Více/méně procesů:** změnit `N_SHARDS` v launcheru (profily `_1.._N`). +- **Další studie / centra / typ reportu:** přidat do `STUDIES` / `REPORT_TYPES`. +- **Vyčistit profily:** smazat `browser_profile_*/` (vynutí nový login). + +--- + +## 11. Příbuzné skripty (stejná složka / portál) + +| Skript | Co stahuje | +|---|---| +| `download_samples_report_v1.1.py` | All Samples (sampletracking) | +| `download_kit_inventory_v2.1.py` | Kit inventory | +| `download_equeries_report_v1.1.py` | eQuery reporty (zdroj SITE_IDS pro 36940) | +| `download_test_results_v1.2.py` | **tento** — Test Results (Standard + Microbiology, 2 studie, sharding) | +| `run_test_results_parallel_v1.0.py` | launcher 4 paralelních shardů test-results | diff --git a/Covance_UCO3001/Trash/download_test_results_v1.2.py b/Covance_UCO3001/Trash/download_test_results_v1.2.py new file mode 100644 index 0000000..7367e2c --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.2.py @@ -0,0 +1,199 @@ +# ============================================================================= +# Název: download_test_results_v1.2.py +# Verze: 1.2 +# Datum: 2026-05-29 +# Popis: Stahuje Test Results ze xsp.labcorp.com pro 2 studie (36940, 35472), +# oba typy reportu (Standard + Microbiology), pres vsechna centra. +# Ceka na nacteni AG Grid radku (.ag-row); prazdne centrum ('No Data') +# preskoci. Vystup: timestampovane CSV do adresare Source/. +# Zmeny v1.2: + paralelni beh pres sharding (--shard N --of M). Kazdy shard +# vezme svuj podil reportu (REPORTS[shard-1::of]) a pouziva vlastni +# profil browser_profile_{shard}, takze 4 procesy mohou bezet +# soucasne (kazdy se prihlasi do sveho profilu sam). Bez argumentu +# = puvodni serialni beh nad profilem browser_profile. +# Zmeny v1.1: + studie 35472, + report typ microbiology (driv jen 36940/standard). +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import argparse +import os + +# --- argumenty: sharding pro paralelni beh ---------------------------------- +parser = argparse.ArgumentParser(description="Stahovani Test Results (XSP) s podporou shardingu.") +parser.add_argument("--shard", type=int, default=1, help="poradi tohoto shardu (1..of)") +parser.add_argument("--of", type=int, default=1, help="celkovy pocet shardu") +ARGS = parser.parse_args() +SHARD, OF = ARGS.shard, ARGS.of +TAG = f"[S{SHARD}/{OF}]" if OF > 1 else "" + + +def log(msg): + print(f"[{datetime.now().strftime('%H:%M:%S')}] {TAG} {msg}", flush=True) + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +# Pri paralelnim behu MUSI mit kazdy shard vlastni profil (Chrome zamyka adresar +# profilu -> dve bezici instance nemohou sdilet jeden). Serialni beh (of=1) +# pouziva puvodni browser_profile. +_BASE = os.path.dirname(os.path.abspath(__file__)) +PROFILE_DIR = os.path.join(_BASE, "browser_profile" if OF == 1 else f"browser_profile_{SHARD}") + +# Studie + jejich interni cisla center. +# 36940 = 77242113UCO3001 (UC) — zdroj center: download_equeries_report SITES +# 35472 = druha studie (MDD) +STUDIES = [ + { + "study": "36940", + "sites": [ + "930551", "930556", "930525", "930549", "930543", "930547", + "930555", "930557", "930539", "930536", "930553", "930531", + ], + }, + { + "study": "35472", + "sites": [ + "898745", "898739", "898733", "898744", "898727", + ], + }, +] + +# Typy reportu: zalozka v URL + suffix v nazvu souboru. +REPORT_TYPES = [ + {"slug": "standard-test-results", "suffix": "standard"}, + {"slug": "microbiology", "suffix": "microbiology"}, +] + +ALL_REPORTS = [ + { + "site": sid, + "study": st["study"], + "type": rt["suffix"], + "url": f"https://xsp.labcorp.com/sponsor/study/{st['study']}/test-results/{sid}/{rt['slug']}", + "filename": f"sponsor-study-{st['study']}-test-results-{sid}-{rt['suffix']}.csv", + } + for st in STUDIES + for sid in st["sites"] + for rt in REPORT_TYPES +] + +# Tento shard vezme kazdy of-ty report od indexu (shard-1). Rovnomerne rozdeleni +# a zadny report neudela dva shardy zaroven. +REPORTS = ALL_REPORTS[SHARD - 1::OF] + + +def login(page): + log("LOGIN: otviram login stranku...") + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle") + if not page.get_by_label("Email").is_visible(): + log(f"LOGIN: session uz aktivni, prihlaseni preskoceno ({page.url})") + return + log("LOGIN: zadavam email...") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + log("LOGIN: zadavam heslo...") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + log("LOGIN: cekam na presmerovani po prihlaseni...") + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + log(f"LOGIN: prihlaseni OK ({page.url})") + + +def download_report(page, report): + log(f"=== Centrum {report['site']} / {report['type']} (studie {report['study']}) ===") + + log(f"KROK 1/5: navigace na report URL...") + page.goto(report["url"]) + log(f"KROK 1/5: stranka nactena ({page.url})") + + # Grid je AG Grid uvnitř . Data jsou nactena, jakmile + # se v gridu objevi radky (.ag-row jde z 0 -> N). Pockej na prvni radek + # a pak na stabilizaci poctu (proti castecnemu renderu). + log("KROK 2/5: cekam na radky gridu (.ag-row) nebo prazdny grid ('No Data')...") + # AG Grid radky jsou position-absolute (virtualni render), takze nejsou + # "visible" dle Playwrightu -> cekej na pritomnost v DOM, ne na viditelnost. + # Prazdne centrum: AG Grid vykresli no-rows overlay s textem "No Data" ve + # wrapperu .ag-overlay-no-rows-wrapper. POZOR: trida NENI -no-rows-center; + # navic jsou na strance 2 overlaye (jeden skryty) -> kontroluj viditelny + # (offsetParent != null). Detekuj, aby to u centra bez dat necekalo 120 s. + EMPTY_GRID_JS = """() => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + }""" + page.wait_for_function( + f"""() => document.querySelectorAll('div.ag-row').length > 0 + || ({EMPTY_GRID_JS})()""", + timeout=120000, + ) + if page.evaluate(EMPTY_GRID_JS): + log("KROK 2/5: centrum bez dat ('No Data' overlay) — preskakuji export.") + return + log("KROK 2/5: radky se objevily, cekam na stabilizaci poctu...") + prev = -1 + for i in range(20): # max ~40 s stabilizace + cnt = page.locator("div.ag-row").count() + log(f" ...kontrola #{i+1}: {cnt} radku") + if cnt == prev and cnt > 0: + break + prev = cnt + page.wait_for_timeout(2000) + page.wait_for_timeout(2000) # buffer + log(f"KROK 2/5: data stabilni ({prev} radku v gridu).") + + # Tri tecky: na strance jsou 2x (jeden skryty), klikni na + # VIDITELNY more_horiz button. + log("KROK 3/5: klikam na viditelne tri tecky (more_horiz)...") + page.locator("ag-export button:visible", has_text="more_horiz").first.click() + log("KROK 3/5: menu otevreno.") + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + log("KROK 4/5: klikam na 'Export to CSV' a cekam na stahovani...") + with page.expect_download(timeout=60000) as dl: + # 2x "Export to CSV" v DOM (jeden skryty) -> klikni na VIDITELNY + page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click() + log("KROK 4/5: stahovani zachyceno, ukladam soubor...") + dl.value.save_as(dest) + log(f"KROK 5/5: HOTOVO -> {dest}") + + +if __name__ == "__main__": + log(f"START: shard {SHARD}/{OF}, profil '{os.path.basename(PROFILE_DIR)}', " + f"{len(REPORTS)}/{len(ALL_REPORTS)} reportu k zpracovani.") + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + log("START: prohlizec spusten.") + login(page) + ok, failed = 0, [] + for idx, report in enumerate(REPORTS, 1): + log(f">>> Report {idx}/{len(REPORTS)}") + try: + download_report(page, report) + ok += 1 + except Exception as e: + failed.append(f"{report['site']}/{report['type']}") + log(f"CHYBA u centra {report['site']}/{report['type']}: {e!r} — pokracuji dalsim.") + log(f"KONEC: hotovo {ok}/{len(REPORTS)} reportu (shard {SHARD}/{OF}).") + if failed: + log(f"KONEC: SELHALA centra: {', '.join(failed)}") + context.close() diff --git a/Covance_UCO3001/Trash/download_test_results_v1.3.md b/Covance_UCO3001/Trash/download_test_results_v1.3.md new file mode 100644 index 0000000..9f7fc9e --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.3.md @@ -0,0 +1,263 @@ +# download_test_results_v1.3.py — dokumentace + +**Verze:** 1.3 · **Datum:** 2026-05-29 +**Umístění:** `U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.3.py` + +> **Změny v1.3 oproti 1.2:** **robustní login + okno se při chybě nezavře.** +> - `login()` už **nečeká na `networkidle`** (login SPA labcorp/OKTA jí nikdy +> nedosáhne → dřív to vedlo k timeoutu a pádu procesu / „zmizelému" oknu). +> Místo toho čeká přímo na pole **Email** a **Password** přes +> `wait_for(state="visible")`. +> - Celý běh je obalen `try/except` a na konci je `input()` → **konzolové okno +> shardu se při chybě nezavře**, takže je vidět chybový log. +> - Launcher povýšen na `run_test_results_parallel_v1.1.py` (cílí na v1.3, +> `STAGGER_S = 8`). +> +> **Změny v1.2 oproti 1.1:** paralelní běh přes sharding (`--shard N --of M`). +> **Změny v1.1 oproti 1.0:** druhá studie 35472 (MDD) + report Microbiology. + +--- + +## 1. Účel + +Automatické stažení reportů **Test Results** z portálu Labcorp Sponsor Portal +(`xsp.labcorp.com`). Skript projde **2 studie × jejich centra × 2 typy reportu**, +u každého vyexportuje grid do CSV a uloží ho timestampovaný do `Source/`. + +| Studie | Interní ID | Význam | Počet center | +|---|---|---|---| +| UC | `36940` | 77242113UCO3001 | 12 | +| MDD | `35472` | druhá studie | 5 | + +Typy reportu: **Standard** (`/standard-test-results`) a **Microbiology** (`/microbiology`). + +**Celkem: (12 + 5) × 2 = 34 reportů** (prázdná centra se přeskakují, viz 6.5). + +--- + +## 2. Spuštění + +### 2a) Paralelně (doporučeno — rychlejší) + +Přes launcher, který rozjede 4 procesy (každý ve vlastním okně): + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\run_test_results_parallel_v1.1.py +``` + +### 2b) Serialně (jeden proces, jako dřív) + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.3.py +``` + +### 2c) Jeden konkrétní shard ručně + +```bat +…\python.exe download_test_results_v1.3.py --shard 2 --of 4 +``` + +- Prohlížeč běží **viditelně** (`headless=False`), maximalizovaný. +- **Persistent profile** — session přežívá (viz sekce 4). +- Po dokončení (i po chybě) okno **čeká na Enter** — schválně, ať je vidět log. + +--- + +## 3. Paralelní běh (sharding) — jak funguje + +### 3.1 Rozdělení práce +Argumenty `--shard N --of M` rozkrojí seznam všech 34 reportů: + +```python +REPORTS = ALL_REPORTS[SHARD - 1::OF] +``` + +Tj. shard 1 z 4 vezme reporty na indexech 0, 4, 8, … ; shard 2 indexy 1, 5, 9, … +Rovnoměrné rozdělení, **žádný report neudělají dva shardy**. Bez argumentů +(`--of 1`) běží serialně přes všech 34. + +### 3.2 Proč nestačily 4 taby v jednom procesu +Playwright **sync API je blokující** — `wait_for_*` drží jediné vlákno celou +dobu čekání, takže 4 taby v jednom sync skriptu by se stejně střídaly sériově. +Skutečná paralelnost vyžaduje buď async API, nebo — jak je zvoleno zde — +**4 nezávislé procesy**, kde souběh zajišťuje OS. + +### 3.3 Profil per shard (povinné) +Chrome zamyká adresář profilu → **dvě běžící instance nemohou sdílet jeden +profil**. Proto: + +| Běh | Profil | +|---|---| +| serialní (`--of 1`) | `browser_profile/` (původní) | +| shard N (`--of M>1`) | `browser_profile_{N}/` | + +### 3.4 Login (varianta B) — POZOR na fragilitu +Session se mezi profily **nesdílí**. Každý shard se proto při prvním spuštění +**přihlásí sám** (login je jen heslem, žádné MFA). Po prvním běhu už session +zůstane uložená v `browser_profile_{N}/`, takže další běhy login přeskočí. + +**Klíčová oprava ve v1.3:** login stránka labcorp/OKTA je SPA, která +**nikdy nedosáhne stavu `networkidle`** (běží tam analytika/polling). Původní +`page.wait_for_load_state("networkidle")` se proto zasekl až do timeoutu a +shard spadl ještě před vyplněním přihlášení (okno „zmizelo"). Nové `login()`: + +```python +page.goto(LOGIN_URL) +try: + page.get_by_label("Email").wait_for(state="visible", timeout=12000) +except Exception: + return # Email se neobjevil -> session aktivni +page.get_by_label("Email").fill(EMAIL) +page.get_by_role("button", name="Next").click() +page.get_by_label("Password").wait_for(state="visible", timeout=30000) +page.get_by_label("Password").fill(PASSWORD) +page.get_by_role("button", name="Verify").click() +page.wait_for_url(lambda url: "code=" not in url or "xsp." in url, timeout=60000) +``` + +Launcher startuje procesy s rozestupem (`STAGGER_S = 8 s`), aby se OKTA login +nezahltil souběžnými požadavky. + +### 3.5 Okno se při chybě nezavře +`__main__` je obalen `try/except` + `finally: input(...)`. Když shard spadne, +vypíše `FATAL: ...` + traceback a **čeká na Enter** místo okamžitého zavření +okna. Tím je vždy vidět, co se pokazilo. (Důsledek: launcher reportuje +„HOTOVO" až po zavření všech oken Enterem.) + +### 3.6 Launcher `run_test_results_parallel_v1.1.py` +- `N_SHARDS = 4` — počet souběžných procesů (oken). +- `STAGGER_S = 8` — rozestup mezi starty (s). +- Každý proces v **novém konzolovém okně** (`CREATE_NEW_CONSOLE`) → logy se + neprolínají; navíc každý log má prefix `[S{shard}/{of}]`. +- Launcher počká na všechny a vypíše souhrn (které shardy selhaly dle `returncode`). + +### 3.7 Reálné zrychlení +Ne přesně 4× — export běží na serveru, velká centra generují hodně řádků → +reálně spíš 2–3×. Server může souběžné exporty throttlovat. + +--- + +## 4. Výstupní soubory + +``` +{YYYY-MM-DD_HHMMSS} sponsor-study-{STUDY}-test-results-{SITE_ID}-{TYP}.csv +``` + +`{TYP}` = `standard` nebo `microbiology`. Všechny shardy ukládají do **stejného** +adresáře `Source/`; timestamp + unikátní názvy (site/typ) zaručí, že nedojde ke +kolizi. Staré soubory se **nikdy nemažou**. + +--- + +## 5. Průběh jednoho reportu (kroky + logging) + +| Fáze | Co dělá | +|---|---| +| START | vypíše shard/of, profil, počet reportů; spustí prohlížeč | +| LOGIN | čeká na pole Email; pokud není → session aktivní, login přeskočí | +| KROK 1/5 | navigace na report URL | +| KROK 2/5 | čeká na `.ag-row` **nebo** prázdný grid („No Data"); pak stabilizace počtu | +| KROK 3/5 | klik na viditelné tři tečky (`more_horiz`) → menu | +| KROK 4/5 | klik na viditelné „Export to CSV" → zachytí download | +| KROK 5/5 | uloží soubor do `OUT_DIR` | +| KONEC | souhrn `hotovo X/Y (shard N/M)` + seznam selhaných; pak čeká na Enter | + +--- + +## 6. Klíčové technické poznatky (PROČ to tak je) — ověřeno přes Chrome MCP + +Stránka test-results je **Angular SPA** s **MDL** a tabulkou **AG Grid**. +Microbiology záložka má **stejnou** strukturu jako Standard. + +### 6.1 Čekání na data = řádky AG Gridu +- Data načtena, jakmile se objeví `div.ag-row` (count 0 → N). +- Řádky jsou `position-absolute` → Playwright je **nepovažuje za „visible"**: + - ❌ `wait_for_selector("div.ag-row")` (default visible) **timeoutuje**. + - ✅ `wait_for_function("() => document.querySelectorAll('div.ag-row').length > 0")`. +- Stabilizace: počet se čte co 2 s, dokud se 2× neshodne. +- **Počet `.ag-row` je zastropený** (~153) virtuálním renderem — NENÍ to skutečný + počet záznamů. **Export do CSV ale vyexportuje VŠECHNY řádky.** + +### 6.2 „Fetching Data" / spinner — NEPLATÍ pro tuto stránku +Na test-results NENÍ text „Fetching Data" (je jen na *samples* reportu). +`` jen problikne → nespoléhat. Signál = `.ag-row`. + +### 6.3 Tři tečky (export) — DVA `` +2× `` (1 skrytý) → filtr na viditelnost: +✅ `page.locator("ag-export button:visible", has_text="more_horiz").first.click()` + +### 6.4 „Export to CSV" — DVĚ položky v DOM +2× `mdl-menu-item` (1 skrytá) → +✅ `page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click()` + +### 6.5 Prázdné centrum (ověřeno přes Chrome MCP na centru 930551) +- No-rows overlay s textem **„No Data"** ve `.ag-overlay-no-rows-wrapper`. +- ⚠️ Třída **NENÍ** `.ag-overlay-no-rows-center`. +- ⚠️ Text **NENÍ** v `.ag-body-viewport` (ten je prázdný, `height: 1px`). +- ⚠️ Na stránce **2 overlaye** (1 skrytý) → kontrola `offsetParent !== null`. +- Detekce (KROK 2): + ```js + () => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + } + ``` +- KROK 2 čeká na `.ag-row` **NEBO** tuto detekci → prázdné centrum nečeká 120 s. + +--- + +## 7. Login logika (sdílená napříč Covance skripty) — v1.3 + +```python +page.goto(LOGIN_URL) +# NEcekat na networkidle (login SPA ji nikdy nedosahne) +try: + page.get_by_label("Email").wait_for(state="visible", timeout=12000) +except Exception: + return # session aktivni → login přeskočit +# jinak: Email → Next → cekej na Password → Password → Verify → wait redirect +``` + +`wait_for(state="visible")` na pole (NE `networkidle`, NE kontrola URL — po +redirectu zůstává `xsp.covance.com`). + +--- + +## 8. Chrome flagy proti „Restore pages" / broken session + +``` +--disable-restore-session-state +--disable-session-crashed-bubble +``` + +--- + +## 9. Robustnost + +- Každý report v `try/except` → chyba u jednoho nezastaví zbytek shardu. +- Celý běh shardu v `try/except` + `finally: input()` → okno se při pádu nezavře. +- Souhrn na konci: `hotovo X/Y (shard N/M)` + `SELHALA centra: …`. +- Launcher hlídá `returncode` každého shardu. + +--- + +## 10. Možná budoucí rozšíření + +- **Více/méně procesů:** změnit `N_SHARDS` v launcheru (profily `_1.._N`). +- **Další studie / centra / typ reportu:** přidat do `STUDIES` / `REPORT_TYPES`. +- **Vyčistit profily:** smazat `browser_profile_*/` (vynutí nový login). + +--- + +## 11. Příbuzné skripty (stejná složka / portál) + +| Skript | Co stahuje | +|---|---| +| `download_samples_report_v1.1.py` | All Samples (sampletracking) | +| `download_kit_inventory_v2.1.py` | Kit inventory | +| `download_equeries_report_v1.1.py` | eQuery reporty (zdroj SITE_IDS pro 36940) | +| `download_test_results_v1.3.py` | **tento** — Test Results (Standard + Microbiology, 2 studie, sharding) | +| `run_test_results_parallel_v1.1.py` | launcher 4 paralelních shardů test-results | diff --git a/Covance_UCO3001/Trash/download_test_results_v1.3.py b/Covance_UCO3001/Trash/download_test_results_v1.3.py new file mode 100644 index 0000000..ccf1375 --- /dev/null +++ b/Covance_UCO3001/Trash/download_test_results_v1.3.py @@ -0,0 +1,233 @@ +# ============================================================================= +# Název: download_test_results_v1.3.py +# Verze: 1.3 +# Datum: 2026-05-29 +# Popis: Stahuje Test Results ze xsp.labcorp.com pro 2 studie (36940, 35472), +# oba typy reportu (Standard + Microbiology), pres vsechna centra. +# Ceka na nacteni AG Grid radku (.ag-row); prazdne centrum ('No Data') +# preskoci. Vystup: timestampovane CSV do adresare Source/. +# Zmeny v1.3: ROBUSTNI LOGIN — login() uz NEceka na 'networkidle' (login SPA +# labcorp/OKTA ji nikdy nedosahne -> drive timeout/pad procesu). +# Misto toho ceka primo na pole Email/Password pres wait_for(visible). +# Cely beh obalen try/except + na konci input() -> okno se pri chybe +# NEZAVRE, takze je videt chybovy log (driv 'zmizla' okna shardu). +# Zmeny v1.2: + paralelni beh pres sharding (--shard N --of M). Kazdy shard +# vezme svuj podil reportu (REPORTS[shard-1::of]) a pouziva vlastni +# profil browser_profile_{shard}. Bez argumentu = serialni beh. +# Zmeny v1.1: + studie 35472, + report typ microbiology (driv jen 36940/standard). +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import argparse +import traceback +import os + +# --- argumenty: sharding pro paralelni beh ---------------------------------- +parser = argparse.ArgumentParser(description="Stahovani Test Results (XSP) s podporou shardingu.") +parser.add_argument("--shard", type=int, default=1, help="poradi tohoto shardu (1..of)") +parser.add_argument("--of", type=int, default=1, help="celkovy pocet shardu") +ARGS = parser.parse_args() +SHARD, OF = ARGS.shard, ARGS.of +TAG = f"[S{SHARD}/{OF}]" if OF > 1 else "" + + +def log(msg): + print(f"[{datetime.now().strftime('%H:%M:%S')}] {TAG} {msg}", flush=True) + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +# Pri paralelnim behu MUSI mit kazdy shard vlastni profil (Chrome zamyka adresar +# profilu -> dve bezici instance nemohou sdilet jeden). Serialni beh (of=1) +# pouziva puvodni browser_profile. +_BASE = os.path.dirname(os.path.abspath(__file__)) +PROFILE_DIR = os.path.join(_BASE, "browser_profile" if OF == 1 else f"browser_profile_{SHARD}") + +# Studie + jejich interni cisla center. +# 36940 = 77242113UCO3001 (UC) — zdroj center: download_equeries_report SITES +# 35472 = druha studie (MDD) +STUDIES = [ + { + "study": "36940", + "sites": [ + "930551", "930556", "930525", "930549", "930543", "930547", + "930555", "930557", "930539", "930536", "930553", "930531", + ], + }, + { + "study": "35472", + "sites": [ + "898745", "898739", "898733", "898744", "898727", + ], + }, +] + +# Typy reportu: zalozka v URL + suffix v nazvu souboru. +REPORT_TYPES = [ + {"slug": "standard-test-results", "suffix": "standard"}, + {"slug": "microbiology", "suffix": "microbiology"}, +] + +ALL_REPORTS = [ + { + "site": sid, + "study": st["study"], + "type": rt["suffix"], + "url": f"https://xsp.labcorp.com/sponsor/study/{st['study']}/test-results/{sid}/{rt['slug']}", + "filename": f"sponsor-study-{st['study']}-test-results-{sid}-{rt['suffix']}.csv", + } + for st in STUDIES + for sid in st["sites"] + for rt in REPORT_TYPES +] + +# Tento shard vezme kazdy of-ty report od indexu (shard-1). Rovnomerne rozdeleni +# a zadny report neudela dva shardy zaroven. +REPORTS = ALL_REPORTS[SHARD - 1::OF] + + +def login(page): + log("LOGIN: otviram login stranku...") + page.goto(LOGIN_URL) + # NEcekat na 'networkidle' — login SPA (labcorp/OKTA) ji nikdy nedosahne + # (analytika/polling bezi porad) -> drive to vedlo k timeoutu a padu procesu. + # Misto toho cekame primo na pole Email. Pokud se do 12 s neobjevi, + # povazujeme session za aktivni (uz prihlaseno). + try: + page.get_by_label("Email").wait_for(state="visible", timeout=12000) + except Exception: + log(f"LOGIN: Email pole se neobjevilo -> session aktivni, login preskocen ({page.url})") + return + + log("LOGIN: zadavam email...") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + + log("LOGIN: cekam na pole pro heslo...") + page.get_by_label("Password").wait_for(state="visible", timeout=30000) + log("LOGIN: zadavam heslo...") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + + log("LOGIN: cekam na presmerovani po prihlaseni...") + try: + # Po prihlaseni se v URL objevi 'code=' (OAuth redirect) a pak zmizi + # az dorazime do aplikace. Bereme i pripad, ze uz jsme na xsp domene. + page.wait_for_url( + lambda url: "code=" not in url or "xsp." in url, + timeout=60000, + ) + except Exception: + log("LOGIN: wait_for_url vyprsel, pokracuji (overim pristup pri 1. reportu).") + page.wait_for_timeout(3000) + log(f"LOGIN: prihlaseni hotovo ({page.url})") + + +def download_report(page, report): + log(f"=== Centrum {report['site']} / {report['type']} (studie {report['study']}) ===") + + log(f"KROK 1/5: navigace na report URL...") + page.goto(report["url"]) + log(f"KROK 1/5: stranka nactena ({page.url})") + + # Grid je AG Grid uvnitř . Data jsou nactena, jakmile + # se v gridu objevi radky (.ag-row jde z 0 -> N). Pockej na prvni radek + # a pak na stabilizaci poctu (proti castecnemu renderu). + log("KROK 2/5: cekam na radky gridu (.ag-row) nebo prazdny grid ('No Data')...") + # AG Grid radky jsou position-absolute (virtualni render), takze nejsou + # "visible" dle Playwrightu -> cekej na pritomnost v DOM, ne na viditelnost. + # Prazdne centrum: AG Grid vykresli no-rows overlay s textem "No Data" ve + # wrapperu .ag-overlay-no-rows-wrapper. POZOR: trida NENI -no-rows-center; + # navic jsou na strance 2 overlaye (jeden skryty) -> kontroluj viditelny + # (offsetParent != null). Detekuj, aby to u centra bez dat necekalo 120 s. + EMPTY_GRID_JS = """() => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + }""" + page.wait_for_function( + f"""() => document.querySelectorAll('div.ag-row').length > 0 + || ({EMPTY_GRID_JS})()""", + timeout=120000, + ) + if page.evaluate(EMPTY_GRID_JS): + log("KROK 2/5: centrum bez dat ('No Data' overlay) — preskakuji export.") + return + log("KROK 2/5: radky se objevily, cekam na stabilizaci poctu...") + prev = -1 + for i in range(20): # max ~40 s stabilizace + cnt = page.locator("div.ag-row").count() + log(f" ...kontrola #{i+1}: {cnt} radku") + if cnt == prev and cnt > 0: + break + prev = cnt + page.wait_for_timeout(2000) + page.wait_for_timeout(2000) # buffer + log(f"KROK 2/5: data stabilni ({prev} radku v gridu).") + + # Tri tecky: na strance jsou 2x (jeden skryty), klikni na + # VIDITELNY more_horiz button. + log("KROK 3/5: klikam na viditelne tri tecky (more_horiz)...") + page.locator("ag-export button:visible", has_text="more_horiz").first.click() + log("KROK 3/5: menu otevreno.") + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + log("KROK 4/5: klikam na 'Export to CSV' a cekam na stahovani...") + with page.expect_download(timeout=60000) as dl: + # 2x "Export to CSV" v DOM (jeden skryty) -> klikni na VIDITELNY + page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click() + log("KROK 4/5: stahovani zachyceno, ukladam soubor...") + dl.value.save_as(dest) + log(f"KROK 5/5: HOTOVO -> {dest}") + + +def main(): + log(f"START: shard {SHARD}/{OF}, profil '{os.path.basename(PROFILE_DIR)}', " + f"{len(REPORTS)}/{len(ALL_REPORTS)} reportu k zpracovani.") + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + log("START: prohlizec spusten.") + login(page) + ok, failed = 0, [] + for idx, report in enumerate(REPORTS, 1): + log(f">>> Report {idx}/{len(REPORTS)}") + try: + download_report(page, report) + ok += 1 + except Exception as e: + failed.append(f"{report['site']}/{report['type']}") + log(f"CHYBA u centra {report['site']}/{report['type']}: {e!r} — pokracuji dalsim.") + log(f"KONEC: hotovo {ok}/{len(REPORTS)} reportu (shard {SHARD}/{OF}).") + if failed: + log(f"KONEC: SELHALA centra: {', '.join(failed)}") + context.close() + + +if __name__ == "__main__": + try: + main() + except Exception as e: + log(f"FATAL: beh shardu spadl: {e!r}") + traceback.print_exc() + finally: + # Nech okno otevrene, at je videt log/chyba (driv okno pri padu zmizelo). + try: + input("\n[Enter] pro zavreni tohoto okna...") + except EOFError: + pass diff --git a/Covance_UCO3001/Trash/run_test_results_parallel_v1.0.py b/Covance_UCO3001/Trash/run_test_results_parallel_v1.0.py new file mode 100644 index 0000000..0990398 --- /dev/null +++ b/Covance_UCO3001/Trash/run_test_results_parallel_v1.0.py @@ -0,0 +1,54 @@ +# ============================================================================= +# Název: run_test_results_parallel_v1.0.py +# Verze: 1.0 +# Datum: 2026-05-29 +# Popis: Launcher pro paralelni stahovani Test Results. Spusti N procesu +# download_test_results_v1.2.py, kazdy s --shard i --of N, kazdy +# ve vlastnim konzolovem okne (CREATE_NEW_CONSOLE) a s vlastnim +# profilem browser_profile_{i}. Pocka, az vsechny dobehnou. +# Pri variante B se kazdy proces pri prvnim startu prihlasi sam +# (login jen heslem) a session si ulozi do sveho profilu. +# ============================================================================= +import subprocess +import sys +import os +import time + +N_SHARDS = 4 # pocet soubeznych procesu (oken) +STAGGER_S = 4 # rozestup mezi starty (s) — at se OKTA login + # nezahlti 4 soucasnymi pozadavky najednou +BASE = os.path.dirname(os.path.abspath(__file__)) +SCRIPT = os.path.join(BASE, "download_test_results_v1.2.py") +PYEXE = sys.executable # stejny interpreter (.venv), kterym byl spusten launcher + +# Vlastni konzolove okno pro kazdy proces (jen Windows) -> logy se neprolinaji. +CREATE_NEW_CONSOLE = getattr(subprocess, "CREATE_NEW_CONSOLE", 0) + + +def main(): + print(f"Launcher: spoustim {N_SHARDS} shardu skriptu {os.path.basename(SCRIPT)}") + procs = [] + for shard in range(1, N_SHARDS + 1): + cmd = [PYEXE, SCRIPT, "--shard", str(shard), "--of", str(N_SHARDS)] + print(f" -> shard {shard}/{N_SHARDS}: {' '.join(cmd)}") + p = subprocess.Popen(cmd, cwd=BASE, creationflags=CREATE_NEW_CONSOLE) + procs.append((shard, p)) + if shard < N_SHARDS and STAGGER_S: + time.sleep(STAGGER_S) # rozestup startu (login) + + print("Launcher: vsechny shardy spusteny, cekam na dokonceni...") + rc = {} + for shard, p in procs: + p.wait() + rc[shard] = p.returncode + print(f"Launcher: shard {shard} skoncil (returncode={p.returncode}).") + + failed = [s for s, code in rc.items() if code != 0] + if failed: + print(f"Launcher: HOTOVO, ale shardy {failed} skoncily s chybou (returncode != 0).") + else: + print("Launcher: HOTOVO — vsechny shardy uspesne dokonceny.") + + +if __name__ == "__main__": + main() diff --git a/Covance_UCO3001/Trash/run_test_results_parallel_v1.1.py b/Covance_UCO3001/Trash/run_test_results_parallel_v1.1.py new file mode 100644 index 0000000..31c1e75 --- /dev/null +++ b/Covance_UCO3001/Trash/run_test_results_parallel_v1.1.py @@ -0,0 +1,57 @@ +# ============================================================================= +# Název: run_test_results_parallel_v1.1.py +# Verze: 1.1 +# Datum: 2026-05-29 +# Popis: Launcher pro paralelni stahovani Test Results. Spusti N procesu +# download_test_results_v1.3.py, kazdy s --shard i --of N, kazdy +# ve vlastnim konzolovem okne (CREATE_NEW_CONSOLE) a s vlastnim +# profilem browser_profile_{i}. Pocka, az vsechny dobehnou. +# Pri variante B se kazdy proces pri prvnim startu prihlasi sam +# (login jen heslem) a session si ulozi do sveho profilu. +# Zmeny v1.1: cili na download_test_results_v1.3.py (robustni login + okno se +# pri chybe nezavre). STAGGER_S zvysen na 8 s, aby se 4 soubezne +# OKTA loginy nezahltily. +# ============================================================================= +import subprocess +import sys +import os +import time + +N_SHARDS = 4 # pocet soubeznych procesu (oken) +STAGGER_S = 8 # rozestup mezi starty (s) — at se OKTA login + # nezahlti soucasnymi pozadavky najednou +BASE = os.path.dirname(os.path.abspath(__file__)) +SCRIPT = os.path.join(BASE, "download_test_results_v1.3.py") +PYEXE = sys.executable # stejny interpreter (.venv), kterym byl spusten launcher + +# Vlastni konzolove okno pro kazdy proces (jen Windows) -> logy se neprolinaji. +CREATE_NEW_CONSOLE = getattr(subprocess, "CREATE_NEW_CONSOLE", 0) + + +def main(): + print(f"Launcher: spoustim {N_SHARDS} shardu skriptu {os.path.basename(SCRIPT)}") + procs = [] + for shard in range(1, N_SHARDS + 1): + cmd = [PYEXE, SCRIPT, "--shard", str(shard), "--of", str(N_SHARDS)] + print(f" -> shard {shard}/{N_SHARDS}: {' '.join(cmd)}") + p = subprocess.Popen(cmd, cwd=BASE, creationflags=CREATE_NEW_CONSOLE) + procs.append((shard, p)) + if shard < N_SHARDS and STAGGER_S: + time.sleep(STAGGER_S) # rozestup startu (login) + + print("Launcher: vsechny shardy spusteny, cekam na dokonceni...") + rc = {} + for shard, p in procs: + p.wait() + rc[shard] = p.returncode + print(f"Launcher: shard {shard} skoncil (returncode={p.returncode}).") + + failed = [s for s, code in rc.items() if code != 0] + if failed: + print(f"Launcher: HOTOVO, ale shardy {failed} skoncily s chybou (returncode != 0).") + else: + print("Launcher: HOTOVO — vsechny shardy uspesne dokonceny.") + + +if __name__ == "__main__": + main() diff --git a/Covance_UCO3001/_EDCStdRpt-DataListing.csv b/Covance_UCO3001/_EDCStdRpt-DataListing.csv new file mode 100644 index 0000000..d703c10 --- /dev/null +++ b/Covance_UCO3001/_EDCStdRpt-DataListing.csv @@ -0,0 +1,37 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","22 Jan 2026 16:21:08:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260122 16:21:08.447","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2945701","Week I-0 (1)","7","Date of Visit","32099770","0","19 Feb 2026 07:41:15:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 FEB 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260219 07:41:15.130","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2945834","Week I-2 (1)","8","Date of Visit","32101284","0","04 Mar 2026 09:29:40:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260304 09:29:40.097","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2976291","Week I-4 (1)","9","Date of Visit","32521333","0","18 Mar 2026 06:52:32:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260318 06:52:32.477","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","3015343","Week I-8 (1)","10","Date of Visit","33055186","0","22 Apr 2026 05:32:11:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260422 05:32:11.627","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957354","Screening","3","Date of Visit","32277668","0","02 Mar 2026 11:19:53:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 FEB 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260302 11:19:53.717","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","3052800","Week I-0 (1)","7","Date of Visit","33544164","0","08 Apr 2026 05:43:05:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260408 05:43:05.867","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934312","Screening","3","Date of Visit","31932393","0","07 Mar 2026 21:33:13:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 FEB 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260307 21:33:13.977","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3021008","Week I-0 (1)","7","Date of Visit","33125928","0","12 Apr 2026 15:10:26:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260412 15:10:26.887","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060855","Week I-2 (1)","8","Date of Visit","33641968","0","12 Apr 2026 18:13:09:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260412 18:13:09.703","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076150","Screening","3","Date of Visit","33869435","0","20 Apr 2026 04:51:19:460","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260420 04:51:19.460","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","200677","CZ100092001","6330","3041866","Screening","3","Date of Visit","33396436","0","06 Apr 2026 09:50:06:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260406 09:50:06.007","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069544","Screening","3","Date of Visit","33769111","0","20 Apr 2026 13:24:47:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260420 13:24:47.817","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997818","Screening","3","Date of Visit","32821084","0","12 Mar 2026 09:38:16:330","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260312 09:38:16.330","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3051358","Week I-0 (1)","7","Date of Visit","33524299","0","08 Apr 2026 06:12:47:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260408 06:12:47.737","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3052881","Week I-2 (1)","8","Date of Visit","33545351","0","23 Apr 2026 11:57:45:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260423 11:57:45.937","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960289","Screening","3","Date of Visit","32319366","0","09 Mar 2026 11:03:26:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 FEB 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260309 11:03:26.887","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3027462","Week I-0 (1)","7","Date of Visit","33207977","0","26 Mar 2026 11:25:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260326 11:25:10.850","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3035611","Week I-2 (1)","8","Date of Visit","33313608","0","10 Apr 2026 08:08:17:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260410 08:08:17.787","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3059227","Week I-4 (1)","9","Date of Visit","33624340","0","24 Apr 2026 08:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260424 08:57:18.310","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044287","Screening","3","Date of Visit","33430635","0","09 Apr 2026 09:17:41:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260409 09:17:41.950","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3079413","Screening","3","Date of Visit","33923265","0","21 Apr 2026 09:22:29:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260421 09:22:29.297","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061818","Screening","3","Date of Visit","33654612","0","15 Apr 2026 19:26:15:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260415 19:26:15.497","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957203","Screening","3","Date of Visit","32275046","0","22 Apr 2026 12:15:47:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 FEB 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260422 12:15:47.873","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3051003","Week I-0 (1)","7","Date of Visit","33519073","0","28 Apr 2026 06:15:03:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260428 06:15:03.510","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3079851","Week I-2 (1)","8","Date of Visit","33929727","0","28 Apr 2026 06:15:59:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260428 06:15:59.870","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880184","Screening","3","Date of Visit","31215209","0","06 Mar 2026 10:59:41:280","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260306 10:59:41.280","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894251","Screening","3","Date of Visit","31388300","0","27 Feb 2026 14:50:20:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260227 14:50:20.233","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965444","Screening","3","Date of Visit","32375566","0","02 Mar 2026 12:48:21:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260302 12:48:21.227","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2989688","Week I-0 (1)","7","Date of Visit","32706051","0","09 Mar 2026 10:14:05:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260309 10:14:05.780","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2990136","Week I-2 (1)","8","Date of Visit","32712620","0","27 Mar 2026 07:03:19:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260327 07:03:19.320","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","3037395","Week I-4 (1)","9","Date of Visit","33339972","0","08 Apr 2026 08:50:32:657","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","8 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260408 08:50:32.657","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969804","Screening","3","Date of Visit","32431117","0","24 Mar 2026 12:11:50:810","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260324 12:11:50.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975900","Screening","3","Date of Visit","32515721","0","04 Mar 2026 11:15:51:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260304 11:15:51.773","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056606","Week I-0 (1)","7","Date of Visit","33592277","0","09 Apr 2026 09:45:00:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260409 09:45:00.203","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056976","Week I-2 (1)","8","Date of Visit","33596878","0","23 Apr 2026 06:45:23:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","4/28/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260428 10:24:38.753","GMT","20260423 06:45:23.183","","" diff --git a/Covance_UCO3001/create_kit_report.py b/Covance_UCO3001/create_kit_report.py new file mode 100644 index 0000000..a862010 --- /dev/null +++ b/Covance_UCO3001/create_kit_report.py @@ -0,0 +1,214 @@ +import glob +import os +import pandas as pd +from openpyxl import Workbook +from openpyxl.styles import Font, PatternFill, Border, Side, Alignment +from openpyxl.utils import get_column_letter +from datetime import date, datetime + +src_dir = os.path.dirname(os.path.abspath(__file__)) + "/" +out_dir = "U:/Dropbox/!!!Days/Downloads Z230/" + +csv_files = glob.glob(src_dir + "sponsor-study-36940-kit-inventory-on-hand-expiration.csv") +assert csv_files, "Kit inventory CSV not found!" +csv_file = csv_files[0] +print(f"Source: {csv_file}") + +timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") +out_filename = f"{timestamp} 77242113UCO3001 Kit Inventory CZE.xlsx" +out_path = out_dir + out_filename + +df = pd.read_csv(csv_file, encoding="utf-8") +cze = df[df["Country"] == "CZE"].copy() + +def parse_date(val): + if pd.isna(val): + return None + try: + return datetime.strptime(str(val).strip(), "%b %d, %Y") + except: + return None + +cze["Shipped Date"] = cze["Shipped Date"].apply(parse_date) +cze["Expiration Date"] = cze["Expiration Date"].apply(parse_date) +cze = cze.sort_values(["Site", "Kit Type", "Expiration Date"]).reset_index(drop=True) + +today_dt = datetime.combine(date.today(), datetime.min.time()) + +def bucket(exp_date): + if exp_date is None: + return None + delta = (exp_date - today_dt).days + if delta <= 30: + return "soon" + return "ok" + +cze["_bucket"] = cze["Expiration Date"].apply(bucket) + +kit_order = sorted(cze["Kit Type"].unique(), key=lambda x: (str(x).lstrip("T-").zfill(5), str(x))) +kit_desc = cze.drop_duplicates("Kit Type").set_index("Kit Type")["Description"].to_dict() +sites = sorted(cze["Site"].unique()) + +# ── Styly ──────────────────────────────────────────────────────────────────── +thin = Side(style="thin") +border = Border(left=thin, right=thin, top=thin, bottom=thin) +header_font = Font(name="Calibri", bold=True, size=11, color="FFFFFF") +data_font = Font(name="Calibri", size=11) +sum_header_font = Font(name="Calibri", bold=True, size=11, color="000000") +sum_total_font = Font(name="Calibri", bold=True, size=11) +zero_font = Font(name="Calibri", size=11, color="BFBFBF") +zero_red_font = Font(name="Calibri", size=11, color="C00000") +blue_fill = PatternFill("solid", fgColor="4472C4") +dark_blue_fill = PatternFill("solid", fgColor="203764") +orange_fill = PatternFill("solid", fgColor="FFF2CC") +green_fill = PatternFill("solid", fgColor="E2EFDA") +total_fill = PatternFill("solid", fgColor="D9E1F2") +exp_fill = PatternFill("solid", fgColor="FFE7E7") +ok_fill = PatternFill("solid", fgColor="E2EFDA") + +# ── List 1: Kit Inventory CZE (surový listing) ──────────────────────────────── +wb = Workbook() +ws = wb.active +ws.title = "Kit Inventory CZE" + +listing_columns = [ + ("Project No.", 14), + ("Region", 10), + ("Country", 10), + ("Site", 38), + ("Kit Type", 12), + ("Description", 22), + ("Accession", 18), + ("Shipped Date", 16), + ("Expiration Date", 16), + ("Days to Expiration", 20), +] + +for col_idx, (header, width) in enumerate(listing_columns, 1): + cell = ws.cell(row=1, column=col_idx, value=header) + cell.font = header_font + cell.fill = blue_fill + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + ws.column_dimensions[get_column_letter(col_idx)].width = width + +ws.row_dimensions[1].height = 30 +ws.freeze_panes = "A2" + +for row_idx, row in enumerate(cze.itertuples(index=False), 2): + days = row[9] + for col_idx, (col_name, _) in enumerate(listing_columns, 1): + value = row[col_idx - 1] + cell = ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center") + if col_name in ("Shipped Date", "Expiration Date") and value is not None: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Days to Expiration": + cell.fill = exp_fill if (pd.notna(days) and days <= 60) else ok_fill + +ws.auto_filter.ref = f"A1:{get_column_letter(len(listing_columns))}1" + +# ── Pomocná funkce pro vykreslení souhrnné tabulky ──────────────────────────── +def write_summary_table(ws, current_row, title, rows_data, col_a_header): + """ + rows_data: list of (col_a_val, col_b_val, n_soon, n_ok) + col_a_header: záhlaví prvního sloupce + """ + # Title + for c in range(1, 5): + cell = ws.cell(row=current_row, column=c) + cell.fill = dark_blue_fill + cell.border = border + ws.cell(row=current_row, column=1, value=title).font = Font(name="Calibri", bold=True, size=12, color="FFFFFF") + ws.cell(row=current_row, column=1).alignment = Alignment(horizontal="left", vertical="center") + ws.merge_cells(start_row=current_row, start_column=1, end_row=current_row, end_column=4) + ws.row_dimensions[current_row].height = 22 + current_row += 1 + + # Header + for col_idx, (h, f) in enumerate(zip( + [col_a_header, "Description", "Expiruje do 30 dní", "Expiruje později"], + [blue_fill, blue_fill, orange_fill, green_fill] + ), 1): + cell = ws.cell(row=current_row, column=col_idx, value=h) + cell.font = sum_header_font + cell.fill = f + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + ws.row_dimensions[current_row].height = 28 + current_row += 1 + + totals = [0, 0] + for col_a, col_b, n_soon, n_ok in rows_data: + totals[0] += n_soon + totals[1] += n_ok + row_vals = [col_a, col_b, n_soon, n_ok] + row_fills = [None, None, + orange_fill if n_soon > 0 else None, + green_fill if n_ok > 0 else None] + all_zero = (n_soon == 0 and n_ok == 0) + for col_idx, (val, rfill) in enumerate(zip(row_vals, row_fills), 1): + cell = ws.cell(row=current_row, column=col_idx, value=val) + if col_idx >= 3 and val == 0: + cell.font = zero_red_font if all_zero else zero_font + else: + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal="center" if col_idx >= 2 else "left", vertical="center") + if rfill: + cell.fill = rfill + current_row += 1 + + # Total + for col_idx, val in enumerate(["CELKEM", "", totals[0], totals[1]], 1): + cell = ws.cell(row=current_row, column=col_idx, value=val) + cell.font = sum_total_font + cell.fill = total_fill + cell.border = border + cell.alignment = Alignment(horizontal="center" if col_idx >= 2 else "left", vertical="center") + current_row += 2 + return current_row + +# ── List 2: Přehled po centrech ─────────────────────────────────────────────── +ctr_ws = wb.create_sheet("Přehled po centrech") +ctr_ws.column_dimensions["A"].width = 22 +ctr_ws.column_dimensions["B"].width = 24 +ctr_ws.column_dimensions["C"].width = 22 +ctr_ws.column_dimensions["D"].width = 20 + +current_row = 1 +for site in sites: + site_df = cze[cze["Site"] == site] + rows_data = [] + for kit in kit_order: + desc = kit_desc.get(kit, "") + kit_site_df = site_df[site_df["Kit Type"] == kit] + n_soon = (kit_site_df["_bucket"] == "soon").sum() + n_ok = (kit_site_df["_bucket"] == "ok").sum() + rows_data.append((f"{kit} — {desc}", desc, n_soon, n_ok)) + current_row = write_summary_table(ctr_ws, current_row, site, rows_data, "Kit Type") + +# ── List 3: Přehled po typech kitů ─────────────────────────────────────────── +sum_ws = wb.create_sheet("Přehled po typech") +sum_ws.column_dimensions["A"].width = 38 +sum_ws.column_dimensions["B"].width = 22 +sum_ws.column_dimensions["C"].width = 22 +sum_ws.column_dimensions["D"].width = 20 + +current_row = 1 +for kit in kit_order: + desc = kit_desc.get(kit, "") + kit_df = cze[cze["Kit Type"] == kit] + rows_data = [] + for site in sorted(kit_df["Site"].unique()): + site_df = kit_df[kit_df["Site"] == site] + n_soon = (site_df["_bucket"] == "soon").sum() + n_ok = (site_df["_bucket"] == "ok").sum() + rows_data.append((site, desc, n_soon, n_ok)) + current_row = write_summary_table(sum_ws, current_row, f"Kit Type {kit} — {desc}", rows_data, "Centrum") + +wb.save(out_path) +print(f"Saved: {out_path}") +print(f"CZE rows: {len(cze)}, Kit types: {len(kit_order)}, Sites: {len(sites)}") diff --git a/Covance_UCO3001/create_report_v2.0.py b/Covance_UCO3001/create_report_v2.0.py new file mode 100644 index 0000000..0c1eb03 --- /dev/null +++ b/Covance_UCO3001/create_report_v2.0.py @@ -0,0 +1,530 @@ +# create_report_v2.0.py — v2.0 — 2026-05-29 +# UCO3001 Covance specimen & kit report — zdroj dat: MongoDB (covance + edc) + +import pandas as pd +from openpyxl import Workbook +from openpyxl.styles import Font, PatternFill, Border, Side, Alignment +from openpyxl.utils import get_column_letter +from datetime import date, datetime +from pymongo import MongoClient + +# ── Konfigurace ──────────────────────────────────────────────────────────────── +MONGO_URI = "mongodb://192.168.1.76:27017" +out_dir = "U:/Dropbox/!!!Days/Downloads Z230/" + +# ── MongoDB připojení ────────────────────────────────────────────────────────── +client = MongoClient(MONGO_URI) +covance_db = client["covance"] +edc_db = client["edc"] + +# ── Načtení dat z MongoDB ────────────────────────────────────────────────────── +print("Načítám data z MongoDB...") + +samples_docs = list(covance_db["allsamples"].find()) +df = pd.DataFrame([doc["fields"] for doc in samples_docs]).reset_index(drop=True) +print(f" allsamples: {len(df)} záznamů") + +kit_docs = list(covance_db["kits"].find()) +kit_df_raw = pd.DataFrame([doc["fields"] for doc in kit_docs]).reset_index(drop=True) +print(f" kits: {len(kit_df_raw)} záznamů") + +edc_docs = list(edc_db["UCO3001.DateofVisit"].find()) +edc_rows = [] +for doc in edc_docs: + edc_rows.append({ + "SiteNumber": doc["site"]["number"], + "Subject": doc["subject"]["label"], + "InstanceName": doc["form"]["instanceName"], + "Field4Value": doc["fields"].get("Visit Start Date"), + "Field5Value": doc["fields"].get("Type of Contact"), + }) +edc_df_raw = pd.DataFrame(edc_rows) +print(f" DateofVisit: {len(edc_df_raw)} záznamů") + +# ── Výstupní soubor ──────────────────────────────────────────────────────────── +timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") +out_filename = f"{timestamp} 77242113UCO3001 CZE Labcorp samples and kit inventory report.xlsx" +out_path = out_dir + out_filename + +# ── Příprava dat — allsamples ────────────────────────────────────────────────── +all_patients = sorted(df['Patient No.'].dropna().unique()) +bxscr = df[df['Protocol Visit Code'] == 'BXSCR'] +dna = df[df['Protocol Visit Code'] == 'DNA'] + +def fmt_date(val): + if val is None: + return None + if isinstance(val, float) and pd.isna(val): + return None + if isinstance(val, datetime): + return val.replace(tzinfo=None) + if isinstance(val, str): + for fmt in ('%d-%b-%Y', '%Y-%m-%dT%H:%M:%S', '%Y-%m-%d'): + try: + return datetime.strptime(val.strip(), fmt) + except ValueError: + pass + try: + return pd.to_datetime(val).to_pydatetime().replace(tzinfo=None) + except Exception: + return None + +OK_STATUSES = {'Received', 'In Inventory', 'Shipped'} + +def get_specimen_info(visit_df, patient, specimen_type=None): + rows = visit_df[visit_df['Patient No.'] == patient] + if specimen_type: + rows = rows[rows['Specimen Type'] == specimen_type] + rows = rows[rows['Sample Status'].isin(OK_STATUSES)] + if rows.empty: + return '', None + row = rows.iloc[0] + return fmt_date(row['Container Receipt Date']), rows.index[0] + 2 + +def get_label_info(patient, label_code, visit_code): + rows = df[(df['Patient No.'] == patient) & + (df['Protocol Visit Code'] == visit_code) & + (df['Container Label Line 1'] == label_code)] + rows = rows[rows['Sample Status'].isin(OK_STATUSES)] + if rows.empty: + return '', None + row = rows.iloc[0] + return fmt_date(row['Container Receipt Date']), rows.index[0] + 2 + +# ── Příprava dat — kit inventory ─────────────────────────────────────────────── +cze = kit_df_raw[kit_df_raw["Country"] == "CZE"].copy() + +def parse_kit_date(val): + if val is None or (isinstance(val, float) and pd.isna(val)): + return None + if isinstance(val, datetime): + return val.replace(tzinfo=None) + try: + return datetime.strptime(str(val).strip(), "%b %d, %Y") + except ValueError: + return None + +cze["Shipped Date"] = cze["Shipped Date"].apply(parse_kit_date) +cze["Expiration Date"] = cze["Expiration Date"].apply(parse_kit_date) +cze["Days to Expiration"] = pd.to_numeric(cze["Days to Expiration"], errors="coerce") +cze = cze.sort_values(["Site", "Kit Type", "Expiration Date"]).reset_index(drop=True) + +today_dt = datetime.combine(date.today(), datetime.min.time()) + +def bucket(exp_date): + if exp_date is None: + return None + return "soon" if (exp_date - today_dt).days <= 30 else "ok" + +cze["_bucket"] = cze["Expiration Date"].apply(bucket) + +kit_order = sorted(cze["Kit Type"].unique(), key=lambda x: (str(x).lstrip("T-").zfill(5), str(x))) +kit_desc = cze.drop_duplicates("Kit Type").set_index("Kit Type")["Description"].to_dict() +kit_sites = sorted(cze["Site"].unique()) + +# ── Příprava dat — EDC pacienti ──────────────────────────────────────────────── +def fmt_date_edc(val): + if val is None or (isinstance(val, float) and pd.isna(val)): + return None + if isinstance(val, datetime): + return val.replace(tzinfo=None) + if isinstance(val, str): + for fmt in ('%d %b %Y', '%Y-%m-%dT%H:%M:%S', '%Y-%m-%d'): + try: + return datetime.strptime(val.strip(), fmt) + except ValueError: + pass + try: + return pd.to_datetime(val).to_pydatetime().replace(tzinfo=None) + except Exception: + return None + +_pat_pre = edc_df_raw[['SiteNumber', 'Subject', 'Field4Value']].copy() +_pat_pre['Field4Value'] = _pat_pre['Field4Value'].apply(fmt_date_edc) +_pat_pre = _pat_pre.sort_values(['SiteNumber', 'Subject', 'Field4Value']).reset_index(drop=True) +patient_row_map = {} +for i, row in _pat_pre.iterrows(): + pat = row['Subject'] + if pat not in patient_row_map: + patient_row_map[pat] = i + 2 + +bxscr_patients = sorted(bxscr['Patient No.'].dropna().unique()) + +# ── Workbook ─────────────────────────────────────────────────────────────────── +out_wb = Workbook() +out_wb.remove(out_wb.active) + +# ── Styly ────────────────────────────────────────────────────────────────────── +thin = Side(style='thin') +border = Border(left=thin, right=thin, top=thin, bottom=thin) +header_fill = PatternFill("solid", fgColor="4472C4") +header_font = Font(name='Calibri', bold=True, size=11, color="FFFFFF") +data_font = Font(name='Calibri', size=11) +date_font_link = Font(name='Calibri', size=11, color="000000", underline='single') +yes_fill = PatternFill("solid", fgColor="E2EFDA") +no_fill = PatternFill("solid", fgColor="FFE7E7") +sum_header_font = Font(name='Calibri', bold=True, size=11, color="000000") +sum_total_font = Font(name='Calibri', bold=True, size=11) +zero_font = Font(name='Calibri', size=11, color="BFBFBF") +zero_red_font = Font(name='Calibri', size=11, color="C00000") +dark_blue_fill = PatternFill("solid", fgColor="203764") +orange_fill = PatternFill("solid", fgColor="FFF2CC") +green_fill = PatternFill("solid", fgColor="E2EFDA") +total_fill = PatternFill("solid", fgColor="D9E1F2") +exp_fill = PatternFill("solid", fgColor="FFE7E7") +ok_fill = PatternFill("solid", fgColor="E2EFDA") + +# ── List: Zdroj ──────────────────────────────────────────────────────────────── +# Generován z covance.allsamples — pořadí řádků odpovídá df.index, +# proto hyperlinky z Přehledu vzorků (index + 2) míří na správné řádky. +src_ws = out_wb.create_sheet("Zdroj") +src_sheet_name = "Zdroj" +pat_sheet_name = "Seznam pacientů" + +zdroj_columns = [ + "Protocol Code", "Investigator No.", "Investigator Name", "Patient No.", + "Collection Date", "Protocol Visit Code", "Kit Receipt Date", + "Container Receipt Date", "Accession", "Container No.", "Container Barcode No.", + "Specimen Type", "Sample Status", "Expected Receipt Condition", + "Actual Receipt Condition", "Container Label Line 1", "Container Label Line 2", + "SM Sample Status", "SMART Specimen Class Description", "Parent Barcode", "Children Barcode", +] + +for col_idx, col_name in enumerate(zdroj_columns, 1): + cell = src_ws.cell(row=1, column=col_idx, value=col_name) + cell.font = header_font + cell.fill = header_fill + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True) + src_ws.column_dimensions[get_column_letter(col_idx)].width = max(len(col_name) + 2, 14) + +src_ws.row_dimensions[1].height = 30 +src_ws.freeze_panes = "A2" + +def clean(v): + try: + if pd.isna(v): + return None + except (TypeError, ValueError): + pass + return v + +for row_idx, (_, row) in enumerate(df.iterrows(), 2): + for col_idx, col_name in enumerate(zdroj_columns, 1): + val = clean(row.get(col_name)) + cell = src_ws.cell(row=row_idx, column=col_idx, value=val) + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center') + +src_ws.auto_filter.ref = f"A1:{get_column_letter(len(zdroj_columns))}1" + +# ── List: Přehled vzorků ─────────────────────────────────────────────────────── +analysis_ws = out_wb.create_sheet("Přehled vzorků") + +columns = [ + ("Investigator Name", 24), + ("Číslo pacienta", 20), + ("Máme biopsii SM11", 20), + ("Máme RNA", 16), + ("Máme Cryostor", 16), + ("DNA", 14), + ("PLASMPK I-0 TROUGH", 18), + ("PLASMA PK I-0 PEAK", 18), + ("SERUM ADA I-0 PRE", 18), + ("SM06/SERUM BIOM", 16), + ("SM07/WB RNA", 14), + ("SM10/FECAL", 14), + ("PLASMPK I-2 TROUGH", 18), + ("PLASMA PK I-2 PEAK", 18), + ("SERUM ADA I-2 PRE", 18), + ("STOOL I-2", 12), + ("PLASMPK I-4 TROUGH", 18), + ("PLASMA PK I-4 PEAK", 18), + ("SERUM ADA I-4 PRE", 18), + ("SM06/SERUM BIOM", 16), + ("SM07/WB RNA", 14), + ("STOOL I-4", 12), +] + +group_font = Font(name='Calibri', bold=True, size=11) +group_fill = PatternFill("solid", fgColor="FFFFFF") +group_border = Border(left=thin, right=thin, top=thin, bottom=thin) + +groups = [ + (3, 5, "SCREENING"), + (7, 12, "RANDOMIZACE I-0"), + (13, 16, "I-2"), + (17, 22, "I-4"), +] +for start_col, end_col, label in groups: + analysis_ws.merge_cells(start_row=1, start_column=start_col, end_row=1, end_column=end_col) + cell = analysis_ws.cell(row=1, column=start_col, value=label) + cell.font = group_font + cell.fill = group_fill + cell.alignment = Alignment(horizontal='center', vertical='center') + cell.border = group_border + for c in range(start_col, end_col + 1): + analysis_ws.cell(row=1, column=c).border = group_border + +analysis_ws.row_dimensions[1].height = 20 + +for col_idx, (hdr, width) in enumerate(columns, 1): + cell = analysis_ws.cell(row=2, column=col_idx, value=hdr) + cell.font = header_font + cell.fill = header_fill + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True) + analysis_ws.column_dimensions[get_column_letter(col_idx)].width = width + +analysis_ws.row_dimensions[2].height = 30 +analysis_ws.freeze_panes = "C3" + +for row_idx, patient in enumerate(bxscr_patients, 3): + investigator = bxscr[bxscr['Patient No.'] == patient].iloc[0]['Investigator Name'] + sm11, sm11_row = get_specimen_info(bxscr, patient, 'Tissue , Paraffin Block') + rna, rna_row = get_specimen_info(bxscr, patient, 'Biopsy RNA Later') + cryo, cryo_row = get_specimen_info(bxscr, patient, 'Biopsy, Frozen Tissue') + dna_date, dna_row = get_specimen_info(dna, patient) + trough, trough_row = get_label_info(patient, 'PLASMPK I-0 TROUGH', 'I-0') + peak, peak_row = get_label_info(patient, 'PLASMA PK I-0 PEAK', 'I-0') + ada, ada_row = get_label_info(patient, 'SERUM ADA I-0 PRE', 'I-0') + sm06, sm06_row = get_label_info(patient, 'SM06/SERUM BIOM', 'I-0') + sm07, sm07_row = get_label_info(patient, 'SM07/WB RNA', 'I-0') + sm10, sm10_row = get_label_info(patient, 'SM10/FECAL', 'I-0') + trough2, trough2_row = get_label_info(patient, 'PLASMPK I-2 TROUGH', 'I-2') + peak2, peak2_row = get_label_info(patient, 'PLASMA PK I-2 PEAK', 'I-2') + ada2, ada2_row = get_label_info(patient, 'SERUM ADA I-2 PRE', 'I-2') + stool2, stool2_row = get_label_info(patient, 'STOOL I-2', 'I-2') + trough4, trough4_row = get_label_info(patient, 'PLASMPK I-4 TROUGH', 'I-4') + peak4, peak4_row = get_label_info(patient, 'PLASMA PK I-4 PEAK', 'I-4') + ada4, ada4_row = get_label_info(patient, 'SERUM ADA I-4 PRE', 'I-4') + sm064, sm064_row = get_label_info(patient, 'SM06/SERUM BIOM', 'I-4') + sm074, sm074_row = get_label_info(patient, 'SM07/WB RNA', 'I-4') + stool4, stool4_row = get_label_info(patient, 'STOOL I-4', 'I-4') + + row_data = [ + investigator, patient, + (sm11, sm11_row), (rna, rna_row), (cryo, cryo_row), (dna_date, dna_row), + (trough, trough_row), (peak, peak_row), (ada, ada_row), + (sm06, sm06_row), (sm07, sm07_row), (sm10, sm10_row), + (trough2, trough2_row),(peak2, peak2_row), (ada2, ada2_row), (stool2, stool2_row), + (trough4, trough4_row),(peak4, peak4_row), (ada4, ada4_row), + (sm064, sm064_row), (sm074, sm074_row), (stool4, stool4_row), + ] + + for col_idx, value in enumerate(row_data, 1): + if col_idx <= 2: + cell = analysis_ws.cell(row=row_idx, column=col_idx, value=value) + if col_idx == 2 and patient in patient_row_map: + cell.hyperlink = f"#'{pat_sheet_name}'!B{patient_row_map[patient]}" + cell.font = Font(name='Calibri', size=11, underline='single') + else: + cell.font = data_font + else: + dt, excel_row = value + cell = analysis_ws.cell(row=row_idx, column=col_idx, value=dt) + if dt and excel_row is not None: + cell.hyperlink = f"#'{src_sheet_name}'!A{excel_row}" + cell.font = date_font_link + cell.fill = yes_fill + cell.number_format = 'DD-MMM-YYYY' + else: + cell.font = Font(name='Calibri', size=11, color="C00000") + cell.fill = no_fill + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center') + +# ── List: Seznam pacientů ────────────────────────────────────────────────────── +patients_ws = out_wb.create_sheet("Seznam pacientů") + +pat_columns = [ + ("Číslo centra", 20), + ("Číslo pacienta", 20), + ("Kód návštěvy", 20), + ("Datum návštěvy", 16), + ("Typ návštěvy", 16), +] + +for col_idx, (col_name, width) in enumerate(pat_columns, 1): + cell = patients_ws.cell(row=1, column=col_idx, value=col_name) + cell.font = header_font + cell.fill = header_fill + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True) + patients_ws.column_dimensions[get_column_letter(col_idx)].width = width + +patients_ws.row_dimensions[1].height = 30 +patients_ws.freeze_panes = "A2" + +pat_df = edc_df_raw[['SiteNumber', 'Subject', 'InstanceName', 'Field4Value', 'Field5Value']].copy() +pat_df['Field4Value'] = pat_df['Field4Value'].apply(fmt_date_edc) +pat_df = pat_df.sort_values(['SiteNumber', 'Subject', 'Field4Value']).reset_index(drop=True) + +pat_col_keys = ['SiteNumber', 'Subject', 'InstanceName', 'Field4Value', 'Field5Value'] +for row_idx, (_, row) in enumerate(pat_df.iterrows(), 2): + for col_idx, key in enumerate(pat_col_keys, 1): + value = clean(row[key]) + cell = patients_ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal='center', vertical='center') + if col_idx == 4 and value is not None: + cell.number_format = 'DD-MMM-YYYY' + +# ── Pomocná funkce pro souhrnné tabulky ──────────────────────────────────────── +def write_summary_table(ws, current_row, title, rows_data, col_a_header): + for c in range(1, 5): + cell = ws.cell(row=current_row, column=c) + cell.fill = dark_blue_fill + cell.border = border + ws.cell(row=current_row, column=1, value=title).font = Font(name='Calibri', bold=True, size=12, color="FFFFFF") + ws.cell(row=current_row, column=1).alignment = Alignment(horizontal="left", vertical="center") + ws.merge_cells(start_row=current_row, start_column=1, end_row=current_row, end_column=4) + ws.row_dimensions[current_row].height = 22 + current_row += 1 + + for col_idx, (h, f) in enumerate(zip( + [col_a_header, "Description", "Expiruje do 30 dní", "Expiruje později"], + [header_fill, header_fill, orange_fill, green_fill] + ), 1): + cell = ws.cell(row=current_row, column=col_idx, value=h) + cell.font = sum_header_font + cell.fill = f + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + ws.row_dimensions[current_row].height = 28 + current_row += 1 + + totals = [0, 0] + for col_a, col_b, n_soon, n_ok in rows_data: + totals[0] += n_soon + totals[1] += n_ok + all_zero = (n_soon == 0 and n_ok == 0) + row_vals = [col_a, col_b, n_soon, n_ok] + row_fills = [None, None, + orange_fill if n_soon > 0 else None, + green_fill if n_ok > 0 else None] + for col_idx, (val, rfill) in enumerate(zip(row_vals, row_fills), 1): + cell = ws.cell(row=current_row, column=col_idx, value=val) + if col_idx >= 3 and val == 0: + cell.font = zero_red_font if all_zero else zero_font + else: + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal="center" if col_idx >= 2 else "left", vertical="center") + if rfill: + cell.fill = rfill + current_row += 1 + + for col_idx, val in enumerate(["CELKEM", "", totals[0], totals[1]], 1): + cell = ws.cell(row=current_row, column=col_idx, value=val) + cell.font = sum_total_font + cell.fill = total_fill + cell.border = border + cell.alignment = Alignment(horizontal="center" if col_idx >= 2 else "left", vertical="center") + current_row += 2 + return current_row + +# ── List: Kit Inventory CZE ──────────────────────────────────────────────────── +kit_ws = out_wb.create_sheet("Kit Inventory CZE") + +listing_columns = [ + ("Project No.", 14), + ("Region", 10), + ("Country", 10), + ("Site", 38), + ("Kit Type", 12), + ("Description", 22), + ("Accession", 18), + ("Shipped Date", 16), + ("Expiration Date", 16), + ("Days to Expiration", 20), +] + +for col_idx, (hdr, width) in enumerate(listing_columns, 1): + cell = kit_ws.cell(row=1, column=col_idx, value=hdr) + cell.font = header_font + cell.fill = header_fill + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + kit_ws.column_dimensions[get_column_letter(col_idx)].width = width + +kit_ws.row_dimensions[1].height = 30 +kit_ws.freeze_panes = "A2" + +for row_idx, (_, row) in enumerate(cze.iterrows(), 2): + days = row.get("Days to Expiration") + for col_idx, (col_name, _) in enumerate(listing_columns, 1): + value = clean(row.get(col_name)) + cell = kit_ws.cell(row=row_idx, column=col_idx, value=value) + cell.font = data_font + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center") + if col_name in ("Shipped Date", "Expiration Date") and value is not None: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Days to Expiration": + cell.fill = exp_fill if (pd.notna(days) and days <= 60) else ok_fill + +kit_ws.auto_filter.ref = f"A1:{get_column_letter(len(listing_columns))}1" + +# ── List: Přehled po centrech ────────────────────────────────────────────────── +ctr_ws = out_wb.create_sheet("Přehled po centrech") +ctr_ws.column_dimensions["A"].width = 22 +ctr_ws.column_dimensions["B"].width = 24 +ctr_ws.column_dimensions["C"].width = 22 +ctr_ws.column_dimensions["D"].width = 20 + +current_row = 1 +for site in kit_sites: + site_df = cze[cze["Site"] == site] + rows_data = [] + for kit in kit_order: + desc = kit_desc.get(kit, "") + kit_site_df = site_df[site_df["Kit Type"] == kit] + n_soon = int((kit_site_df["_bucket"] == "soon").sum()) + n_ok = int((kit_site_df["_bucket"] == "ok").sum()) + rows_data.append((f"{kit} — {desc}", desc, n_soon, n_ok)) + current_row = write_summary_table(ctr_ws, current_row, site, rows_data, "Kit Type") + +# ── List: Přehled po typech kitů ─────────────────────────────────────────────── +sum_ws = out_wb.create_sheet("Přehled po typech") +sum_ws.column_dimensions["A"].width = 38 +sum_ws.column_dimensions["B"].width = 22 +sum_ws.column_dimensions["C"].width = 22 +sum_ws.column_dimensions["D"].width = 20 + +current_row = 1 +for kit in kit_order: + desc = kit_desc.get(kit, "") + kit_df = cze[cze["Kit Type"] == kit] + rows_data = [] + for site in sorted(kit_df["Site"].unique()): + site_df = kit_df[kit_df["Site"] == site] + n_soon = int((site_df["_bucket"] == "soon").sum()) + n_ok = int((site_df["_bucket"] == "ok").sum()) + rows_data.append((site, desc, n_soon, n_ok)) + current_row = write_summary_table(sum_ws, current_row, f"Kit Type {kit} — {desc}", rows_data, "Centrum") + +# ── List: eQueries ───────────────────────────────────────────────────────────── +# TODO: doplnit až budou eQuery data importována do MongoDB +# Zdroj: covance db, kolekce "equeries" (dle konvence importu) +# Filtr: Country == "CZECH REPUBLIC" +# Sloupce: Site, Subject, Visit, Visit Collection Date, Accession, +# eQueryId, Issue Type, Status, Create Date, Response Date Time, +# Time Before Response, User Name +# Řazení: Open → Response Received → Closed, pak Site +eq_ws = out_wb.create_sheet("eQueries") +eq_ws.cell(row=1, column=1, + value="TODO: eQuery data zatím nejsou v MongoDB — doplnit po importu.").font = Font( + name='Calibri', bold=True, size=12, color="C00000" +) +eq_ws.column_dimensions["A"].width = 70 + +# ── Uložení ──────────────────────────────────────────────────────────────────── +out_wb.save(out_path) +client.close() + +print(f"\nUloženo: {out_path}") +print(f"Pacienti s BXSCR: {len(bxscr_patients)}, Všichni pacienti: {len(all_patients)}") +print(f"CZE kity: {len(cze)}, Typy kitů: {len(kit_order)}, Centra: {len(kit_sites)}") diff --git a/Covance_UCO3001/download_equeries_report_v1.1.py b/Covance_UCO3001/download_equeries_report_v1.1.py new file mode 100644 index 0000000..0b4f624 --- /dev/null +++ b/Covance_UCO3001/download_equeries_report_v1.1.py @@ -0,0 +1,74 @@ +# Název: download_equeries_report_v1.1.py +# Verze: 1.1 +# Datum: 2026-05-28 +# Popis: Stahuje eQuery reporty ze Covance/Labcorp XSP pro studii 36940. +# Stahuje 2 soubory: všechny eQueries + pouze nezodpovězené. +# Výstup: timestampované CSV soubory do adresáře Source/. +# Prohlížeč spouštěn maximalizovaný. + +from playwright.sync_api import sync_playwright +from datetime import datetime +import os + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +SITES = "%5B%22930551%22,%22930556%22,%22930525%22,%22930549%22,%22930543%22,%22930547%22,%22930555%22,%22930557%22,%22930539%22,%22930536%22,%22930553%22,%22930531%22%5D" +REPORT_URL = f"https://xsp.labcorp.com/sponsor/study/36940/activity-reports/documents/equery?site={SITES}" +REPORT_URL_UNRESPONDED = f"https://xsp.labcorp.com/sponsor/study/36940/activity-reports/documents/equery?site={SITES}&unrespondedOnly=true" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +PROFILE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "browser_profile") + + +def login(page): + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle") + if not page.get_by_label("Email").is_visible(): + print(f"Session aktivni, prihlasen: {page.url}") + return + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + print(f"Prihlaseni OK: {page.url}") + + +def export_csv(page, url, filename): + page.goto(url) + page.wait_for_load_state("networkidle", timeout=60000) + print(f"Report nacteny: {page.url}") + page.locator("ag-export").get_by_role("button", name="more_horiz").click() + with page.expect_download(timeout=60000) as dl: + page.get_by_text("Export to CSV").click() + dest = os.path.join(OUT_DIR, filename) + dl.value.save_as(dest) + print(f"Stazeno: {dest}") + + +def download(page): + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + export_csv(page, REPORT_URL, + f"{timestamp} sponsor-study-36940-activity-reports-documents-equery.csv") + export_csv(page, REPORT_URL_UNRESPONDED, + f"{timestamp} sponsor-study-36940-activity-reports-documents-equery_unresponded_only.csv") + + +if __name__ == "__main__": + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=["--disable-blink-features=AutomationControlled", "--start-maximized"], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + login(page) + download(page) + context.close() diff --git a/Covance_UCO3001/download_kit_inventory_v2.1.py b/Covance_UCO3001/download_kit_inventory_v2.1.py new file mode 100644 index 0000000..a8b5e15 --- /dev/null +++ b/Covance_UCO3001/download_kit_inventory_v2.1.py @@ -0,0 +1,93 @@ +# Název: download_kit_inventory_v2.1.py +# Verze: 2.1 +# Datum: 2026-05-28 +# Popis: Stahuje kit inventory (on-hand expiration) ze Covance/Labcorp XSP +# pro 2 studie: 77242113UCO3001 (study 36940) a study 35472. +# Výstup: timestampované CSV soubory do adresáře Source/. +# Prohlížeč spouštěn maximalizovaný. + +from playwright.sync_api import sync_playwright +from datetime import datetime +import os + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +PROFILE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "browser_profile") + +REPORTS = [ + { + "study": "77242113UCO3001", + "url": ( + "https://xsp.labcorp.com/sponsor/study/36940/kit-inventory/on-hand-expiration" + "?site=%5B%22CZ10001-213069%22,%22CZ10010-213069%22,%22CZ10022-213069%22," + "%22CZ10020-213069%22,%22CZ10012-213069%22,%22CZ10021-213069%22," + "%22CZ10016-213069%22,%22CZ10003-213069%22,%22CZ10009-213069%22," + "%22CZ10015-213069%22,%22CZ10013-213069%22,%22CZ10006-213069%22%5D" + "&recordLimit=true" + ), + "filename": "sponsor-study-36940-kit-inventory-on-hand-expiration.csv", + }, + { + "study": "druha studie (35472)", + "url": ( + "https://xsp.labcorp.com/sponsor/study/35472/kit-inventory/on-hand-expiration" + "?site=%5B%22CZ10004-212396%22,%22CZ10012-212396%22," + "%22CZ10011-212396%22,%22CZ10008-212396%22%5D" + "&recordLimit=true" + ), + "filename": "sponsor-study-35472-kit-inventory-on-hand-expiration.csv", + }, +] + + +def login(page): + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle") + if not page.get_by_label("Email").is_visible(): + print(f"Session aktivni, prihlasen: {page.url}") + return + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + print(f"Prihlaseni OK: {page.url}") + + +def download_report(page, report): + print(f"\n--- {report['study']} ---") + page.goto(report["url"]) + page.wait_for_load_state("networkidle", timeout=60000) + print(f"Report nacteny: {page.url}") + + page.locator("ag-export").get_by_role("button", name="more_horiz").click() + with page.expect_download(timeout=60000) as dl: + page.get_by_text("Export to CSV").click() + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + dl.value.save_as(dest) + print(f"Stazeno: {dest}") + + +if __name__ == "__main__": + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=["--disable-blink-features=AutomationControlled", "--start-maximized"], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + login(page) + for report in REPORTS: + download_report(page, report) + context.close() diff --git a/Covance_UCO3001/download_samples_report_v1.1.py b/Covance_UCO3001/download_samples_report_v1.1.py new file mode 100644 index 0000000..881ecae --- /dev/null +++ b/Covance_UCO3001/download_samples_report_v1.1.py @@ -0,0 +1,143 @@ +# ============================================================================= +# Název: download_samples_report_v1.1.py +# Verze: 1.1 +# Datum: 2026-05-29 +# Popis: Automatické stažení CSV reportu All Samples ze xsp.labcorp.com pro +# studie 77242113UCO3001 (study 36940) a 42847922MDD3003 (study 35472). +# Aplikuje country filtr CZ, date range od FROM_DATE, čeká na zmizení +# "Fetching Data" před exportem. Výstup do Source/ každé studie. +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import os + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +HOME_URL = "https://xsp.labcorp.com/sampletracking/home" +FROM_DATE = "01-Jan-2025" +PROFILE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "browser_profile") + +# (protocol, covance study ID, výstupní adresář) +STUDIES = [ + ("77242113UCO3001", "36940", r"U:\PythonProject\Janssen\Covance_UCO3001\Source"), + ("42847922MDD3003", "35472", r"U:\PythonProject\Janssen\Covance_MDD3003\Source"), +] + +TILE_LABEL = "All Samples" +TILE_SUFFIX = "allSamples" + + +def login(page): + page.goto(LOGIN_URL) + page.wait_for_load_state("networkidle", timeout=120000) + if not page.get_by_label("Email").is_visible(): + print(f"Session aktivni, prihlasen: {page.url}") + return + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle", timeout=120000) + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + page.wait_for_timeout(15000) + page.wait_for_load_state("networkidle", timeout=120000) + print(f"Prihlaseni OK: {page.url}") + + +def select_protocol(page, protocol): + page.goto(HOME_URL) + page.wait_for_load_state("networkidle", timeout=120000) + page.wait_for_timeout(3000) + page.locator("span").filter(has_text=protocol).first.click() + page.wait_for_load_state("networkidle", timeout=120000) + page.wait_for_timeout(3000) + print(f"Protokol vybran: {protocol} ({page.url})") + + +def apply_country_filter(page): + page.get_by_text("keyboard_arrow_down").nth(3).click() + page.wait_for_timeout(2000) + page.get_by_role("checkbox", name="Czech Republic").check() + page.wait_for_timeout(2000) + page.mouse.move(0, -50, steps=5) + page.wait_for_load_state("networkidle", timeout=120000) + page.wait_for_timeout(3000) + print("Country filter CZ aplikovan.") + + +def export_tile(page, tile_label, file_suffix, timestamp, study_id, out_dir): + # Klikni na View Samples u správné dlaždice + page.locator("div.study-group-card").filter( + has=page.locator("span.label", has_text=tile_label) + ).locator("button.view-sample").click() + page.wait_for_load_state("networkidle", timeout=120000) + page.wait_for_timeout(3000) + print(f" Otevreno: {tile_label} ({page.url})") + + # Date picker + page.get_by_role("button", name="DD/MM - DD/MM").click() + page.wait_for_timeout(2000) + page.get_by_role("textbox", name="Date input field").first.click() + page.get_by_role("textbox", name="Date input field").first.press("End") + page.get_by_role("textbox", name="Date input field").first.press("Shift+Home") + page.get_by_role("textbox", name="Date input field").first.fill(FROM_DATE) + page.wait_for_timeout(500) + page.get_by_role("button", name="Apply").click() + page.wait_for_load_state("networkidle", timeout=120000) + page.wait_for_timeout(3000) + + # Čekej až zmizí "Fetching Data": po filtru 5s, pak opakuj kontrolu každých 5s + page.wait_for_timeout(5000) + for _ in range(24): # max 2 minuty + if not page.get_by_text("Fetching Data").is_visible(): + break + print(" Fetching Data... cekam 5s") + page.wait_for_timeout(5000) + page.wait_for_timeout(5000) # extra buffer po zmizení + + if page.locator("div.table-row.no-data").is_visible(): + print(f" Record Count: 0 — preskakuji.") + return + + count_str = page.locator("div.grid-count span").first.inner_text().strip().replace(",", "") + count = int(count_str) if count_str.isdigit() else -1 + print(f" Record Count: {count}") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Export arrow_drop_down").click() + page.wait_for_timeout(1000) + page.get_by_text("Export As CSV").click() + dest = os.path.join(out_dir, f"{timestamp} sponsor-study-{study_id}-samples-{file_suffix}.csv") + dl.value.save_as(dest) + print(f" Stazeno: {dest}") + + +def download(page): + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + for protocol, study_id, out_dir in STUDIES: + print(f"\n--- Studie: {protocol} ---") + select_protocol(page, protocol) + apply_country_filter(page) + export_tile(page, TILE_LABEL, TILE_SUFFIX, timestamp, study_id, out_dir) + print("\nHotovo.") + + +if __name__ == "__main__": + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + no_viewport=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + login(page) + download(page) + context.close() diff --git a/Covance_UCO3001/download_test_results_v1.4.md b/Covance_UCO3001/download_test_results_v1.4.md new file mode 100644 index 0000000..c10c2b1 --- /dev/null +++ b/Covance_UCO3001/download_test_results_v1.4.md @@ -0,0 +1,218 @@ +# download_test_results_v1.4.py — dokumentace + +**Verze:** 1.4 · **Datum:** 2026-05-29 +**Umístění:** `U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.4.py` + +> **Změny v1.4 oproti 1.3:** **retry na úrovni reportu.** +> Při paralelním běhu server občas vrátí timeout (zejm. `page.goto` 30 s, +> nebo `wait_for_function` 120 s na grid). Dřív byl takový report rovnou +> zapsán jako selhaný. Teď se každý report zkusí až **2× (MAX_ATTEMPTS=2)**, +> mezi pokusy 5 s pauza a `goto("about:blank")` jako reset. Většina +> přechodných timeoutů projde napodruhé. +> Launcher povýšen na `run_test_results_parallel_v1.2.py` (cílí na v1.4). +> +> **Změny v1.3 oproti 1.2:** robustní login (NEčekat na `networkidle`, +> čekat přímo na pole Email/Password) + okno se při pádu nezavře +> (try/except + input()). +> **Změny v1.2 oproti 1.1:** paralelní běh přes sharding (`--shard N --of M`). +> **Změny v1.1 oproti 1.0:** druhá studie 35472 (MDD) + report Microbiology. + +--- + +## 1. Účel + +Automatické stažení reportů **Test Results** z portálu Labcorp Sponsor Portal +(`xsp.labcorp.com`). Skript projde **2 studie × jejich centra × 2 typy reportu**, +u každého vyexportuje grid do CSV a uloží ho timestampovaný do `Source/`. + +| Studie | Interní ID | Význam | Počet center | +|---|---|---|---| +| UC | `36940` | 77242113UCO3001 | 12 | +| MDD | `35472` | druhá studie | 5 | + +Typy reportu: **Standard** (`/standard-test-results`) a **Microbiology** (`/microbiology`). + +**Celkem: (12 + 5) × 2 = 34 reportů** (prázdná centra se přeskakují, viz 6.5). + +--- + +## 2. Spuštění + +### 2a) Paralelně (doporučeno — rychlejší) + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\run_test_results_parallel_v1.2.py +``` + +### 2b) Serialně (jeden proces) + +```bat +U:\PythonProject\Janssen\.venv\Scripts\python.exe ^ + U:\PythonProject\Janssen\Covance_UCO3001\download_test_results_v1.4.py +``` + +### 2c) Jeden konkrétní shard ručně + +```bat +…\python.exe download_test_results_v1.4.py --shard 2 --of 4 +``` + +- Prohlížeč běží **viditelně** (`headless=False`), maximalizovaný. +- Po dokončení (i po chybě) okno **čeká na Enter** — ať je vidět log. + +--- + +## 3. Retry (v1.4) + +### 3.1 Proč +Z reálného běhu 4 shardů (29. 5. 2026) ze 34 reportů selhaly 2: +- `930539/standard` — `page.goto` timeout 30 s (server vůbec neodpověděl) +- `930547/standard` — `wait_for_function` timeout 120 s (grid se nedotáhl) + +Obojí jsou **přechodné serverové timeouty** (sharding ho zatěžuje). Stačí +počkat a zkusit znovu — propadne to. + +### 3.2 Jak +Konstanty: +```python +MAX_ATTEMPTS = 2 # 1. pokus + 1 retry +RETRY_BACKOFF_S = 5 # pauza pred opakovanym pokusem +``` + +`download_report(page, report)` je wrapper, který volá +`download_report_once(...)` v cyklu 1..MAX_ATTEMPTS. Při výjimce zaloguje +`POKUS X/N SELHAL: …`, počká `RETRY_BACKOFF_S`, navštíví `about:blank` +(reset gridu), a zkusí znovu. Když selže poslední pokus, výjimka se propustí +ven a vnější smyčka v `main()` to zapíše do `failed`. + +### 3.3 Co se nezopakuje +Login — ten je mimo retry. Pokud spadne login, shard skončí přes vnější +`try/except` v `__main__` s `FATAL: ...` a okno čeká na Enter. + +--- + +## 4. Paralelní běh (sharding) — beze změny vůči v1.3 + +### 4.1 Rozdělení práce +```python +REPORTS = ALL_REPORTS[SHARD - 1::OF] +``` +Shard 1 z 4 vezme indexy 0, 4, 8, … atd. Bez argumentů = serial. + +### 4.2 Profil per shard +| Běh | Profil | +|---|---| +| serialní (`--of 1`) | `browser_profile/` | +| shard N (`--of M>1`) | `browser_profile_{N}/` | + +Chrome zamyká adresář profilu → 2 instance nesdílí 1 profil. + +### 4.3 Login (varianta B) +Každý shard se přihlásí sám (jen heslo, žádné MFA). Session se uloží do +`browser_profile_{N}/` → další běh login přeskočí. Launcher startuje +s rozestupem `STAGGER_S = 8 s`, aby se OKTA nezahltil. + +### 4.4 Launcher `run_test_results_parallel_v1.2.py` +- `N_SHARDS = 4`, `STAGGER_S = 8 s`. +- Každý proces v novém okně (`CREATE_NEW_CONSOLE`) → logy se neprolínají. +- Prefix logu: `[S{shard}/{of}]`. + +### 4.5 Reálné zrychlení +~2–3× (server throttluje exporty, ne přesně 4×). + +--- + +## 5. Výstupní soubory + +``` +{YYYY-MM-DD_HHMMSS} sponsor-study-{STUDY}-test-results-{SITE_ID}-{TYP}.csv +``` + +Všechny shardy ukládají do `Source/`. Staré se **nikdy nemažou**. + +--- + +## 6. Klíčové technické poznatky — ověřeno přes Chrome MCP + +### 6.1 Čekání na data = `.ag-row` +- ❌ `wait_for_selector("div.ag-row")` (default visible) timeoutuje + (řádky jsou `position-absolute`). +- ✅ `wait_for_function("() => document.querySelectorAll('div.ag-row').length > 0")`. +- Stabilizace: počet se čte co 2 s, dokud se 2× neshodne. +- **Počet `.ag-row` je zastropený** (~153) virtuálním renderem. Export do + CSV ale vyexportuje VŠECHNY řádky. + +### 6.2 „Fetching Data" / spinner — NEPLATÍ pro tuto stránku +Je jen na *samples* reportu. Signál = `.ag-row`. + +### 6.3 Tři tečky (export) — DVA `` +✅ `page.locator("ag-export button:visible", has_text="more_horiz").first.click()` + +### 6.4 „Export to CSV" — DVĚ položky v DOM +✅ `page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click()` + +### 6.5 Prázdné centrum +- No-rows overlay `.ag-overlay-no-rows-wrapper` (NE `-no-rows-center`). +- 2 overlaye, 1 skrytý → kontrola `offsetParent !== null`. +- KROK 2 čeká na `.ag-row` **NEBO** prázdný overlay → nečeká 120 s zbytečně. + +--- + +## 7. Login logika (v1.3+) — beze změny ve v1.4 + +```python +page.goto(LOGIN_URL) +try: + page.get_by_label("Email").wait_for(state="visible", timeout=12000) +except Exception: + return # session aktivni → login přeskočit +page.get_by_label("Email").fill(EMAIL) +page.get_by_role("button", name="Next").click() +page.get_by_label("Password").wait_for(state="visible", timeout=30000) +page.get_by_label("Password").fill(PASSWORD) +page.get_by_role("button", name="Verify").click() +page.wait_for_url(lambda url: "code=" not in url or "xsp." in url, timeout=60000) +``` + +**NE** `networkidle`. **NE** kontrola URL (po redirectu zůstává `xsp.covance.com`). + +--- + +## 8. Chrome flagy + +``` +--disable-restore-session-state +--disable-session-crashed-bubble +``` + +--- + +## 9. Robustnost + +- **Retry per report** (`MAX_ATTEMPTS = 2`) → přechodné timeouty propadnou. +- Každý report v `try/except` → chyba u jednoho nezastaví zbytek shardu. +- Celý běh shardu v `try/except` + `finally: input()` → okno se při pádu nezavře. +- Souhrn na konci: `hotovo X/Y (shard N/M)` + `SELHALA centra: …`. +- Launcher hlídá `returncode` každého shardu. + +--- + +## 10. Možná budoucí rozšíření + +- **Více pokusů:** zvednout `MAX_ATTEMPTS` (3+) — pro hodně přetížený server. +- **Více/méně procesů:** změnit `N_SHARDS` v launcheru (profily `_1.._N`). +- **Další studie / centra / typ reportu:** přidat do `STUDIES` / `REPORT_TYPES`. +- **Vyčistit profily:** smazat `browser_profile_*/` (vynutí nový login). + +--- + +## 11. Příbuzné skripty + +| Skript | Co stahuje | +|---|---| +| `download_samples_report_v1.1.py` | All Samples (sampletracking) | +| `download_kit_inventory_v2.1.py` | Kit inventory | +| `download_equeries_report_v1.1.py` | eQuery reporty (zdroj SITE_IDS pro 36940) | +| `download_test_results_v1.4.py` | **tento** — Test Results (Standard + Microbiology, 2 studie, sharding, retry) | +| `run_test_results_parallel_v1.2.py` | launcher 4 paralelních shardů test-results | diff --git a/Covance_UCO3001/download_test_results_v1.4.py b/Covance_UCO3001/download_test_results_v1.4.py new file mode 100644 index 0000000..a42ec11 --- /dev/null +++ b/Covance_UCO3001/download_test_results_v1.4.py @@ -0,0 +1,260 @@ +# ============================================================================= +# Název: download_test_results_v1.4.py +# Verze: 1.4 +# Datum: 2026-05-29 +# Popis: Stahuje Test Results ze xsp.labcorp.com pro 2 studie (36940, 35472), +# oba typy reportu (Standard + Microbiology), pres vsechna centra. +# Ceka na nacteni AG Grid radku (.ag-row); prazdne centrum ('No Data') +# preskoci. Vystup: timestampovane CSV do adresare Source/. +# Zmeny v1.4: + RETRY na urovni reportu. Pri paralelnim behu server obcas +# timeoutuje (page.goto 30 s, nebo wait_for_function 120 s na grid). +# Driv byl report rovnou zaznamenan jako selhany. Ted se kazdy +# report zkusi az 2x (MAX_ATTEMPTS=2). Vetsina prechodnych +# timeoutu projde napodruhe. Mezi pokusy 5 s pauza. +# Zmeny v1.3: robustni login (NEcekat na networkidle, cekat na pole +# Email/Password) + okno se pri padu nezavre (try/except + input()). +# Zmeny v1.2: + paralelni beh pres sharding (--shard N --of M). Profil per shard. +# Zmeny v1.1: + studie 35472, + report typ microbiology. +# ============================================================================= +from playwright.sync_api import sync_playwright +from datetime import datetime +import argparse +import traceback +import os + +# --- argumenty: sharding pro paralelni beh ---------------------------------- +parser = argparse.ArgumentParser(description="Stahovani Test Results (XSP) s podporou shardingu.") +parser.add_argument("--shard", type=int, default=1, help="poradi tohoto shardu (1..of)") +parser.add_argument("--of", type=int, default=1, help="celkovy pocet shardu") +ARGS = parser.parse_args() +SHARD, OF = ARGS.shard, ARGS.of +TAG = f"[S{SHARD}/{OF}]" if OF > 1 else "" + + +def log(msg): + print(f"[{datetime.now().strftime('%H:%M:%S')}] {TAG} {msg}", flush=True) + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +LOGIN_URL = "https://xsp.covance.com/" +OUT_DIR = r"U:\PythonProject\Janssen\Covance_UCO3001\Source" +# Pri paralelnim behu MUSI mit kazdy shard vlastni profil (Chrome zamyka adresar +# profilu -> dve bezici instance nemohou sdilet jeden). Serialni beh (of=1) +# pouziva puvodni browser_profile. +_BASE = os.path.dirname(os.path.abspath(__file__)) +PROFILE_DIR = os.path.join(_BASE, "browser_profile" if OF == 1 else f"browser_profile_{SHARD}") + +# --- retry konfigurace ----------------------------------------------------- +MAX_ATTEMPTS = 2 # 1. pokus + 1 retry na report +RETRY_BACKOFF_S = 5 # pauza pred opakovanym pokusem (s) + +# Studie + jejich interni cisla center. +# 36940 = 77242113UCO3001 (UC) — zdroj center: download_equeries_report SITES +# 35472 = druha studie (MDD) +STUDIES = [ + { + "study": "36940", + "sites": [ + "930551", "930556", "930525", "930549", "930543", "930547", + "930555", "930557", "930539", "930536", "930553", "930531", + ], + }, + { + "study": "35472", + "sites": [ + "898745", "898739", "898733", "898744", "898727", + ], + }, +] + +# Typy reportu: zalozka v URL + suffix v nazvu souboru. +REPORT_TYPES = [ + {"slug": "standard-test-results", "suffix": "standard"}, + {"slug": "microbiology", "suffix": "microbiology"}, +] + +ALL_REPORTS = [ + { + "site": sid, + "study": st["study"], + "type": rt["suffix"], + "url": f"https://xsp.labcorp.com/sponsor/study/{st['study']}/test-results/{sid}/{rt['slug']}", + "filename": f"sponsor-study-{st['study']}-test-results-{sid}-{rt['suffix']}.csv", + } + for st in STUDIES + for sid in st["sites"] + for rt in REPORT_TYPES +] + +# Tento shard vezme kazdy of-ty report od indexu (shard-1). Rovnomerne rozdeleni +# a zadny report neudela dva shardy zaroven. +REPORTS = ALL_REPORTS[SHARD - 1::OF] + + +def login(page): + log("LOGIN: otviram login stranku...") + page.goto(LOGIN_URL) + # NEcekat na 'networkidle' — login SPA (labcorp/OKTA) ji nikdy nedosahne + # (analytika/polling bezi porad) -> drive to vedlo k timeoutu a padu procesu. + # Misto toho cekame primo na pole Email. Pokud se do 12 s neobjevi, + # povazujeme session za aktivni (uz prihlaseno). + try: + page.get_by_label("Email").wait_for(state="visible", timeout=12000) + except Exception: + log(f"LOGIN: Email pole se neobjevilo -> session aktivni, login preskocen ({page.url})") + return + + log("LOGIN: zadavam email...") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + + log("LOGIN: cekam na pole pro heslo...") + page.get_by_label("Password").wait_for(state="visible", timeout=30000) + log("LOGIN: zadavam heslo...") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + + log("LOGIN: cekam na presmerovani po prihlaseni...") + try: + page.wait_for_url( + lambda url: "code=" not in url or "xsp." in url, + timeout=60000, + ) + except Exception: + log("LOGIN: wait_for_url vyprsel, pokracuji (overim pristup pri 1. reportu).") + page.wait_for_timeout(3000) + log(f"LOGIN: prihlaseni hotovo ({page.url})") + + +def download_report_once(page, report): + """Jeden pokus o stazeni reportu. Vyhazuje vyjimku pri chybe.""" + log(f"KROK 1/5: navigace na report URL...") + page.goto(report["url"]) + log(f"KROK 1/5: stranka nactena ({page.url})") + + log("KROK 2/5: cekam na radky gridu (.ag-row) nebo prazdny grid ('No Data')...") + # AG Grid radky jsou position-absolute (virtualni render), takze nejsou + # "visible" dle Playwrightu -> cekej na pritomnost v DOM, ne na viditelnost. + # Prazdne centrum: AG Grid vykresli no-rows overlay s textem "No Data" ve + # wrapperu .ag-overlay-no-rows-wrapper. POZOR: trida NENI -no-rows-center; + # navic jsou na strance 2 overlaye (jeden skryty) -> kontroluj viditelny + # (offsetParent != null). Detekuj, aby to u centra bez dat necekalo 120 s. + EMPTY_GRID_JS = """() => { + if (document.querySelectorAll('div.ag-row').length > 0) return false; + return [...document.querySelectorAll('.ag-overlay-no-rows-wrapper')] + .some(e => e.offsetParent !== null); + }""" + page.wait_for_function( + f"""() => document.querySelectorAll('div.ag-row').length > 0 + || ({EMPTY_GRID_JS})()""", + timeout=120000, + ) + if page.evaluate(EMPTY_GRID_JS): + log("KROK 2/5: centrum bez dat ('No Data' overlay) — preskakuji export.") + return + log("KROK 2/5: radky se objevily, cekam na stabilizaci poctu...") + prev = -1 + for i in range(20): # max ~40 s stabilizace + cnt = page.locator("div.ag-row").count() + log(f" ...kontrola #{i+1}: {cnt} radku") + if cnt == prev and cnt > 0: + break + prev = cnt + page.wait_for_timeout(2000) + page.wait_for_timeout(2000) # buffer + log(f"KROK 2/5: data stabilni ({prev} radku v gridu).") + + log("KROK 3/5: klikam na viditelne tri tecky (more_horiz)...") + page.locator("ag-export button:visible", has_text="more_horiz").first.click() + log("KROK 3/5: menu otevreno.") + + timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") + dest = os.path.join(OUT_DIR, f"{timestamp} {report['filename']}") + log("KROK 4/5: klikam na 'Export to CSV' a cekam na stahovani...") + with page.expect_download(timeout=60000) as dl: + page.locator("mdl-menu-item:visible", has_text="Export to CSV").first.click() + log("KROK 4/5: stahovani zachyceno, ukladam soubor...") + dl.value.save_as(dest) + log(f"KROK 5/5: HOTOVO -> {dest}") + + +def download_report(page, report): + """Wrapper s retry. Vyhazuje vyjimku az kdyz selzou vsechny pokusy.""" + log(f"=== Centrum {report['site']} / {report['type']} (studie {report['study']}) ===") + last_err = None + for attempt in range(1, MAX_ATTEMPTS + 1): + if attempt > 1: + log(f"RETRY: {attempt}/{MAX_ATTEMPTS} pokus o centrum " + f"{report['site']}/{report['type']} (po {RETRY_BACKOFF_S}s pauze)...") + try: + page.wait_for_timeout(RETRY_BACKOFF_S * 1000) + except Exception: + pass + try: + download_report_once(page, report) + if attempt > 1: + log(f"RETRY: pokus {attempt} uspesny.") + return + except Exception as e: + last_err = e + log(f"POKUS {attempt}/{MAX_ATTEMPTS} SELHAL: {e!r}") + if attempt == MAX_ATTEMPTS: + # propustit vyse — outer try ve smycce reportu to zaloguje a pokracuje + raise + # Pred dalsim pokusem zkusit prejit pryc, at se grid resetuje. + try: + page.goto("about:blank") + except Exception: + pass + + +def main(): + log(f"START: shard {SHARD}/{OF}, profil '{os.path.basename(PROFILE_DIR)}', " + f"{len(REPORTS)}/{len(ALL_REPORTS)} reportu k zpracovani " + f"(MAX_ATTEMPTS={MAX_ATTEMPTS}).") + with sync_playwright() as p: + context = p.chromium.launch_persistent_context( + user_data_dir=PROFILE_DIR, + headless=False, + args=[ + "--disable-blink-features=AutomationControlled", + "--start-maximized", + "--disable-restore-session-state", + "--disable-session-crashed-bubble", + ], + no_viewport=True, + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + accept_downloads=True, + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + log("START: prohlizec spusten.") + login(page) + ok, failed = 0, [] + for idx, report in enumerate(REPORTS, 1): + log(f">>> Report {idx}/{len(REPORTS)}") + try: + download_report(page, report) + ok += 1 + except Exception as e: + failed.append(f"{report['site']}/{report['type']}") + log(f"CHYBA u centra {report['site']}/{report['type']} " + f"(vsechny {MAX_ATTEMPTS} pokusy selhaly): {e!r} — pokracuji dalsim.") + log(f"KONEC: hotovo {ok}/{len(REPORTS)} reportu (shard {SHARD}/{OF}).") + if failed: + log(f"KONEC: SELHALA centra: {', '.join(failed)}") + context.close() + + +if __name__ == "__main__": + try: + main() + except Exception as e: + log(f"FATAL: beh shardu spadl: {e!r}") + traceback.print_exc() + finally: + # Nech okno otevrene, at je videt log/chyba. + try: + input("\n[Enter] pro zavreni tohoto okna...") + except EOFError: + pass diff --git a/Covance_UCO3001/import_to_mongo_v1.2.py b/Covance_UCO3001/import_to_mongo_v1.2.py new file mode 100644 index 0000000..204b9b8 --- /dev/null +++ b/Covance_UCO3001/import_to_mongo_v1.2.py @@ -0,0 +1,181 @@ +# ============================================================================= +# Název: import_to_mongo_v1.2.py +# Verze: 1.2 +# Datum: 2026-05-28 +# Popis: Import CSV reportů do MongoDB (db: covance). +# Pipeline 1 — allSamples: kolekce allsamples, klíč Container Barcode No. +# Zdroj: UCO3001/Source + MDD3003/Source +# Pipeline 2 — kits: kolekce kits, klíč Accession +# Zdroj: UCO3001/Source (oba study 36940 + 35472) +# Upsert s historií změn, zpracovaný soubor přesunut do Zpracovano/. +# ============================================================================= + +import csv +import re +import shutil +import sys +from datetime import datetime +from pathlib import Path + +from pymongo import MongoClient, ASCENDING + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "covance" + +UCO3001_SOURCE = Path(__file__).parent / "Source" +MDD3003_SOURCE = Path(__file__).parent.parent / "Covance_MDD3003" / "Source" + +PIPELINES = [ + { + "name": "allsamples", + "collection": "allsamples", + "upsert_key": "Container Barcode No.", + "pattern": re.compile(r".*-allSamples\.csv$", re.IGNORECASE), + "sources": [UCO3001_SOURCE, MDD3003_SOURCE], + "indexes": [ + [("fields.Sample Status", ASCENDING)], + [("fields.Specimen Type", ASCENDING)], + ], + }, + { + "name": "kits", + "collection": "kits", + "upsert_key": "Accession", + "pattern": re.compile(r".*-kit-inventory-on-hand-expiration\.csv$", re.IGNORECASE), + "sources": [UCO3001_SOURCE], + "indexes": [ + [("fields.Kit Type", ASCENDING)], + [("fields.Site", ASCENDING)], + [("fields.Expiration Date", ASCENDING)], + ], + }, +] + + +def extract_snapshot_date(filename: str) -> str: + match = re.match(r"(\d{4}-\d{2}-\d{2})", Path(filename).name) + return match.group(1) if match else datetime.now().strftime("%Y-%m-%d") + + +def clean_value(val: str) -> str | None: + val = val.strip() + return val if val else None + + +def import_file(csv_path: Path, collection, upsert_key: str) -> dict: + snapshot_date = extract_snapshot_date(csv_path.name) + inserted = changed = unchanged = skipped = 0 + + with open(csv_path, newline="", encoding="utf-8-sig") as f: + reader = csv.DictReader(f) + rows = list(reader) + + for row in rows: + fields = {k: clean_value(v) for k, v in row.items() if k} + + key_val = fields.get(upsert_key) + if not key_val: + skipped += 1 + continue + + existing = collection.find_one({"record_id": key_val}) + + if existing is None: + collection.insert_one({ + "record_id": key_val, + "fields": fields, + "sourceFile": csv_path.name, + "firstSeen": snapshot_date, + "lastSeen": snapshot_date, + "history": [], + }) + inserted += 1 + + elif existing["fields"] != fields: + collection.update_one( + {"_id": existing["_id"]}, + { + "$push": {"history": {"date": existing["lastSeen"], "fields": existing["fields"]}}, + "$set": {"fields": fields, "sourceFile": csv_path.name, "lastSeen": snapshot_date}, + }, + ) + changed += 1 + + else: + collection.update_one( + {"_id": existing["_id"]}, + {"$set": {"lastSeen": snapshot_date, "sourceFile": csv_path.name}}, + ) + unchanged += 1 + + total_rows = len(rows) + db_count = collection.count_documents({}) + print(f" [{snapshot_date}]: +{inserted} new, ~{changed} changed, ={unchanged} same, -{skipped} bez klice") + print(f" Radku v CSV: {total_rows}, dokumentu v DB: {db_count}") + + if inserted + changed + unchanged + skipped != total_rows: + print(f" !!! VAROVANI: soucet ({inserted+changed+unchanged+skipped}) != radku v CSV ({total_rows})") + + return {"inserted": inserted, "changed": changed, "unchanged": unchanged} + + +def collect_files(pipeline: dict, cli_args: list[str]) -> list[Path]: + if cli_args: + paths = [] + for arg in cli_args: + p = Path(arg) + if p.is_file() and pipeline["pattern"].match(p.name): + paths.append(p) + return paths + + paths = [] + for src_dir in pipeline["sources"]: + if src_dir.exists(): + paths.extend(sorted(p for p in src_dir.glob("*.csv") if pipeline["pattern"].match(p.name))) + return paths + + +def run_pipeline(pipeline: dict, client, cli_args: list[str]): + paths = collect_files(pipeline, cli_args) + if not paths: + print(f"[{pipeline['name']}] Zadne soubory k importu.") + return + + print(f"\n=== Pipeline: {pipeline['name']} ({len(paths)} souboru) ===") + + col = client[DB_NAME][pipeline["collection"]] + col.create_index([("record_id", ASCENDING)], unique=True) + for idx in pipeline["indexes"]: + col.create_index(idx) + + for src_dir in pipeline["sources"]: + (src_dir / "Zpracovano").mkdir(exist_ok=True) + + total = {"inserted": 0, "changed": 0, "unchanged": 0} + + for csv_path in paths: + print(f"Import: {csv_path.name} [{csv_path.parent.parent.name}]") + stats = import_file(csv_path, col, pipeline["upsert_key"]) + for k in total: + total[k] += stats[k] + dest = csv_path.parent / "Zpracovano" / csv_path.name + shutil.move(str(csv_path), str(dest)) + print(f" -> presunut do Zpracovano/\n") + + print(f"[{pipeline['name']}] Celkem: +{total['inserted']} new, ~{total['changed']} changed, ={total['unchanged']} same") + + +def main(): + cli_args = sys.argv[1:] + + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + + for pipeline in PIPELINES: + run_pipeline(pipeline, client, cli_args) + + client.close() + + +if __name__ == "__main__": + main() diff --git a/Covance_UCO3001/run_test_results_parallel_v1.2.py b/Covance_UCO3001/run_test_results_parallel_v1.2.py new file mode 100644 index 0000000..ce74c85 --- /dev/null +++ b/Covance_UCO3001/run_test_results_parallel_v1.2.py @@ -0,0 +1,55 @@ +# ============================================================================= +# Název: run_test_results_parallel_v1.2.py +# Verze: 1.2 +# Datum: 2026-05-29 +# Popis: Launcher pro paralelni stahovani Test Results. Spusti N procesu +# download_test_results_v1.4.py, kazdy s --shard i --of N, kazdy +# ve vlastnim konzolovem okne (CREATE_NEW_CONSOLE) a s vlastnim +# profilem browser_profile_{i}. Pocka, az vsechny dobehnou. +# Zmeny v1.2: cili na download_test_results_v1.4.py (retry na urovni reportu). +# Zmeny v1.1: cili na v1.3 (robustni login + okno se pri chybe nezavre), +# STAGGER_S zvysen na 8 s. +# ============================================================================= +import subprocess +import sys +import os +import time + +N_SHARDS = 4 # pocet soubeznych procesu (oken) +STAGGER_S = 8 # rozestup mezi starty (s) — at se OKTA login + # nezahlti soucasnymi pozadavky najednou +BASE = os.path.dirname(os.path.abspath(__file__)) +SCRIPT = os.path.join(BASE, "download_test_results_v1.4.py") +PYEXE = sys.executable # stejny interpreter (.venv), kterym byl spusten launcher + +# Vlastni konzolove okno pro kazdy proces (jen Windows) -> logy se neprolinaji. +CREATE_NEW_CONSOLE = getattr(subprocess, "CREATE_NEW_CONSOLE", 0) + + +def main(): + print(f"Launcher: spoustim {N_SHARDS} shardu skriptu {os.path.basename(SCRIPT)}") + procs = [] + for shard in range(1, N_SHARDS + 1): + cmd = [PYEXE, SCRIPT, "--shard", str(shard), "--of", str(N_SHARDS)] + print(f" -> shard {shard}/{N_SHARDS}: {' '.join(cmd)}") + p = subprocess.Popen(cmd, cwd=BASE, creationflags=CREATE_NEW_CONSOLE) + procs.append((shard, p)) + if shard < N_SHARDS and STAGGER_S: + time.sleep(STAGGER_S) # rozestup startu (login) + + print("Launcher: vsechny shardy spusteny, cekam na dokonceni...") + rc = {} + for shard, p in procs: + p.wait() + rc[shard] = p.returncode + print(f"Launcher: shard {shard} skoncil (returncode={p.returncode}).") + + failed = [s for s, code in rc.items() if code != 0] + if failed: + print(f"Launcher: HOTOVO, ale shardy {failed} skoncily s chybou (returncode != 0).") + else: + print("Launcher: HOTOVO — vsechny shardy uspesne dokonceny.") + + +if __name__ == "__main__": + main() diff --git a/Covance_UCO3001/save_auth.py b/Covance_UCO3001/save_auth.py new file mode 100644 index 0000000..7c0ff05 --- /dev/null +++ b/Covance_UCO3001/save_auth.py @@ -0,0 +1,42 @@ +from playwright.sync_api import sync_playwright +import os + +AUTH_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "auth.json") +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "%zT3Wqfc9)cWua5" +URL = "https://xsp.covance.com/" + + +if __name__ == "__main__": + with sync_playwright() as p: + browser = p.chromium.launch( + headless=False, + args=["--disable-blink-features=AutomationControlled"], + ) + context = browser.new_context( + user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + ) + context.add_init_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") + page = context.new_page() + + page.goto(URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email").fill(EMAIL) + page.get_by_role("button", name="Next").click() + page.wait_for_load_state("networkidle") + page.get_by_label("Password").fill(PASSWORD) + page.get_by_role("button", name="Verify").click() + print("Cekam na dokonceni prihlaseni...") + page.wait_for_url(lambda url: "code=" not in url, timeout=60000) + page.wait_for_load_state("networkidle", timeout=60000) + page.wait_for_timeout(2000) + + print(f"Dashboard URL: {page.url}") + print("Naviguj na stranku s kit inventory reportem,") + print("pak stiskni Enter pro ulozeni session...") + input() + + context.storage_state(path=AUTH_FILE) + print(f"Session ulozena: {AUTH_FILE}") + print(f"Aktualni URL: {page.url}") + browser.close() diff --git a/DRY/ae_import.py b/DRY/ae_import.py new file mode 100644 index 0000000..3212d0b --- /dev/null +++ b/DRY/ae_import.py @@ -0,0 +1,204 @@ +""" +AE Import — scrapes Adverse Events from EvaMed DRY study and upserts into MongoDB. + +Run repeatedly; only stores field-level changes (delta) in history[]. +Unique key: patient_code + event_number. +""" + +import asyncio +import re +from datetime import datetime +from pathlib import Path + +from playwright.async_api import async_playwright +from pymongo import MongoClient + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = f"{BASE_URL}?module=authentification&class=login&client=myopowers-dry" +# Direct filtered URL: CZ1 (center_id=2), Adverse Event (formtype=120), all records +LIST_URL = f"{BASE_URL}?module=monitoring&class=formslisting¢er_id=2&formtype=120&l=ALL" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" + +MONGO_HOST = "192.168.1.76" +DB_NAME = "Dry" +COLLECTION = "AE" +SESSION_FILE = Path(__file__).parent / "session.json" + +DATE_RE = re.compile(r"^(\d{2})/(\d{2})/(\d{4})$") + + +def parse_value(value): + """Parse DD/MM/YYYY → datetime, digit-only → int, else str. None if empty.""" + if not value or not value.strip(): + return None + v = value.strip() + m = DATE_RE.fullmatch(v) + if m: + return datetime(int(m.group(3)), int(m.group(2)), int(m.group(1))) + if re.fullmatch(r"\d+", v): + return int(v) + return v + + +async def do_login(page): + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator("#login").fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('input[value="Connection"]') + await page.wait_for_load_state("networkidle") + + +async def get_form_ids(page): + """Return list of {form_id, patient_code} from the filtered forms list.""" + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + + return await page.evaluate("""() => { + const results = []; + document.querySelectorAll('a[title="Open form"]').forEach(a => { + const href = a.getAttribute('href') || ''; + const m = href.match(/id=(\\d+)/); + if (!m) return; + // Patient code: "Open directory" link in the same row, text of the anchor + const row = a.closest('tr'); + const dirLink = row ? row.querySelector('a[title="Open directory"]') : null; + const patientCode = dirLink ? dirLink.innerText.trim() : ''; + results.push({ formId: m[1], patientCode: patientCode }); + }); + return results; + }""") + + +async def extract_form_fields(page, form_id): + """Navigate to AE form and extract all field values.""" + url = f"{BASE_URL}?module=dossier&class=file&event=show&id={form_id}#fiche" + await page.goto(url) + await page.wait_for_load_state("networkidle") + + raw = await page.evaluate("""() => { + const fields = {}; + document.querySelectorAll('.tableauFormulaire span.label').forEach(label => { + const key = label.innerText.trim(); + const valEl = label.nextElementSibling; + fields[key] = valEl ? valEl.innerText.trim() || null : null; + }); + return fields; + }""") + + # Parse values into correct Python types + parsed = {} + for k, v in raw.items(): + if k == '_patient_code': + parsed[k] = v + else: + parsed[k] = parse_value(v) + + parsed['_form_id'] = int(form_id) + return parsed + + + + + +def upsert_ae(collection, doc, now): + patient_code = doc.get('_patient_code') or '' + event_number = doc.get('Event Number') + + key = {"patient_code": patient_code, "event_number": event_number} + existing = collection.find_one(key) + + # Fields we track changes for (exclude internal fields) + skip = {'_patient_code', '_form_id'} + data = {k: v for k, v in doc.items() if k not in skip} + + if existing is None: + collection.insert_one({ + **key, + "_form_id": doc['_form_id'], + "data": data, + "history": [], + "first_seen_at": now, + "last_seen_at": now, + "deleted_at": None, + }) + print(f" NEW {patient_code} AE#{event_number}") + return + + # Delta: compare data with stored data + old_data = existing.get("data", {}) + changes = {} + for k in set(data) | set(old_data): + old_v = old_data.get(k) + new_v = data.get(k) + if old_v != new_v: + changes[k] = {"old": old_v, "new": new_v} + + update = {"$set": {"last_seen_at": now, "deleted_at": None}} + if changes: + update["$set"]["data"] = data + update["$push"] = {"history": {"timestamp": now, "changes": changes}} + print(f" CHANGED {patient_code} AE#{event_number} -> {list(changes.keys())}") + else: + print(f" ok {patient_code} AE#{event_number}") + + collection.update_one(key, update) + + +async def main(): + mongo = MongoClient(MONGO_HOST) + col = mongo[DB_NAME][COLLECTION] + now = datetime.now() + + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + + # Reuse saved session if available + if SESSION_FILE.exists(): + context = await browser.new_context(storage_state=str(SESSION_FILE)) + print("Loaded saved session") + else: + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + + page = await context.new_page() + + # Check if we need to log in + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + if "authentification" in page.url: + print("Logging in...") + await do_login(page) + await context.storage_state(path=str(SESSION_FILE)) + print("Session saved") + else: + print("Session valid") + + # Get all AE form IDs from filtered list + form_infos = await get_form_ids(page) + current_ids = {info['formId'] for info in form_infos} + print(f"Found {len(form_infos)} AE forms") + + # Scrape and upsert each form + for info in form_infos: + fid = info['formId'] + print(f"Scraping form {fid} ({info['patientCode']})...") + doc = await extract_form_fields(page, fid) + # Patient code comes from the list (more reliable than form page heading) + doc['_patient_code'] = info['patientCode'] + upsert_ae(col, doc, now) + + # Mark as deleted any forms that disappeared from the list + for rec in col.find({"deleted_at": None}, {"_form_id": 1, "patient_code": 1, "event_number": 1}): + if str(rec.get('_form_id', '')) not in current_ids: + col.update_one({"_id": rec["_id"]}, {"$set": {"deleted_at": now}}) + print(f" DELETED form_id={rec['_form_id']} ({rec.get('patient_code')} AE#{rec.get('event_number')})") + + await browser.close() + + mongo.close() + print(f"\nDone — {len(form_infos)} forms processed at {now.isoformat()}") + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/DRY/dd_import.py b/DRY/dd_import.py new file mode 100644 index 0000000..3baae04 --- /dev/null +++ b/DRY/dd_import.py @@ -0,0 +1,184 @@ +""" +Device Deficiency Import — scrapes DD forms from EvaMed DRY study and upserts into MongoDB. + +Run repeatedly; only stores field-level changes (delta) in history[]. +Unique key: _form_id (each DD form has a unique ID in EvaMed). +""" + +import asyncio +import re +from datetime import datetime +from pathlib import Path + +from playwright.async_api import async_playwright +from pymongo import MongoClient + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = f"{BASE_URL}?module=authentification&class=login&client=myopowers-dry" +LIST_URL = f"{BASE_URL}?module=monitoring&class=formslisting¢er_id=2&formtype=121&l=ALL" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" + +MONGO_HOST = "192.168.1.76" +DB_NAME = "Dry" +COLLECTION = "DevDeficiency" +SESSION_FILE = Path(__file__).parent / "session.json" + +DATE_RE = re.compile(r"^(\d{2})/(\d{2})/(\d{4})$") + + +def parse_value(value): + """Parse DD/MM/YYYY -> datetime, digit-only -> int, else str. None if empty.""" + if not value or not value.strip(): + return None + v = value.strip() + m = DATE_RE.fullmatch(v) + if m: + return datetime(int(m.group(3)), int(m.group(2)), int(m.group(1))) + if re.fullmatch(r"\d+", v): + return int(v) + return v + + +async def do_login(page): + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator("#login").fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('input[value="Connection"]') + await page.wait_for_load_state("networkidle") + + +async def get_form_ids(page): + """Return list of {formId, patientCode} from the filtered forms list.""" + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + + return await page.evaluate("""() => { + const results = []; + document.querySelectorAll('a[title="Open form"]').forEach(a => { + const href = a.getAttribute('href') || ''; + const m = href.match(/id=(\\d+)/); + if (!m) return; + const row = a.closest('tr'); + const dirLink = row ? row.querySelector('a[title="Open directory"]') : null; + const patientCode = dirLink ? dirLink.innerText.trim() : ''; + results.push({ formId: m[1], patientCode: patientCode }); + }); + return results; + }""") + + +async def extract_form_fields(page, form_id): + """Navigate to DD form and extract all field values.""" + url = f"{BASE_URL}?module=dossier&class=file&event=show&id={form_id}#fiche" + await page.goto(url) + await page.wait_for_load_state("networkidle") + + raw = await page.evaluate("""() => { + const fields = {}; + document.querySelectorAll('.tableauFormulaire span.label').forEach(label => { + const key = label.innerText.trim(); + const valEl = label.nextElementSibling; + fields[key] = valEl ? valEl.innerText.trim() || null : null; + }); + return fields; + }""") + + parsed = {} + for k, v in raw.items(): + parsed[k] = parse_value(v) + + parsed['_form_id'] = int(form_id) + return parsed + + +def upsert_dd(collection, doc, patient_code, now): + form_id = doc['_form_id'] + key = {"_form_id": form_id} + existing = collection.find_one(key) + + skip = {'_form_id'} + data = {k: v for k, v in doc.items() if k not in skip} + + if existing is None: + collection.insert_one({ + **key, + "patient_code": patient_code, + "data": data, + "history": [], + "first_seen_at": now, + "last_seen_at": now, + "deleted_at": None, + }) + print(f" NEW {patient_code} DD form_id={form_id}") + return + + old_data = existing.get("data", {}) + changes = {} + for k in set(data) | set(old_data): + old_v = old_data.get(k) + new_v = data.get(k) + if old_v != new_v: + changes[k] = {"old": old_v, "new": new_v} + + update = {"$set": {"last_seen_at": now, "deleted_at": None, "patient_code": patient_code}} + if changes: + update["$set"]["data"] = data + update["$push"] = {"history": {"timestamp": now, "changes": changes}} + print(f" CHANGED {patient_code} DD form_id={form_id} -> {list(changes.keys())}") + else: + print(f" ok {patient_code} DD form_id={form_id}") + + collection.update_one(key, update) + + +async def main(): + mongo = MongoClient(MONGO_HOST) + col = mongo[DB_NAME][COLLECTION] + now = datetime.now() + + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + + if SESSION_FILE.exists(): + context = await browser.new_context(storage_state=str(SESSION_FILE)) + print("Loaded saved session") + else: + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + + page = await context.new_page() + + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + if "authentification" in page.url: + print("Logging in...") + await do_login(page) + await context.storage_state(path=str(SESSION_FILE)) + print("Session saved") + else: + print("Session valid") + + form_infos = await get_form_ids(page) + current_ids = {info['formId'] for info in form_infos} + print(f"Found {len(form_infos)} DD forms") + + for info in form_infos: + fid = info['formId'] + print(f"Scraping form {fid} ({info['patientCode']})...") + doc = await extract_form_fields(page, fid) + upsert_dd(col, doc, info['patientCode'], now) + + for rec in col.find({"deleted_at": None}, {"_form_id": 1, "patient_code": 1}): + if str(rec.get('_form_id', '')) not in current_ids: + col.update_one({"_id": rec["_id"]}, {"$set": {"deleted_at": now}}) + print(f" DELETED form_id={rec['_form_id']} ({rec.get('patient_code')})") + + await browser.close() + + mongo.close() + print(f"\nDone -- {len(form_infos)} forms processed at {now.isoformat()}") + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/DRY/explore.py b/DRY/explore.py new file mode 100644 index 0000000..f38407f --- /dev/null +++ b/DRY/explore.py @@ -0,0 +1,169 @@ +"""Explorační skript — přihlášení do EvaMed CRF, načtení všech formulářů, nalezení AE.""" + +import asyncio +from playwright.async_api import async_playwright + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = "https://prod.evamed.com/etude/soft/index.php?module=authentification&class=login&client=myopowers-dry" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" +SCREENSHOTS_DIR = "screenshots" + + +async def main(): + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + page = await context.new_page() + + # 1. Login + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator('#login').fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('text=Connection') + await page.wait_for_load_state("networkidle") + print("Logged in") + + # 2. Go to Forms list + await page.goto(f"{BASE_URL}?module=monitoring&class=formslisting") + await page.wait_for_load_state("networkidle") + print("Forms list loaded (page 1)") + + # 3. Switch to ALL records + await page.select_option('select[name="l"]', 'ALL') + print("Switched to ALL, waiting for all rows to load...") + + await page.wait_for_function( + "() => document.querySelectorAll('tr').length > 3200", + timeout=120000 + ) + print(f"All rows loaded") + + # 4. Count total rows and find AE rows + stats = await page.evaluate("""() => { + const rows = document.querySelectorAll('tr'); + let totalRows = rows.length; + let aeRows = []; + let formCodes = {}; + + rows.forEach((row, idx) => { + const cells = Array.from(row.querySelectorAll('td')); + cells.forEach(cell => { + // collect all unique form codes from the Formcode column + }); + // Look for AE in any cell + const cellTexts = cells.map(c => c.innerText.trim()); + // Formcode is typically column index 8 based on the header + if (cells.length > 8) { + const formcode = cells[8]?.innerText?.trim(); + formCodes[formcode] = (formCodes[formcode] || 0) + 1; + if (formcode === 'AE') { + aeRows.push({ + rowIndex: idx, + subject: cells[0]?.innerText?.trim(), + formcode: formcode, + formName: cells[9]?.innerText?.trim(), + allCells: cellTexts, + links: Array.from(row.querySelectorAll('a')).map(a => ({ + href: a.getAttribute('href'), + title: a.title || '', + text: a.innerText.trim().substring(0, 50) + })) + }); + } + } + }); + + return { totalRows, aeCount: aeRows.length, aeRows: aeRows.slice(0, 5), formCodes }; + }""") + + print(f"Total rows: {stats['totalRows']}") + print(f"AE rows found: {stats['aeCount']}") + print(f"Form codes: {stats['formCodes']}") + + if stats['aeRows']: + print(f"\nFirst AE row sample:") + ae = stats['aeRows'][0] + print(f" Subject: {ae['subject']}") + print(f" All cells: {ae['allCells']}") + print(f" Links: {ae['links']}") + + # 5. Open first AE form + for link in ae['links']: + if link.get('href') and 'id=' in link['href']: + ae_url = link['href'] + if not ae_url.startswith('http'): + ae_url = f"https://prod.evamed.com/etude/soft/{ae_url}" + print(f"\nOpening AE form: {ae_url}") + await page.goto(ae_url) + await page.wait_for_load_state("networkidle") + await page.screenshot(path=f"{SCREENSHOTS_DIR}/05_ae_form.png", full_page=True) + print("Screenshot: AE form") + + # Extract all fields from the form + fields = await page.evaluate("""() => { + // Try input-group pattern + const groups = document.querySelectorAll('.input-group'); + let inputGroupFields = Array.from(groups).map(g => ({ + html: g.outerHTML.substring(0, 800), + text: g.innerText.trim().substring(0, 300) + })); + + // Try label/value pattern in tableauFormulaire + const tableFields = []; + document.querySelectorAll('.tableauFormulaire td, .tableauFormulaire th').forEach(el => { + tableFields.push({ + tag: el.tagName, + className: el.className, + text: el.innerText.trim().substring(0, 200) + }); + }); + + // Try all form inputs + const inputs = []; + document.querySelectorAll('input, select, textarea').forEach(el => { + inputs.push({ + type: el.type, + name: el.name, + id: el.id, + value: el.value?.substring(0, 200), + className: el.className + }); + }); + + return { inputGroupFields, tableFields: tableFields.slice(0, 50), inputs: inputs.slice(0, 50) }; + }""") + + print(f"\nInput groups: {len(fields['inputGroupFields'])}") + for i, f in enumerate(fields['inputGroupFields'][:10]): + print(f" [{i}] {f['text'][:120]}") + + print(f"\nTable fields: {len(fields['tableFields'])}") + for i, f in enumerate(fields['tableFields'][:20]): + print(f" [{i}] <{f['tag']} class='{f['className']}'> {f['text'][:100]}") + + print(f"\nForm inputs: {len(fields['inputs'])}") + for i, f in enumerate(fields['inputs'][:20]): + print(f" [{i}] {f['type']} name={f['name']} id={f['id']} val={f['value'][:60] if f['value'] else ''}") + + # Save full form HTML for analysis + form_html = await page.content() + with open(f"{SCREENSHOTS_DIR}/05_ae_form_full.html", "w", encoding="utf-8") as f: + f.write(form_html) + print("Saved: full AE form HTML") + break + else: + print("NO AE ROWS FOUND!") + await page.screenshot(path=f"{SCREENSHOTS_DIR}/04_all_forms.png", full_page=False) + # Dump all unique form codes for debugging + print("Available form codes:", list(stats['formCodes'].keys())[:30]) + + await browser.close() + print("Done") + + +if __name__ == "__main__": + import os + os.makedirs(SCREENSHOTS_DIR, exist_ok=True) + asyncio.run(main()) diff --git a/DRY/explore_dd.py b/DRY/explore_dd.py new file mode 100644 index 0000000..033710a --- /dev/null +++ b/DRY/explore_dd.py @@ -0,0 +1,165 @@ +"""Exploration script — Device Deficiency forms in EvaMed DRY study.""" + +import asyncio +import json +from pathlib import Path + +from playwright.async_api import async_playwright + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = f"{BASE_URL}?module=authentification&class=login&client=myopowers-dry" +LIST_URL = f"{BASE_URL}?module=monitoring&class=formslisting¢er_id=2&formtype=121&l=ALL" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" + +SCREENSHOTS_DIR = Path(__file__).parent / "screenshots_dd" +SESSION_FILE = Path(__file__).parent / "session.json" + + +async def main(): + SCREENSHOTS_DIR.mkdir(exist_ok=True) + + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + + if SESSION_FILE.exists(): + context = await browser.new_context(storage_state=str(SESSION_FILE)) + print("Loaded saved session") + else: + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + + page = await context.new_page() + + # Login if needed + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + if "authentification" in page.url: + print("Logging in...") + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator("#login").fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('input[value="Connection"]') + await page.wait_for_load_state("networkidle") + await context.storage_state(path=str(SESSION_FILE)) + print("Session saved") + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + else: + print("Session valid") + + await page.screenshot(path=str(SCREENSHOTS_DIR / "01_dd_listing.png"), full_page=False) + print("Screenshot: DD listing") + + # Get all DD form links from the listing + form_infos = await page.evaluate("""() => { + const results = []; + document.querySelectorAll('a[title="Open form"]').forEach(a => { + const href = a.getAttribute('href') || ''; + const m = href.match(/id=(\\d+)/); + if (!m) return; + const row = a.closest('tr'); + const dirLink = row ? row.querySelector('a[title="Open directory"]') : null; + const patientCode = dirLink ? dirLink.innerText.trim() : ''; + const cells = row ? Array.from(row.querySelectorAll('td')).map(c => c.innerText.trim()) : []; + results.push({ formId: m[1], patientCode, cells }); + }); + return results; + }""") + + print(f"\nFound {len(form_infos)} Device Deficiency forms") + for i, info in enumerate(form_infos[:5]): + print(f" [{i}] form_id={info['formId']} patient={info['patientCode']} cells={info['cells']}") + + if not form_infos: + print("NO DD FORMS FOUND!") + # Save HTML for debugging + html = await page.content() + (SCREENSHOTS_DIR / "01_dd_listing.html").write_text(html, encoding="utf-8") + await browser.close() + return + + # Open the first DD form + first = form_infos[0] + form_url = f"{BASE_URL}?module=dossier&class=file&event=show&id={first['formId']}#fiche" + print(f"\nOpening DD form: {form_url}") + await page.goto(form_url) + await page.wait_for_load_state("networkidle") + await page.screenshot(path=str(SCREENSHOTS_DIR / "02_dd_form.png"), full_page=True) + print("Screenshot: DD form") + + # Extract fields using the same pattern as AE (span.label + span.valeur) + fields_label_value = await page.evaluate("""() => { + const fields = []; + document.querySelectorAll('.tableauFormulaire span.label').forEach(label => { + const key = label.innerText.trim(); + const valEl = label.nextElementSibling; + const value = valEl ? valEl.innerText.trim() : null; + const valClass = valEl ? valEl.className : ''; + fields.push({ key, value, valueClass: valClass }); + }); + return fields; + }""") + + print(f"\n=== Fields (span.label -> span.valeur) : {len(fields_label_value)} ===") + for f in fields_label_value: + print(f" {f['key']:40s} = {f['value']}") + + # Also explore table structure for any additional patterns + table_structure = await page.evaluate("""() => { + const sections = []; + document.querySelectorAll('.tableauFormulaire').forEach((table, ti) => { + const rows = []; + table.querySelectorAll('tr').forEach((tr, ri) => { + const cells = Array.from(tr.querySelectorAll('td, th')).map(c => ({ + tag: c.tagName, + class: c.className, + colspan: c.colSpan, + text: c.innerText.trim().substring(0, 200), + childSpans: Array.from(c.querySelectorAll('span')).map(s => ({ + class: s.className, + text: s.innerText.trim().substring(0, 200) + })) + })); + if (cells.length > 0) rows.push({ rowIndex: ri, cells }); + }); + sections.push({ tableIndex: ti, rowCount: rows.length, rows: rows.slice(0, 30) }); + }); + return sections; + }""") + + print(f"\n=== Table structure: {len(table_structure)} tableauFormulaire blocks ===") + for sec in table_structure: + print(f"\n Table #{sec['tableIndex']} ({sec['rowCount']} rows):") + for row in sec['rows'][:15]: + for cell in row['cells']: + spans_info = " | ".join(f"[{s['class']}]{s['text'][:60]}" for s in cell['childSpans']) + print(f" row{row['rowIndex']} <{cell['tag']} class='{cell['class']}' colspan={cell['colspan']}> " + f"{cell['text'][:80]}") + if spans_info: + print(f" spans: {spans_info}") + + # Save full form HTML + html = await page.content() + (SCREENSHOTS_DIR / "02_dd_form.html").write_text(html, encoding="utf-8") + print("\nSaved: full DD form HTML") + + # Save extracted data as JSON for easy review + result = { + "form_id": first['formId'], + "patient_code": first['patientCode'], + "listing_cells": first['cells'], + "fields": fields_label_value, + "table_structure": table_structure, + } + (SCREENSHOTS_DIR / "dd_form_data.json").write_text( + json.dumps(result, indent=2, ensure_ascii=False), encoding="utf-8" + ) + print("Saved: dd_form_data.json") + + await browser.close() + print("\nDone") + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/DRY/explore_surgery.py b/DRY/explore_surgery.py new file mode 100644 index 0000000..921a640 --- /dev/null +++ b/DRY/explore_surgery.py @@ -0,0 +1,131 @@ +"""Exploration script — V0 Implantation Visit forms (formtype=10) in EvaMed DRY study.""" + +import asyncio +import json +from pathlib import Path + +from playwright.async_api import async_playwright + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = f"{BASE_URL}?module=authentification&class=login&client=myopowers-dry" +LIST_URL = f"{BASE_URL}?module=monitoring&class=formslisting¢er_id=2&formtype=10&l=ALL" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" + +SCREENSHOTS_DIR = Path(__file__).parent / "screenshots_surgery" +SESSION_FILE = Path(__file__).parent / "session.json" + + +async def main(): + SCREENSHOTS_DIR.mkdir(exist_ok=True) + + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + + if SESSION_FILE.exists(): + context = await browser.new_context(storage_state=str(SESSION_FILE)) + print("Loaded saved session") + else: + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + + page = await context.new_page() + + # Login if needed + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + if "authentification" in page.url: + print("Logging in...") + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator("#login").fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('input[value="Connection"]') + await page.wait_for_load_state("networkidle") + await context.storage_state(path=str(SESSION_FILE)) + print("Session saved") + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + else: + print("Session valid") + + await page.screenshot(path=str(SCREENSHOTS_DIR / "01_listing.png"), full_page=False) + print("Screenshot: listing") + + # Get all form links from the listing + form_infos = await page.evaluate("""() => { + const results = []; + document.querySelectorAll('a[title="Open form"]').forEach(a => { + const href = a.getAttribute('href') || ''; + const m = href.match(/id=(\\d+)/); + if (!m) return; + const row = a.closest('tr'); + const dirLink = row ? row.querySelector('a[title="Open directory"]') : null; + const patientCode = dirLink ? dirLink.innerText.trim() : ''; + const cells = row ? Array.from(row.querySelectorAll('td')).map(c => c.innerText.trim()) : []; + results.push({ formId: m[1], patientCode, cells }); + }); + return results; + }""") + + print(f"\nFound {len(form_infos)} Implantation Visit forms") + for i, info in enumerate(form_infos[:5]): + print(f" [{i}] form_id={info['formId']} patient={info['patientCode']} cells={info['cells']}") + + if not form_infos: + print("NO FORMS FOUND!") + html = await page.content() + (SCREENSHOTS_DIR / "01_listing.html").write_text(html, encoding="utf-8") + await browser.close() + return + + # Open the first form + first = form_infos[0] + form_url = f"{BASE_URL}?module=dossier&class=file&event=show&id={first['formId']}#fiche" + print(f"\nOpening form: {form_url}") + await page.goto(form_url) + await page.wait_for_load_state("networkidle") + await page.screenshot(path=str(SCREENSHOTS_DIR / "02_form.png"), full_page=True) + print("Screenshot: form") + + # Extract fields using span.label + span.valeur pattern + fields_label_value = await page.evaluate("""() => { + const fields = []; + document.querySelectorAll('.tableauFormulaire span.label').forEach(label => { + const key = label.innerText.trim(); + const valEl = label.nextElementSibling; + const value = valEl ? valEl.innerText.trim() : null; + const valClass = valEl ? valEl.className : ''; + fields.push({ key, value, valueClass: valClass }); + }); + return fields; + }""") + + print(f"\n=== Fields (span.label -> span.valeur) : {len(fields_label_value)} ===") + for f in fields_label_value: + key = f['key'].encode('ascii', 'replace').decode() + val = (f['value'] or '').encode('ascii', 'replace').decode() + print(f" {key:50s} = {val}") + + # Save full form HTML + html = await page.content() + (SCREENSHOTS_DIR / "02_form.html").write_text(html, encoding="utf-8") + print("\nSaved: full form HTML") + + # Save extracted data as JSON + result = { + "form_id": first['formId'], + "patient_code": first['patientCode'], + "listing_cells": first['cells'], + "fields": fields_label_value, + } + (SCREENSHOTS_DIR / "form_data.json").write_text( + json.dumps(result, indent=2, ensure_ascii=False), encoding="utf-8" + ) + print("Saved: form_data.json") + + await browser.close() + print("\nDone") + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/DRY/formtype_selectors.py b/DRY/formtype_selectors.py new file mode 100644 index 0000000..1e7656d --- /dev/null +++ b/DRY/formtype_selectors.py @@ -0,0 +1,108 @@ +""" +EvaMed DRY study — form type selectors. + +Usage: + Filter URL: formtype={value} + Checkbox: #formtype_{value} + +Example: + await page.check('#formtype_120') # Adverse Event + await page.check('#formtype_121') # Device Deficiency +""" + +FORMTYPES = { + 1: "Eligibility Criteria", + 8: "V-3 : Baseline Within 3 weeks before the implant procedure", + 122: "V-3 : Day 1 - Voiding diary", + 123: "V-3 : Day 2 - Voiding diary", + 124: "V-3 : Day 3 - Voiding diary", + 2: "V-3 : ICIQ-MLUTS", + 3: "V-3 : ICIQ-LUTSQol", + 4: "V-3 : EQ-5D-5L", + 5: "V-3 : MSHQ", + 9: "V-1 : Phone Call (1 Week before Implantation)", + 10: "V0 : Implantation Visit", + 11: "DV : Discharge Visit", + 12: "V1 : 6 Weeks Post-Operative Period (Device Activation)", + 129: "V1 : Device Activation", + 125: "V1 : Physician Usability Questionnaire", + 13: "V2 : 8 Weeks Post-Operative Period", + 130: "V2 : Device Adjustment", + 127: "V2 : Physician Usability Questionnaire", + 14: "V3 : 3 Months Post-Operative Period", + 131: "V3 : Device Adjustment", + 128: "V3 : Physician Usability Questionnaire", + 15: "V4 - Phone Call (10 Weeks after device activation)", + 16: "V5 : 3 Months Post-Device Activation", + 138: "V5 : Day 1 - Voiding diary", + 139: "V5 : Day 2 - Voiding diary", + 140: "V5 : Day 3 - Voiding diary", + 132: "V5 : Device Adjustment", + 135: "V5 : Unlocking additional modes", + 17: "V5 : ICIQ-MLUTS", + 18: "V5 : ICIQ-LUTSQol", + 19: "V5 : EQ-5D-5L", + 20: "V5 : MSHQ", + 21: "V5 : PGI-I", + 22: "V5 : Subject Usability Questionnaire", + 23: "V5 : Physician Usability Questionnaire", + 24: "V6 : Phone Call (22 Weeks after Device activation)", + 25: "V7 : 6 Months Post-Device Activation", + 142: "V7 : Day 1 - Voiding diary", + 143: "V7 : Day 2 - Voiding diary", + 144: "V7 : Day 3 - Voiding diary", + 150: "V7 : Device Adjustment", + 180: "V7 - Unlocking additional mode", + 26: "V7 : ICIQ-MLUTS", + 27: "V7 : ICIQ-LUTSQol", + 29: "V7 : EQ-5D-5L", + 31: "V7 : MSHQ", + 32: "V7 : PGI-I", + 33: "V7 : Subject Usability Questionnaire", + 34: "V7 : Physician Usability Questionnaire", + 35: "V8 : Phone Call (46 Weeks after Device activation)", + 36: "V9 : 12 Months Post-Device Activation", + 146: "V9 : Day 1 - Voiding diary", + 147: "V9 : Day 2 - Voiding diary", + 148: "V9 : Day 3 - Voiding diary", + 151: "V9 : Device Adjustment", + 181: "V9 - Unlocking additional mode", + 37: "V9 : ICIQ-MLUTS", + 38: "V9 : ICIQ-LUTSQol", + 39: "V9 : EQ-5D-5L", + 40: "V9 : MSHQ", + 41: "V9 : PGI-I", + 42: "V9 : Subject Usability Questionnaire", + 43: "V9 : Physician Usability Questionnaire", + 44: "V10 : Long-term annual Follow-up", + 153: "V10 : Device Adjustment", + 162: "V10 : Unlocking additional modes", + 45: "V10 : ICIQ-MLUTS", + 47: "V10 : ICIQ-LUTSQol", + 48: "V10 : EQ-5D-5L", + 49: "V10 : MSHQ", + 50: "V10 : PGI-I", + 51: "V10 : Subject Usability Questionnaire", + 52: "V10 : Physician Usability Questionnaire", + 53: "V11 : Long-term annual Follow-up", + 154: "V11 : Device Adjustment", + 163: "V11 : Unlocking additional modes", + 54: "V11 : ICIQ-MLUTS", + 55: "V11 : ICIQ-LUTSQol", + 56: "V11 : EQ-5D-5L", + 57: "V11 : MSHQ", + 58: "V11 : PGI-I", + 59: "V11 : Subject Usability Questionnaire", + 60: "V11 : Physician Usability Questionnaire", + 119: "UV : Unscheduled Visit", + 183: "UV : Voiding diary - Day 1 to Day 3 (if applicable)", + 173: "UV : Device Adjustment", + 174: "UV : Unlocking additional modes", + 175: "UV : Physician Usability Questionnaire", + 177: "Concomitant Medication", + 120: "Adverse Event", + 121: "Device Deficiency", + 178: "Deviation", + 182: "Subsequent surgery", + 176: "Study Termination", +} diff --git a/DRY/screenshots/01_login_page.png b/DRY/screenshots/01_login_page.png new file mode 100644 index 0000000..034ebee Binary files /dev/null and b/DRY/screenshots/01_login_page.png differ diff --git a/DRY/screenshots/02_login_filled.png b/DRY/screenshots/02_login_filled.png new file mode 100644 index 0000000..cae7645 Binary files /dev/null and b/DRY/screenshots/02_login_filled.png differ diff --git a/DRY/screenshots/03_after_login.png b/DRY/screenshots/03_after_login.png new file mode 100644 index 0000000..85ca051 Binary files /dev/null and b/DRY/screenshots/03_after_login.png differ diff --git a/DRY/screenshots/04_forms_listing.png b/DRY/screenshots/04_forms_listing.png new file mode 100644 index 0000000..7b8fbd6 Binary files /dev/null and b/DRY/screenshots/04_forms_listing.png differ diff --git a/DRY/screenshots/04_forms_table.html b/DRY/screenshots/04_forms_table.html new file mode 100644 index 0000000..4411576 --- /dev/null +++ b/DRY/screenshots/04_forms_table.html @@ -0,0 +1,24 @@ + + + + + + + +
+ + Download
+ MS Excel 2007 (.xlsx)
+
+ + Download
+ MS Excel 5 (.xls)
+
+ + Download
+ CSV (.csv)
+
+ + Download
+ XML (.xml)
+
\ No newline at end of file diff --git a/DRY/screenshots_dd/01_dd_listing.png b/DRY/screenshots_dd/01_dd_listing.png new file mode 100644 index 0000000..7710c04 Binary files /dev/null and b/DRY/screenshots_dd/01_dd_listing.png differ diff --git a/DRY/screenshots_dd/02_dd_form.html b/DRY/screenshots_dd/02_dd_form.html new file mode 100644 index 0000000..a9ed197 --- /dev/null +++ b/DRY/screenshots_dd/02_dd_form.html @@ -0,0 +1,3256 @@ + + 1data - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ loading... +
+ Cancel +
+ + +
+ +
+ + 1data, part of 1med digital solutions.
+ + +How to bookmark How to bookmark + + + + -->Contact 1data + + + + A.A.A + + + + + + +    +
EN
+ + +
+ + +
+ +
+ + + +
+
+
+ + + + +myopowers-dry + +

MYOPOWERS - DRY + + +

+ + +
+ +
+
+ + +
+ + + + + + + T + + + + + + + + + + + + + + CZ1 - Fakultní Thomayerova nemocnice + + + + vbuzalka - + + Log out + + +
+ + Preferences + +   + Last connection: 2026-05-27 10:42:53 + +
+
+ +
+ + + + + +
+
=
+ +
+ + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+ +
+

CZ1-01

+

H Date of birth : 05/1955 / Center : CZ1 - Fakultní Thomayerova nemocnice

+
+ Action patient + + +
+ + + + + + + + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + Display all + x + +
+ + + + + + + +
+
+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + + + +
+
+ + +
Menu
+
+ + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + 5 + Remove form acceptation + + + + +
+ +

+ + 4 + Device Deficiency - 23/02/2025 + + + +

+ + + + + +
+ + + +
+
+

Device Deficiency

+
+
+
+
+
+
+Date of Onset  + 23/02/2025 +
+
+
+
+
+
+Date device deficiency discovered by site  + 04/03/2025 +
+
+
+
+
+
+
Title of device deficiency  +
+
+
+
+
+
+
+
+1 - Type of Device Deficiency   + Malfunction (failure of device to operate as intended when used per IFU and protocol) +
+
+
+
+
+
+
Specify other type of device deficiency  +
+
+
+
+
+
+
+
+2 - Description of Event  + Patient reported to site device malfunction. Device switched to emergency regime and kept being permanently open. It is not possible to control device. The sponsor informed abou the deficiency immediately. Patient has no pain, no urine retention, as per X-ray, positioning of control unit and cuff is correct. +
+
+
+
+
+
+
+
+3 - Information about Device(s) (name, lot and serial number)   + Remote control 052300185, control unit 210011, cuff 22-0224 +
+
+
+
+
+
+
+
+4 - Consequence of Device Deficiency  + Led to adverse event +
+
+
+
+
+
+
Lead to AE number  +
+
+
+
+
+

Action(s) taken

+
+
+
+
+
+
+
+Action(s) taken  + Other +
+
+

Other action(s)

+
+
+
+
+
+
+If other action(s), specify  + Implementation of the new sofware leading to continence, time to activation emergency regime increased from 8 to 12hours +
+
+
+
+
+
+

Event Outcome

+
+
+
+
+
+
+
+Event Outcome  + Resolved without Sequelae +
+
+
+
+
+
+Event End Date  + 07/04/2025 +
+
+
+

+ + + + +
+ +
+ +
+ +
+ +

+ +
+ +
+ + + up + Top + + + + +
+ + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ +
+ +
+ +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/DRY/screenshots_dd/02_dd_form.png b/DRY/screenshots_dd/02_dd_form.png new file mode 100644 index 0000000..e65a5cc Binary files /dev/null and b/DRY/screenshots_dd/02_dd_form.png differ diff --git a/DRY/screenshots_dd/dd_form_data.json b/DRY/screenshots_dd/dd_form_data.json new file mode 100644 index 0000000..d22547f --- /dev/null +++ b/DRY/screenshots_dd/dd_form_data.json @@ -0,0 +1,107 @@ +{ + "form_id": "461", + "patient_code": "CZ1-01", + "listing_cells": [ + "CZ1-01", + "Male", + "Subject", + "16/02/2024", + "28/02/2024", + "17/04/2024", + "CZ1 - Fakultní Thomayerova nemocnice", + "DD", + "Device Deficiency", + "0", + "0", + "30", + "", + "", + "", + "23/02/2025", + "Accepted", + "", + "", + "0", + "100", + "0", + "", + "", + "1", + "Open", + "" + ], + "fields": [ + { + "key": "Date of Onset", + "value": "23/02/2025", + "valueClass": "valeur DTEONSET" + }, + { + "key": "Date device deficiency discovered by site", + "value": "04/03/2025", + "valueClass": "valeur DTEDEVIC" + }, + { + "key": "Title of device deficiency", + "value": null, + "valueClass": "" + }, + { + "key": "1 - Type of Device Deficiency", + "value": "Malfunction (failure of device to operate as intended when used per IFU and protocol)", + "valueClass": "valeur " + }, + { + "key": "Specify other type of device deficiency", + "value": null, + "valueClass": "" + }, + { + "key": "2 - Description of Event", + "value": "Patient reported to site device malfunction. Device switched to emergency regime and kept being permanently open. It is not possible to control device. The sponsor informed abou the deficiency immediately. Patient has no pain, no urine retention, as per X-ray, positioning of control unit and cuff is correct.", + "valueClass": "valeur DESC" + }, + { + "key": "3 - Information about Device(s) (name, lot and serial number)", + "value": "Remote control 052300185, control unit 210011, cuff 22-0224", + "valueClass": "valeur INFO" + }, + { + "key": "4 - Consequence of Device Deficiency", + "value": "Led to adverse event", + "valueClass": "valeur " + }, + { + "key": "Lead to AE number", + "value": null, + "valueClass": "" + }, + { + "key": "Action(s) taken", + "value": "Other", + "valueClass": "valeur " + }, + { + "key": "If other action(s), specify", + "value": "Implementation of the new sofware leading to continence, time to activation emergency regime increased from 8 to 12hours", + "valueClass": "valeur ACTIONP" + }, + { + "key": "Event Outcome", + "value": "Resolved without Sequelae", + "valueClass": "valeur " + }, + { + "key": "Event End Date", + "value": "07/04/2025", + "valueClass": "valeur DTEEND" + } + ], + "table_structure": [ + { + "tableIndex": 0, + "rowCount": 0, + "rows": [] + } + ] +} \ No newline at end of file diff --git a/DRY/screenshots_surgery/01_listing.png b/DRY/screenshots_surgery/01_listing.png new file mode 100644 index 0000000..7d34e29 Binary files /dev/null and b/DRY/screenshots_surgery/01_listing.png differ diff --git a/DRY/screenshots_surgery/02_form.html b/DRY/screenshots_surgery/02_form.html new file mode 100644 index 0000000..8e0e35c --- /dev/null +++ b/DRY/screenshots_surgery/02_form.html @@ -0,0 +1,4455 @@ + + 1data - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ loading... +
+ Cancel +
+ + +
+ +
+ + 1data, part of 1med digital solutions.
+ + +How to bookmark How to bookmark + + + + -->Contact 1data + + + + A.A.A + + + + + + +    +
EN
+ + +
+ + +
+ +
+ + + +
+
+
+ + + + +myopowers-dry + +

MYOPOWERS - DRY + + +

+ + +
+ +
+
+ + +
+ + + + + + + T + + + + + + + + + + + + + + CZ1 - Fakultní Thomayerova nemocnice + + + + vbuzalka - + + Log out + + +
+ + Preferences + +   + Last connection: 2026-05-27 10:42:53 + +
+
+ +
+ + + + + +
+
=
+ +
+ + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+ +
+

CZ1-01

+

H Date of birth : 05/1955 / Center : CZ1 - Fakultní Thomayerova nemocnice

+
+ Action patient + + +
+ + + + + + + + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + Display all + x + +
+ + + + + + + +
+
+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + + + +
+
+ + +
Menu
+
+ + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + 5 + Remove form acceptation + + + + +
+ +

+ + 4 + V0 : Implantation Visit (or implantation attempt) - 28/02/2024 + + + +

+ + + + + +
+ + + +
+
+
+
+
+
+Date of surgery (or date of the attempt)  + 28/02/2024 +
+
+

Implantation

+
+
+
+
+
+
+
+Has the patient been implanted with ARTUS®?  + Yes +
+
+
+
+
+
+
How many implantation attempts have there been?  +
+
+
+
+
+
+
+
Please explain why and describe the difficulty(ies) experienced:  +
+
+
+
+
+

1) Before starting the surgical procedure

+
+
+
+
+
+
+
+The results of the 24-hour Pad Weight Test have been entered in the Baseline visit to validate the inclusion of the subject  + Yes +
+
+

Clinical Examination

+
+
+
+
+
+
+
+Was the clinical examination performed  + Yes +
+
+

Vital sign measurements

+
+
+
+
+
+
+Exam date  + 27/02/2024 +
+
+
+
+
+
+
+Weight  + 114 +   kg +
+
+
+
+
+
+
+
+Body Mass Index  + 32.3 +   kg/cm² +
+
+
+
+
+
+
+
+
+
Explain why clinical examination was not performed  +
+
+
+
+
+
+
+

2) Preparation for surgical procedure

+
+
+

1. Device preparation

+
+
+

1.1 Charge of the Remote controls

+
+ +
+
+
+

1.2 Start procedure

+
+
+

+
+ + +
+
+
+
+
+

1.3 Pairing of the Remote Control with Control Unit

+
+
+

+
+ + +
+
+
+
+
+
+
+

2. Calibration procedure

+
+
+

+
+ + +
+
+
+
+
+
+
+

2) Implantation procedure

+
+
+

At the end of procedure, material used

+
+
+
+
+
+
+
+LOT of the ARTUS® Cuff S  + 22-0224 +
+
+
+
+
+
+
+
+SN of the ARTUS® Control Unit  + 210011 +
+
+
+
+
+
+
+
+SN of the ARTUS® Remote Control #1  + 052300185 +
+
+
+
+
+
+
+
SN of the ARTUS® Remote Control #2  +
+
+
+
+
+

Material Back-up

+
+
+
+
+
+
+
+The Back-up Material was used  + No +
+
+

+
+ + + +
+
+
+
+
+

1. Surgery

+
+
+

1.1 Duration of procedure

+
+
+
+
+
+
+
+Beginning of the surgery, start of the incision (hh:mm)  + 10:00 +
+
+
+
+
+
+
+
+End of the surgery, closure of the incision (hh:mm)  + 11:15 +
+
+
+
+
+

1.2 Anesthesia

+
+
+
+
+
+
+
+What type of anesthesia performed ?  + General +
+
+
+
+

1.3 Foley catheter insertion

+
+
+
+
+
+
+
+Size of Foley catheter used  + 14 CH +
+
+
+
+

1.4 Dissection

+
+
+
+
+
+
+
Did a surgical dissection of the bulbospongiosus muscle has been performed?  +
+
+
+
+

1.5 Cuff implantation

+
+
+
+
+
+
+
+Locking Position of the cuff around the urethra  + 1 +
+
+
+
+
+
+
Tightening of the urethra  +
+
+
+
+
+
+
+If you have encountered difficulties, please describe the difficulty(ies) experienced and alternative or solution provided  + no difficulties +
+
+
+
+
+
+
+
Comment  +
+
+
+
+
+

1.6 Surgery test procedure

+
+
+
+
+
+
+
+All steps for the "Surgery Test procedure" have been completed  + Yes +
+
+

+
+
+
+
+
+
+
Describe the difficulty(ies) experienced and alternative or solution provided  +
+
+
+
+
+
+
+
Comments  +
+
+
+
+
+
+
+

1.7 Implantation of the Control Unit

+
+
+
+
+
+
+
+All steps for the "Implantation of the control unit" have been completed  + Yes +
+
+

+
+
+
+
+
+
+
Describe the difficulty(ies) experienced and alternative or solution provided  +
+
+
+
+
+
+
+
Comments  +
+
+
+
+
+
+
+

1.8 Completion of implantation

+
+
+
+
+
+
+
+All steps for the "Completion of implantation" have been completed  + Yes +
+
+

+
+
+
+
+
+
+
Describe the difficulty(ies) experienced and alternative or solution provided  +
+
+
+
+
+
+
+
Comments  +
+
+
+
+
+
+
+

1.9 Pictures of the final position of the Cuff around the urethra

+
+
+
+
+
+
+
+Was a Picture of the Cuff final position around the urethra taken intra-operatively  + Yes +
+
+
+
+

1.10 Picture of the final position of the Control Unit

+
+
+
+
+
+
+
+Was a Picture of the Control Unit final position taken intra-operatively  + Yes +
+
+
+
+
+
+

Pelvis radiography Front and Profil (to ensure proper positioning of the Control Unit implanted)

+
+

Radiography immediately post-surgical procedure

+
+
+
+
+
+
+
+Was the Pelvis radiography performed?   + Yes +
+
+
+
+
+
+Date of most recent pelvis radiography  + 04/03/2024 +
+
+
+
+
+
+
+

Usability Questionnaire Surgeon (Intra-operative)

+
+
+
+
+
+
+
+Was the Usability Questionnaire Surgeon (intra-operative) performed  + Yes +
+
+
+
+
+
+
Explain why Usability Questionnaire Surgeon was not performed  +
+
+
+

+
+
+

Artus® implantation

+
+

Concerning the implantation of the ARTUS device, do you agree with the following affirmations

+
+
+
+
+
+
+
+1. The implantation of Artus® is technically simple  + 2 : Agree +
+
+
+
+
+
+
+2. The handling of the shell screwed on the end of the transmission cable is easy  + 2 : Agree +
+
+
+
+
+
+
+3. The cuff is easy to insert around the urethra  + 2 : Agree +
+
+
+
+
+
+
+4. Positioning the Cuff around the urethra is easy to perform  + 3 : Not sure +
+
+
+
+
+
+
+5. The Cuff loop around the urethra is easy to adjust  + 2 : Agree +
+
+
+
+
+
+
+6. The implantation technique of the Control Unit in the abdominal wall is easy to perform  + 2 : Agree +
+
+
+
+
+
+
+7. The fixing technique for the Control Unit in the abdominal wall is easy to perform  + 2 : Agree +
+
+
+
+
+
+
+8. The connection of the transmission cable and the Control Unit is easy to perform  + 2 : Agree +
+
+
+
+
+

Using the remote control in operative period

+
+

Concerning the intraoperative use of the remote control, do you agree with the following affirmations

+
+
+
+
+
+
+
+9. The remote control is easy to manipulate in the sterile bag  + 2 : Agree +
+
+
+
+
+
+
+10. The sequence to be carried out to reach the screen proposing the password to access the Physician interface is simple  + 2 : Agree +
+
+
+
+
+
+
+11. Matching between the Remote Control and the implanted Control Unit is easy to perform  + 2 : Agree +
+
+
+
+
+
+
+12. Visual evaluation of the correct operation of the device (Surgery mode) is easy to perform  + 2 : Agree +
+
+
+
+
+
+
+
+
+
+
+
+Do you have any comments regarding the intra-operative ARTUS implant and its use  + No +
+
+
+
+
+
+
Please complete your comment below  +
+
+
+
+
+

Device deficiency

+
+
+
+
+
+
+
+Device deficiency(ies) occurred during the procedure  + No +
+
+
+
+

Concomitant medications

+
+
+
+
+
+
+
+Is the subject receiving any concomitant medication  + Yes +
+
+
+
+

Adverse events

+
+
+
+
+
+
+
+Did new adverse event(s) occur since the informed consent signature  + No +
+
+
+

+ + + + +
+ +
+ +
+ +
+ +

+ +
+ +
+ + + up + Top + + + + +
+ + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ +
+ +
+ +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/DRY/screenshots_surgery/02_form.png b/DRY/screenshots_surgery/02_form.png new file mode 100644 index 0000000..1227826 Binary files /dev/null and b/DRY/screenshots_surgery/02_form.png differ diff --git a/DRY/screenshots_surgery/form_data.json b/DRY/screenshots_surgery/form_data.json new file mode 100644 index 0000000..0cb0029 --- /dev/null +++ b/DRY/screenshots_surgery/form_data.json @@ -0,0 +1,385 @@ +{ + "form_id": "10", + "patient_code": "CZ1-01", + "listing_cells": [ + "CZ1-01", + "Male", + "Subject", + "16/02/2024", + "28/02/2024", + "17/04/2024", + "CZ1 - Fakultní Thomayerova nemocnice", + "VISIT0", + "V0 : Implantation Visit", + "0", + "1", + "1", + "", + "", + "", + "28/02/2024", + "Accepted", + "", + "", + "0", + "", + "0", + "", + "", + "1", + "Open", + "" + ], + "fields": [ + { + "key": "Date of surgery (or date of the attempt)", + "value": "28/02/2024", + "valueClass": "valeur DTET0" + }, + { + "key": "Has the patient been implanted with ARTUS®?", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "How many implantation attempts have there been?", + "value": null, + "valueClass": "" + }, + { + "key": "Please explain why and describe the difficulty(ies) experienced:", + "value": null, + "valueClass": "" + }, + { + "key": "The results of the 24-hour Pad Weight Test have been entered in the Baseline visit to validate the inclusion of the subject", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Was the clinical examination performed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Exam date", + "value": "27/02/2024", + "valueClass": "valeur DTEEXAM" + }, + { + "key": "Weight", + "value": "114   kg", + "valueClass": "valeur WGT" + }, + { + "key": "Body Mass Index", + "value": "32.3   kg/cm²", + "valueClass": "valeur BMI" + }, + { + "key": "Explain why clinical examination was not performed", + "value": null, + "valueClass": "" + }, + { + "key": "The charge of the TWO Remote Controls was done correctly before the surgery (for 5 hours each)", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "All steps for the \"Start procedure\" of the two Remote Controls have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "All steps for \"Pairing procedure\" of the Remote Control and the Control Unit have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "All the steps of the 'Calibration procedure' have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "LOT of the ARTUS® Cuff S", + "value": "22-0224", + "valueClass": "valeur CUFF" + }, + { + "key": "SN of the ARTUS® Control Unit", + "value": "210011", + "valueClass": "valeur CONTSN" + }, + { + "key": "SN of the ARTUS® Remote Control #1", + "value": "052300185", + "valueClass": "valeur REMOSN" + }, + { + "key": "SN of the ARTUS® Remote Control #2", + "value": null, + "valueClass": "" + }, + { + "key": "The Back-up Material was used", + "value": "No", + "valueClass": "valeur " + }, + { + "key": "LOT of the ARTUS® Cuff S", + "value": null, + "valueClass": "" + }, + { + "key": "SN of the ARTUS® Control Unit", + "value": null, + "valueClass": "" + }, + { + "key": "SN of the ARTUS® Remote Control", + "value": null, + "valueClass": "" + }, + { + "key": "Beginning of the surgery, start of the incision (hh:mm)", + "value": "10:00", + "valueClass": "valeur START" + }, + { + "key": "End of the surgery, closure of the incision (hh:mm)", + "value": "11:15", + "valueClass": "valeur STOP" + }, + { + "key": "What type of anesthesia performed ?", + "value": "General", + "valueClass": "valeur " + }, + { + "key": "Size of Foley catheter used", + "value": "14 CH", + "valueClass": "valeur " + }, + { + "key": "Did a surgical dissection of the bulbospongiosus muscle has been performed?", + "value": null, + "valueClass": "" + }, + { + "key": "Locking Position of the cuff around the urethra", + "value": "1", + "valueClass": "valeur " + }, + { + "key": "Tightening of the urethra", + "value": null, + "valueClass": "" + }, + { + "key": "If you have encountered difficulties, please describe the difficulty(ies) experienced and alternative or solution provided", + "value": "no difficulties", + "valueClass": "valeur ENCOUNT" + }, + { + "key": "Comment", + "value": null, + "valueClass": "" + }, + { + "key": "All steps for the \"Surgery Test procedure\" have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "All steps for the \"Implantation of the control unit\" have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "All steps for the \"Completion of implantation\" have been completed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Describe the difficulty(ies) experienced and alternative or solution provided", + "value": null, + "valueClass": "" + }, + { + "key": "Comments", + "value": null, + "valueClass": "" + }, + { + "key": "Was a Picture of the Cuff final position around the urethra taken intra-operatively", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Was a Picture of the Control Unit final position taken intra-operatively", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Was the Pelvis radiography performed?", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Date of most recent pelvis radiography", + "value": "04/03/2024", + "valueClass": "valeur DTEPEL" + }, + { + "key": "Was the Usability Questionnaire Surgeon (intra-operative) performed", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Explain why Usability Questionnaire Surgeon was not performed", + "value": null, + "valueClass": "" + }, + { + "key": "1. The implantation of Artus® is technically simple", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "2. The handling of the shell screwed on the end of the transmission cable is easy", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "3. The cuff is easy to insert around the urethra", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "4. Positioning the Cuff around the urethra is easy to perform", + "value": "3 : Not sure", + "valueClass": "valeur " + }, + { + "key": "5. The Cuff loop around the urethra is easy to adjust", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "6. The implantation technique of the Control Unit in the abdominal wall is easy to perform", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "7. The fixing technique for the Control Unit in the abdominal wall is easy to perform", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "8. The connection of the transmission cable and the Control Unit is easy to perform", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "9. The remote control is easy to manipulate in the sterile bag", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "10. The sequence to be carried out to reach the screen proposing the password to access the Physician interface is simple", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "11. Matching between the Remote Control and the implanted Control Unit is easy to perform", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "12. Visual evaluation of the correct operation of the device (Surgery mode) is easy to perform", + "value": "2 : Agree", + "valueClass": "valeur " + }, + { + "key": "Do you have any comments regarding the intra-operative ARTUS implant and its use", + "value": "No", + "valueClass": "valeur " + }, + { + "key": "Please complete your comment below", + "value": null, + "valueClass": "" + }, + { + "key": "Device deficiency(ies) occurred during the procedure", + "value": "No", + "valueClass": "valeur " + }, + { + "key": "Is the subject receiving any concomitant medication", + "value": "Yes", + "valueClass": "valeur " + }, + { + "key": "Did new adverse event(s) occur since the informed consent signature", + "value": "No", + "valueClass": "valeur " + } + ] +} \ No newline at end of file diff --git a/DRY/surgery_import.py b/DRY/surgery_import.py new file mode 100644 index 0000000..7a2854d --- /dev/null +++ b/DRY/surgery_import.py @@ -0,0 +1,185 @@ +""" +Surgery (V0 Implantation Visit) Import — scrapes from EvaMed DRY study and upserts into MongoDB. + +Run repeatedly; only stores field-level changes (delta) in history[]. +Unique key: _form_id (each form has a unique ID in EvaMed). +MongoDB: db=Dry, collection=Surgery +""" + +import asyncio +import re +from datetime import datetime +from pathlib import Path + +from playwright.async_api import async_playwright +from pymongo import MongoClient + +BASE_URL = "https://prod.evamed.com/etude/soft/index.php" +LOGIN_URL = f"{BASE_URL}?module=authentification&class=login&client=myopowers-dry" +LIST_URL = f"{BASE_URL}?module=monitoring&class=formslisting¢er_id=2&formtype=10&l=ALL" +LOGIN = "vbuzalka" +PASSWORD = "Vlado9674+" + +MONGO_HOST = "192.168.1.76" +DB_NAME = "Dry" +COLLECTION = "Surgery" +SESSION_FILE = Path(__file__).parent / "session.json" + +DATE_RE = re.compile(r"^(\d{2})/(\d{2})/(\d{4})$") + + +def parse_value(value): + """Parse DD/MM/YYYY -> datetime, digit-only -> int, else str. None if empty.""" + if not value or not value.strip(): + return None + v = value.strip() + m = DATE_RE.fullmatch(v) + if m: + return datetime(int(m.group(3)), int(m.group(2)), int(m.group(1))) + if re.fullmatch(r"\d+", v): + return int(v) + return v + + +async def do_login(page): + await page.goto(LOGIN_URL) + await page.wait_for_load_state("networkidle") + await page.locator("#login").fill(LOGIN) + await page.locator('input[type="password"]').first.fill(PASSWORD) + await page.click('input[value="Connection"]') + await page.wait_for_load_state("networkidle") + + +async def get_form_ids(page): + """Return list of {formId, patientCode} from the filtered forms list.""" + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + + return await page.evaluate("""() => { + const results = []; + document.querySelectorAll('a[title="Open form"]').forEach(a => { + const href = a.getAttribute('href') || ''; + const m = href.match(/id=(\\d+)/); + if (!m) return; + const row = a.closest('tr'); + const dirLink = row ? row.querySelector('a[title="Open directory"]') : null; + const patientCode = dirLink ? dirLink.innerText.trim() : ''; + results.push({ formId: m[1], patientCode: patientCode }); + }); + return results; + }""") + + +async def extract_form_fields(page, form_id): + """Navigate to form and extract all field values.""" + url = f"{BASE_URL}?module=dossier&class=file&event=show&id={form_id}#fiche" + await page.goto(url) + await page.wait_for_load_state("networkidle") + + raw = await page.evaluate("""() => { + const fields = {}; + document.querySelectorAll('.tableauFormulaire span.label').forEach(label => { + const key = label.innerText.trim(); + const valEl = label.nextElementSibling; + fields[key] = valEl ? valEl.innerText.trim() || null : null; + }); + return fields; + }""") + + parsed = {} + for k, v in raw.items(): + parsed[k] = parse_value(v) + + parsed['_form_id'] = int(form_id) + return parsed + + +def upsert(collection, doc, patient_code, now): + form_id = doc['_form_id'] + key = {"_form_id": form_id} + existing = collection.find_one(key) + + skip = {'_form_id'} + data = {k: v for k, v in doc.items() if k not in skip} + + if existing is None: + collection.insert_one({ + **key, + "patient_code": patient_code, + "data": data, + "history": [], + "first_seen_at": now, + "last_seen_at": now, + "deleted_at": None, + }) + print(f" NEW {patient_code} Surgery form_id={form_id}") + return + + old_data = existing.get("data", {}) + changes = {} + for k in set(data) | set(old_data): + old_v = old_data.get(k) + new_v = data.get(k) + if old_v != new_v: + changes[k] = {"old": old_v, "new": new_v} + + update = {"$set": {"last_seen_at": now, "deleted_at": None, "patient_code": patient_code}} + if changes: + update["$set"]["data"] = data + update["$push"] = {"history": {"timestamp": now, "changes": changes}} + print(f" CHANGED {patient_code} Surgery form_id={form_id} -> {list(changes.keys())}") + else: + print(f" ok {patient_code} Surgery form_id={form_id}") + + collection.update_one(key, update) + + +async def main(): + mongo = MongoClient(MONGO_HOST) + col = mongo[DB_NAME][COLLECTION] + now = datetime.now() + + async with async_playwright() as p: + browser = await p.chromium.launch(headless=False) + + if SESSION_FILE.exists(): + context = await browser.new_context(storage_state=str(SESSION_FILE)) + print("Loaded saved session") + else: + context = await browser.new_context(viewport={"width": 1400, "height": 900}) + + page = await context.new_page() + + await page.goto(LIST_URL) + await page.wait_for_load_state("networkidle") + if "authentification" in page.url: + print("Logging in...") + await do_login(page) + await context.storage_state(path=str(SESSION_FILE)) + print("Session saved") + else: + print("Session valid") + + form_infos = await get_form_ids(page) + current_ids = {info['formId'] for info in form_infos} + print(f"Found {len(form_infos)} Surgery forms") + + for info in form_infos: + fid = info['formId'] + print(f"Scraping form {fid} ({info['patientCode']})...") + doc = await extract_form_fields(page, fid) + upsert(col, doc, info['patientCode'], now) + + for rec in col.find({"deleted_at": None}, {"_form_id": 1, "patient_code": 1}): + if str(rec.get('_form_id', '')) not in current_ids: + col.update_one({"_id": rec["_id"]}, {"$set": {"deleted_at": now}}) + print(f" DELETED form_id={rec['_form_id']} ({rec.get('patient_code')})") + + await browser.close() + + mongo.close() + print(f"\nDone -- {len(form_infos)} forms processed at {now.isoformat()}") + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/Deviations/PANORAMA Deviations Report.csv b/Deviations/PANORAMA Deviations Report.csv new file mode 100644 index 0000000..e1cf323 Binary files /dev/null and b/Deviations/PANORAMA Deviations Report.csv differ diff --git a/EmailsImport/.env b/EmailsImport/.env new file mode 100644 index 0000000..e70d6a6 --- /dev/null +++ b/EmailsImport/.env @@ -0,0 +1,3 @@ +DROPBOX_APP_KEY=4scysbfek6ddwwm +DROPBOX_APP_SECRET=gn9ph1q3oro2nq0 +DROPBOX_APP_REFRESH_TOKEN=VShbST3VjUgAAAAAAAAAAXeZZzFLns6eE80-VJKIc5oq61PyXW6sCx9Dw5kM1w8c \ No newline at end of file diff --git a/EmailsImport/DockerCustomApp/BUILD.md b/EmailsImport/DockerCustomApp/BUILD.md new file mode 100644 index 0000000..45232cc --- /dev/null +++ b/EmailsImport/DockerCustomApp/BUILD.md @@ -0,0 +1,45 @@ +# msgreceiver — build & deploy na Unraid + +## Umístění na Unraidu +- Appdata: `/mnt/user/appdata/msgreceiver/` (síťově `\\tower\appdata\msgreceiver\`) +- Emaily: `/mnt/user/JNJEMAILS` (mount jako `/msgs` v kontejneru) + +## Kopírování souborů z Windows +Všechny soubory z `U:\janssen\EmailsImport\DockerCustomApp\` nakopírovat do `\\tower\appdata\msgreceiver\`. + +**DŮLEŽITÉ:** Po každé změně `app.py` je nutný rebuild a restart kontejneru (viz níže). Bez toho běží stará verze. + +## Build & restart (SSH) +```bash +# Připojení: ssh root@192.168.1.76, heslo: 7309208104 +# Nebo přes paramiko v Pythonu (viz EmailsImport skripty) + +cd /mnt/user/appdata/msgreceiver +docker build -t msgreceiver . +docker stop msgreceiver +docker rm msgreceiver +docker run -d --name msgreceiver \ + -p 8765:8765 \ + -v /mnt/user/JNJEMAILS:/msgs \ + --restart unless-stopped \ + msgreceiver +``` + +## Kontejner +- Port: 8765 +- Restart policy: unless-stopped +- Endpointy: + - `/upload` (msg + volitelný `folder` → uloží na disk + import do Graph API) + - `/upload-db` (db → /msgs/db, maže staré) + - `/upload-dropbox` (soubory do Dropboxu) +- Auth: Bearer token v app.py +- Dropbox credentials: v `.env` uvnitř image +- Graph API credentials: přímo v app.py (Mail.ReadWrite + Mail.Send, tenant TrialHelp s.r.o.) + +## Graph import +Při uploadu .msg s parametrem `folder` (plná cesta z JNJ Outlooku) server: +1. Uloží .msg na disk +2. Parsuje .msg a importuje do schránky `vladimir.buzalka@buzalka.cz` do `Inbox/JNJ/...` +3. Složky se vytvářejí automaticky, mapování: `/vbuzalka@its.jnj.com/X` → `JNJ/X`, `/Online Archive.../X` → `JNJ/Online Archive/X` + +Klient v1.4 (`janssenpc_email_send_new_v1.4.py`) posílá `folder` automaticky. diff --git a/EmailsImport/DockerCustomApp/Dockerfile b/EmailsImport/DockerCustomApp/Dockerfile new file mode 100644 index 0000000..4c3f3f2 --- /dev/null +++ b/EmailsImport/DockerCustomApp/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.12-slim +WORKDIR /app +COPY requirements.txt . +RUN pip install -r requirements.txt +COPY app.py . +COPY .env . +CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8765"] \ No newline at end of file diff --git a/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg b/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg new file mode 100644 index 0000000..befa89c Binary files /dev/null and b/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg differ diff --git a/EmailsImport/DockerCustomApp/app.md b/EmailsImport/DockerCustomApp/app.md new file mode 100644 index 0000000..3a203a2 --- /dev/null +++ b/EmailsImport/DockerCustomApp/app.md @@ -0,0 +1,63 @@ +# msgreceiver — deployment instrukce + +## Soubory +- Zdrojový skript: `U:\PythonProject\Janssen\EmailsImport\DockerCustomApp\app.py` +- Network share: `\\tower\appdata\msgreceiver\app.py` +- Unraid cesta: `/mnt/user/appdata/msgreceiver/` + +## Přihlašovací údaje +- **Unraid SSH:** `root@192.168.1.76`, heslo: `7309208104` +- **Docker kontejner:** `msgreceiver` + +## Postup při nové verzi app.py + +### 1. Zkopírovat app.py na server +```powershell +Copy-Item "U:\PythonProject\Janssen\EmailsImport\DockerCustomApp\app.py" "\\tower\appdata\msgreceiver\app.py" -Force +``` + +### 2. Připojit se přes SSH a přebuildovat Docker (přes Python paramiko) +```python +import paramiko +c = paramiko.SSHClient() +c.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +c.connect('192.168.1.76', username='root', password='7309208104') + +# Build +_, stdout, stderr = c.exec_command('docker build -t msgreceiver /mnt/user/appdata/msgreceiver/ 2>&1') +print(stdout.read().decode()) + +# Restart +_, stdout, stderr = c.exec_command('docker restart msgreceiver') +print(stdout.read().decode()) + +c.close() +``` + +> Poznámka: `sshpass` není na tomto Windows stroji k dispozici, Windows OpenSSH neumí neinteraktivní heslo — proto vždy použij **paramiko**. + +## Struktura adresáře na serveru +``` +/mnt/user/appdata/msgreceiver/ +├── Dockerfile +├── app.py +├── requirements.txt +└── .env ← Dropbox credentials +``` + +## Dropbox konfigurace (.env) +Proměnné načítané z `.env`: +- `DROPBOX_APP_KEY` +- `DROPBOX_APP_SECRET` +- `DROPBOX_APP_REFRESH_TOKEN` + +Upload cesta v Dropboxu: `/!!!Days/Downloads Z230/{filename}` + +## API endpointy +Bearer token: `13e1bb01-9fd5-44a8-8ce9-4ee27133d340` + +| Endpoint | Přijímá | Chování | +|---|---|---| +| `POST /upload` | `.msg` | Uloží do `/msgs`, přeskočí pokud existuje | +| `POST /upload-db` | `.db` | Smaže všechny staré `.db` v `/msgs/db`, uloží novou | +| `POST /upload-dropbox` | cokoliv | Nahraje do Dropboxu (overwrite) | diff --git a/EmailsImport/DockerCustomApp/app.py b/EmailsImport/DockerCustomApp/app.py new file mode 100644 index 0000000..4b3414d --- /dev/null +++ b/EmailsImport/DockerCustomApp/app.py @@ -0,0 +1,412 @@ +# app.py | v1.6 | 2026-06-01 +# FastAPI server pro příjem .msg a .db souborů, upload do Dropboxu a import do Graph API. +# Endpointy: /upload (.msg → /msgs + Graph import), /upload-db (.db → /msgs/db), +# /upload-dropbox (→ Dropbox /!!!Days/Downloads Z230), +# /message-delete, /message-update (sync: smazání, přečtení, přesun složky). + +from fastapi import FastAPI, UploadFile, File, Form, Header, HTTPException +from pydantic import BaseModel +import shutil +import base64 +import hashlib +import logging +from pathlib import Path +from typing import Optional +import os +import dropbox +import msal +import requests as http_requests +import extract_msg +from dateutil import parser as dtparser +from datetime import timezone +from dotenv import load_dotenv +from cryptography.fernet import Fernet + +load_dotenv(Path(__file__).parent / ".env") + +app = FastAPI() +log = logging.getLogger("msgreceiver") +logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s") + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +# Šifrovací klíč odvozený z TOKENu (Fernet = AES-128 CBC + HMAC) +_FERNET = Fernet(base64.urlsafe_b64encode(hashlib.sha256(TOKEN.encode()).digest())) + +SAVE_DIR = Path("/msgs") +DB_DIR = Path("/msgs/db") + +SAVE_DIR.mkdir(parents=True, exist_ok=True) +DB_DIR.mkdir(parents=True, exist_ok=True) + +DROPBOX_APP_KEY = os.getenv("DROPBOX_APP_KEY", "") +DROPBOX_APP_SECRET = os.getenv("DROPBOX_APP_SECRET", "") +DROPBOX_REFRESH_TOKEN = os.getenv("DROPBOX_APP_REFRESH_TOKEN", "") + +# --- Graph API config --- +GRAPH_TENANT_ID = "7d269944-37a4-43a1-8140-c7517dc426e9" +GRAPH_CLIENT_ID = "4b222bfd-78c9-4239-a53f-43006b3ed07f" +GRAPH_CLIENT_SECRET = "Txg8Q~MjhocuopxsJyJBhPmDfMxZ2r5WpTFj1dfk" +GRAPH_MAILBOX = "vladimir.buzalka@buzalka.cz" +GRAPH_ROOT_FOLDER = "JNJ" # subfolder under Inbox — root for imported emails +GRAPH_URL = "https://graph.microsoft.com/v1.0" + +# Cache: folder path → Graph folder ID +_folder_id_cache: dict[str, str] = {} +_graph_token: Optional[str] = None + + +def _get_graph_token() -> str: + global _graph_token + msalapp = msal.ConfidentialClientApplication( + GRAPH_CLIENT_ID, + authority=f"https://login.microsoftonline.com/{GRAPH_TENANT_ID}", + client_credential=GRAPH_CLIENT_SECRET, + ) + result = msalapp.acquire_token_for_client(scopes=["https://graph.microsoft.com/.default"]) + if "access_token" not in result: + raise RuntimeError(f"Graph auth failed: {result}") + _graph_token = result["access_token"] + return _graph_token + + +def _graph_headers() -> dict: + token = _graph_token or _get_graph_token() + return {"Authorization": f"Bearer {token}", "Content-Type": "application/json"} + + +def _ensure_folder(path_parts: list[str]) -> str: + """Ensure folder hierarchy exists under Inbox, return leaf folder ID.""" + cache_key = "/".join(path_parts) + if cache_key in _folder_id_cache: + return _folder_id_cache[cache_key] + + headers = _graph_headers() + parent_id = "Inbox" + + for i, part in enumerate(path_parts): + partial_key = "/".join(path_parts[: i + 1]) + if partial_key in _folder_id_cache: + parent_id = _folder_id_cache[partial_key] + continue + + # List children of parent + if parent_id == "Inbox": + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/Inbox/childFolders" + else: + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/{parent_id}/childFolders" + + r = http_requests.get(url, headers=headers, timeout=15) + if r.status_code == 401: + _get_graph_token() + headers = _graph_headers() + r = http_requests.get(url, headers=headers, timeout=15) + + found = None + for f in r.json().get("value", []): + if f["displayName"].lower() == part.lower(): + found = f["id"] + break + + if not found: + # Create folder + cr = http_requests.post(url, headers=headers, json={"displayName": part}, timeout=15) + if cr.status_code in (200, 201): + found = cr.json()["id"] + elif cr.status_code == 409: + # Already exists (race condition) — re-fetch + r2 = http_requests.get(url, headers=headers, timeout=15) + for f in r2.json().get("value", []): + if f["displayName"].lower() == part.lower(): + found = f["id"] + break + if not found: + raise RuntimeError(f"Cannot create folder '{part}': {cr.text}") + + _folder_id_cache[partial_key] = found + parent_id = found + + return parent_id + + +def _map_jnj_folder(folder: str) -> list[str]: + """Map JNJ folder path to Graph folder parts under JNJ root. + + '/vbuzalka@its.jnj.com/Inbox/TMP' → ['JNJ', 'Inbox', 'TMP'] + '/Online Archive - vbuzalka@its.jnj.com/Inbox' → ['JNJ', 'Online Archive', 'Inbox'] + """ + parts = [p for p in folder.split("/") if p] + if not parts: + return [GRAPH_ROOT_FOLDER] + + # First part is mailbox name — strip it but detect Online Archive + mailbox = parts[0] + rest = parts[1:] + + prefix = [GRAPH_ROOT_FOLDER] + if "online archive" in mailbox.lower(): + prefix.append("Online Archive") + + return prefix + rest if rest else prefix + + +def _make_recipient(addr: str) -> dict: + if "<" in addr and ">" in addr: + name = addr[: addr.index("<")].strip().strip('"') + email = addr[addr.index("<") + 1 : addr.index(">")].strip() + else: + name = addr + email = addr + return {"emailAddress": {"name": name, "address": email}} + + +def _import_msg_to_graph(msg_path: Path, folder: str) -> Optional[str]: + """Parse .msg and import into Graph API mailbox. Returns message ID or None.""" + try: + msg = extract_msg.Message(str(msg_path)) + + subject = msg.subject or "(no subject)" + + # Čtení těla — extract_msg může selhat na nestandartním kódování (cp1252 apod.) + try: + body_html = msg.htmlBody + if isinstance(body_html, bytes): + body_html = body_html.decode("utf-8", errors="replace") + except Exception: + body_html = None + + try: + body_text = msg.body or "" + except Exception: + body_text = "" + + try: + sender_email = msg.sender or "" + except Exception: + sender_email = "" + try: + sender_name = getattr(msg, "senderName", None) or sender_email + except Exception: + sender_name = sender_email + try: + to_raw = msg.to or "" + except Exception: + to_raw = "" + try: + cc_raw = msg.cc or "" + except Exception: + cc_raw = "" + try: + date_raw = msg.date + except Exception: + date_raw = None + + att_list = [] + for att in msg.attachments: + if att.data and att.longFilename: + att_list.append({ + "@odata.type": "#microsoft.graph.fileAttachment", + "name": att.longFilename, + "contentType": getattr(att, "mimetype", None) or "application/octet-stream", + "contentBytes": base64.b64encode(att.data).decode(), + }) + + msg.close() + + to_list = [a.strip() for a in to_raw.split(";") if a.strip()] + cc_list = [a.strip() for a in cc_raw.split(";") if a.strip()] + + # Map folder and ensure it exists + folder_parts = _map_jnj_folder(folder) + folder_id = _ensure_folder(folder_parts) + + payload = { + "subject": subject, + "body": { + "contentType": "HTML" if body_html else "Text", + "content": body_html or body_text, + }, + "from": _make_recipient(f"{sender_name} <{sender_email}>"), + "toRecipients": [_make_recipient(a) for a in to_list], + "ccRecipients": [_make_recipient(a) for a in cc_list], + "isRead": True, + "singleValueExtendedProperties": [ + {"id": "Integer 0x0E07", "value": "1"} + ], + } + + if date_raw: + try: + dt = dtparser.parse(str(date_raw)) + payload["receivedDateTime"] = dt.astimezone(timezone.utc).strftime( + "%Y-%m-%dT%H:%M:%SZ" + ) + except Exception: + pass + + if att_list: + payload["attachments"] = att_list + + headers = _graph_headers() + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/{folder_id}/messages" + r = http_requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code == 401: + _get_graph_token() + headers = _graph_headers() + r = http_requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code in (200, 201): + msg_id = r.json().get("id", "") + log.info("Graph OK: %s → %s", subject[:60], "/".join(folder_parts)) + return msg_id + else: + log.error("Graph FAIL [%d]: %s | %s", r.status_code, subject[:60], r.text[:200]) + return None + + except Exception as e: + log.error("Graph import error for %s: %s", msg_path.name, e) + return None + + +@app.post("/upload") +async def upload_msg( + file: UploadFile = File(...), + authorization: str = Header(None), + folder: str = Form(""), +): + if authorization != f"Bearer {TOKEN}": + raise HTTPException(status_code=401, detail="Unauthorized") + + is_encrypted = file.filename.endswith(".emsg") + if not file.filename.endswith(".msg") and not is_encrypted: + raise HTTPException(status_code=400, detail="Only .msg or .emsg files accepted") + + # Ukládáme vždy jako .msg + msg_filename = file.filename[:-5] + ".msg" if is_encrypted else file.filename + dest = SAVE_DIR / msg_filename + if dest.exists(): + return {"status": "exists", "file": msg_filename} + + content = await file.read() + if is_encrypted: + content = _FERNET.decrypt(content) + + with dest.open("wb") as f: + f.write(content) + + # Import to Graph API if folder was provided by client + graph_id = None + if folder: + graph_id = _import_msg_to_graph(dest, folder) + + return { + "status": "saved", + "file": msg_filename, + "graph_id": graph_id, + } + + +@app.post("/upload-db") +async def upload_db( + file: UploadFile = File(...), + authorization: str = Header(None) +): + if authorization != f"Bearer {TOKEN}": + raise HTTPException(status_code=401, detail="Unauthorized") + if not file.filename.endswith(".db"): + raise HTTPException(status_code=400, detail="Only .db files accepted") + for old in DB_DIR.glob("*.db"): + old.unlink() + dest = DB_DIR / file.filename + with dest.open("wb") as f: + shutil.copyfileobj(file.file, f) + return {"status": "saved", "file": file.filename} + + +class MessageDeleteRequest(BaseModel): + graph_id: str + + +class MessageUpdateRequest(BaseModel): + graph_id: str + is_read: Optional[bool] = None + folder: Optional[str] = None + + +def _retry_graph(method, url, headers_fn, **kwargs): + """Call Graph API, refresh token once on 401.""" + headers = headers_fn() + r = method(url, headers=headers, **kwargs) + if r.status_code == 401: + _get_graph_token() + headers = headers_fn() + r = method(url, headers=headers, **kwargs) + return r + + +@app.post("/message-delete") +async def message_delete(req: MessageDeleteRequest, authorization: str = Header(None)): + if authorization != f"Bearer {TOKEN}": + raise HTTPException(status_code=401, detail="Unauthorized") + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/messages/{req.graph_id}" + r = _retry_graph(http_requests.delete, url, _graph_headers, timeout=15) + if r.status_code in (200, 204): + log.info("Graph DELETE OK: %s", req.graph_id) + return {"status": "deleted"} + raise HTTPException(status_code=500, detail=f"Graph DELETE failed: {r.status_code} {r.text[:200]}") + + +@app.post("/message-update") +async def message_update(req: MessageUpdateRequest, authorization: str = Header(None)): + if authorization != f"Bearer {TOKEN}": + raise HTTPException(status_code=401, detail="Unauthorized") + + current_graph_id = req.graph_id + result: dict = {"status": "ok"} + + # Move first — returns new graph_id which we use for subsequent read-status update + if req.folder: + folder_parts = _map_jnj_folder(req.folder) + folder_id = _ensure_folder(folder_parts) + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/messages/{current_graph_id}/move" + r = _retry_graph(http_requests.post, url, _graph_headers, + json={"destinationId": folder_id}, timeout=15) + if r.status_code in (200, 201): + current_graph_id = r.json().get("id", current_graph_id) + result["moved"] = True + log.info("Graph MOVE OK: %s → %s", req.graph_id, "/".join(folder_parts)) + else: + log.error("Graph MOVE FAIL [%d]: %s", r.status_code, r.text[:200]) + result["moved"] = False + + if req.is_read is not None: + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/messages/{current_graph_id}" + r = _retry_graph(http_requests.patch, url, _graph_headers, + json={"isRead": req.is_read}, timeout=15) + result["read_updated"] = r.status_code in (200, 201) + if not result["read_updated"]: + log.error("Graph PATCH isRead FAIL [%d]: %s", r.status_code, r.text[:200]) + + result["graph_id"] = current_graph_id + return result + + +@app.post("/upload-dropbox") +async def upload_dropbox( + file: UploadFile = File(...), + authorization: str = Header(None), +): + if authorization != f"Bearer {TOKEN}": + raise HTTPException(status_code=401, detail="Unauthorized") + if not DROPBOX_REFRESH_TOKEN: + raise HTTPException(status_code=500, detail="Dropbox not configured") + + content = await file.read() + dbx = dropbox.Dropbox( + app_key=DROPBOX_APP_KEY, + app_secret=DROPBOX_APP_SECRET, + oauth2_refresh_token=DROPBOX_REFRESH_TOKEN, + ) + dropbox_path = f"/!!!Days/Downloads Z230/{file.filename}" + dbx.files_upload(content, dropbox_path, mode=dropbox.files.WriteMode.overwrite) + return {"status": "uploaded", "file": file.filename, "dropbox_path": dropbox_path} diff --git a/EmailsImport/DockerCustomApp/requirements.txt b/EmailsImport/DockerCustomApp/requirements.txt new file mode 100644 index 0000000..51e74b8 --- /dev/null +++ b/EmailsImport/DockerCustomApp/requirements.txt @@ -0,0 +1,10 @@ +fastapi +uvicorn +python-multipart +dropbox +python-dotenv +msal +requests +extract-msg +python-dateutil +cryptography \ No newline at end of file diff --git a/EmailsImport/DockerCustomApp/test_import_msg.py b/EmailsImport/DockerCustomApp/test_import_msg.py new file mode 100644 index 0000000..9bb087c --- /dev/null +++ b/EmailsImport/DockerCustomApp/test_import_msg.py @@ -0,0 +1,180 @@ +# test_import_msg.py — pokusný import .msg do schránky přes Graph API +# Parsuje .msg soubor a vytvoří zprávu v Inbox cílové schránky. + +import base64 +import msal +import requests +import extract_msg +import sys +from pathlib import Path + +# === CONFIG === +TENANT_ID = "7d269944-37a4-43a1-8140-c7517dc426e9" +CLIENT_ID = "4b222bfd-78c9-4239-a53f-43006b3ed07f" +CLIENT_SECRET = "Txg8Q~MjhocuopxsJyJBhPmDfMxZ2r5WpTFj1dfk" +MAILBOX = "vladimir.buzalka@buzalka.cz" + +AUTHORITY = f"https://login.microsoftonline.com/{TENANT_ID}" +SCOPE = ["https://graph.microsoft.com/.default"] +GRAPH_URL = "https://graph.microsoft.com/v1.0" +TARGET_FOLDER = "JNJ" # subfolder under Inbox + +# === MSG FILE === +MSG_PATH = Path(__file__).parent / "FC130007ACFE5DCB0000.msg" + + +def get_token(): + app = msal.ConfidentialClientApplication( + CLIENT_ID, authority=AUTHORITY, client_credential=CLIENT_SECRET + ) + token = app.acquire_token_for_client(scopes=SCOPE) + if "access_token" not in token: + raise RuntimeError(f"Auth failed: {token}") + return token["access_token"] + + +def parse_msg(path): + """Parse .msg file and return dict with message properties.""" + msg = extract_msg.Message(str(path)) + + # Read all properties before closing + subject = msg.subject or "(no subject)" + body_html = msg.htmlBody + if isinstance(body_html, bytes): + body_html = body_html.decode("utf-8", errors="replace") + body_text = msg.body or "" + + sender_email = msg.sender or "" + sender_name = getattr(msg, "senderName", None) or sender_email + + to_raw = msg.to or "" + cc_raw = msg.cc or "" + date_raw = msg.date + + att_list = [] + for att in msg.attachments: + if att.data and att.longFilename: + att_list.append({ + "@odata.type": "#microsoft.graph.fileAttachment", + "name": att.longFilename, + "contentType": getattr(att, "mimetype", None) or "application/octet-stream", + "contentBytes": base64.b64encode(att.data).decode(), + }) + + msg.close() + + # Process after close + to_list = [a.strip() for a in to_raw.split(";") if a.strip()] + cc_list = [a.strip() for a in cc_raw.split(";") if a.strip()] + received = str(date_raw) if date_raw else None + + return { + "subject": subject, + "body_html": body_html, + "body_text": body_text, + "sender_email": sender_email, + "sender_name": sender_name, + "to": to_list, + "cc": cc_list, + "received": received, + "attachments": att_list, + } + + +def make_recipient(addr): + """Create Graph API recipient object from email address.""" + # Handle 'Name ' format + if "<" in addr and ">" in addr: + name = addr[:addr.index("<")].strip().strip('"') + email = addr[addr.index("<") + 1 : addr.index(">")].strip() + else: + name = addr + email = addr + return {"emailAddress": {"name": name, "address": email}} + + +def import_msg(msg_path): + token = get_token() + headers = { + "Authorization": f"Bearer {token}", + "Content-Type": "application/json", + } + + print(f"Parsing: {msg_path}") + data = parse_msg(msg_path) + print(f" Subject: {data['subject']}") + print(f" From: {data['sender_name']} <{data['sender_email']}>") + print(f" To: {data['to']}") + print(f" Date: {data['received']}") + print(f" Attachments: {len(data['attachments'])}") + + # 1. Create message in mailFolder (Inbox) + payload = { + "subject": data["subject"], + "body": { + "contentType": "HTML" if data["body_html"] else "Text", + "content": data["body_html"] or data["body_text"], + }, + "from": make_recipient( + f"{data['sender_name']} <{data['sender_email']}>" + ), + "toRecipients": [make_recipient(a) for a in data["to"]], + "ccRecipients": [make_recipient(a) for a in data["cc"]], + "isRead": True, + # PR_MESSAGE_FLAGS (0x0E07) = 1 → read, NOT draft (without MSGFLAG_UNSENT=0x08) + "singleValueExtendedProperties": [ + { + "id": "Integer 0x0E07", + "value": "1", + } + ], + } + + if data["received"]: + # Graph API expects ISO 8601 UTC format + from datetime import datetime, timezone + try: + from dateutil import parser as dtparser + dt = dtparser.parse(data["received"]) + payload["receivedDateTime"] = dt.astimezone(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ") + except Exception as e: + print(f" Warning: cannot parse date '{data['received']}': {e}") + + if data["attachments"]: + payload["attachments"] = data["attachments"] + + # Find target folder (Inbox/JNJ) + folder_url = f"{GRAPH_URL}/users/{MAILBOX}/mailFolders/Inbox/childFolders" + r_folders = requests.get(folder_url, headers=headers, timeout=15) + folder_id = None + for f in r_folders.json().get("value", []): + if f["displayName"].lower() == TARGET_FOLDER.lower(): + folder_id = f["id"] + break + + if not folder_id: + # Create the folder if it doesn't exist + r_create = requests.post( + folder_url, headers=headers, + json={"displayName": TARGET_FOLDER}, timeout=15 + ) + folder_id = r_create.json()["id"] + print(f" Created folder '{TARGET_FOLDER}'") + + url = f"{GRAPH_URL}/users/{MAILBOX}/mailFolders/{folder_id}/messages" + print(f"\nPOST -> Inbox/{TARGET_FOLDER}") + + r = requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code in (200, 201): + msg_id = r.json().get("id", "?") + print(f" OK! Message created, id={msg_id[:40]}...") + return r.json() + else: + print(f" FAILED [{r.status_code}]: {r.text[:500]}") + return None + + +if __name__ == "__main__": + path = sys.argv[1] if len(sys.argv) > 1 else MSG_PATH + import_msg(Path(path)) diff --git a/EmailsImport/Onetime/10 GetOneTimeDropBoxAuth.py b/EmailsImport/Onetime/10 GetOneTimeDropBoxAuth.py new file mode 100644 index 0000000..a785c8d --- /dev/null +++ b/EmailsImport/Onetime/10 GetOneTimeDropBoxAuth.py @@ -0,0 +1,25 @@ +import dropbox +from dotenv import load_dotenv +from pathlib import Path +import os +from dropbox import DropboxOAuth2FlowNoRedirect + +load_dotenv(Path(__file__).parent / ".env") + +APP_KEY = os.getenv("DROPBOX_APP_KEY", "") +APP_SECRET = os.getenv("DROPBOX_APP_SECRET", "") + +auth_flow = DropboxOAuth2FlowNoRedirect( + APP_KEY, + APP_SECRET, + token_access_type='offline' # důležité — dá refresh token +) + +authorize_url = auth_flow.start() +print(f"Otevři v prohlížeči:\n{authorize_url}") + +auth_code = input("Vlož autorizační kód: ").strip() +oauth_result = auth_flow.finish(auth_code) + +print(f"Refresh token: {oauth_result.refresh_token}") +# Tento token ulož — platí "navždy" (dokud app neodvoláš) \ No newline at end of file diff --git a/EmailsImport/Onetime/20 TestDropboxUpload.py b/EmailsImport/Onetime/20 TestDropboxUpload.py new file mode 100644 index 0000000..7994299 --- /dev/null +++ b/EmailsImport/Onetime/20 TestDropboxUpload.py @@ -0,0 +1,22 @@ +import dropbox +from dotenv import load_dotenv +from pathlib import Path +import os + +load_dotenv(Path(__file__).parent / ".env") + +APP_KEY = os.getenv("DROPBOX_APP_KEY", "") +APP_SECRET = os.getenv("DROPBOX_APP_SECRET", "") +REFRESH_TOKEN = os.getenv("DROPBOX_APP_REFRESH_TOKEN", "") + +dbx = dropbox.Dropbox( + app_key=APP_KEY, + app_secret=APP_SECRET, + oauth2_refresh_token=REFRESH_TOKEN, +) + +dropbox_path = "/!!!Days/Downloads Z230/AHOJVLADO.TXT" +content = b"AHOJ VLADO" + +dbx.files_upload(content, dropbox_path, mode=dropbox.files.WriteMode.overwrite) +print(f"Nahráno: {dropbox_path}") diff --git a/EmailsImport/Onetime/db_cleanup_inbox_v1.0.py b/EmailsImport/Onetime/db_cleanup_inbox_v1.0.py new file mode 100644 index 0000000..05863ea --- /dev/null +++ b/EmailsImport/Onetime/db_cleanup_inbox_v1.0.py @@ -0,0 +1,18 @@ +""" +db_cleanup_inbox v1.0 +Verze: 1.0 +Datum: 2026-05-28 +Popis: Jednorázový cleanup - smaže záznamy v SQLite DB kde folder = '/Inbox' + (záznamy bez emailové adresy v cestě, vytvořené chybnou verzí skriptu). +""" +import sqlite3 + +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" + +conn = sqlite3.connect(DB_PATH) +deleted = conn.execute("DELETE FROM messages WHERE folder = '/Inbox'").rowcount +conn.commit() +conn.close() + +print(f"Smazáno záznamů: {deleted}") +print("Hotovo.") diff --git a/EmailsImport/Trash/janssenpc_email_send_new_v1.0.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.0.py new file mode 100644 index 0000000..461294a --- /dev/null +++ b/EmailsImport/Trash/janssenpc_email_send_new_v1.0.py @@ -0,0 +1,177 @@ +""" +janssenpc_email_send_new v1.0 +Verze: 1.0 +Datum: 2026-05-28 +Popis: Prochází pouze složku Inbox v Outlooku (MAPI), ukládá emailové zprávy jako .msg + soubory a uploaduje je na https://msgs.buzalka.cz. Zaznamenává zpracované + zprávy do SQLite DB (jnjemails.db) a DB periodicky uploaduje na server. + Podporuje pokračování od posledního zpracovaného emailu (resume). +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def upload_db(db_path): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + +def upload_msg(msg_path, filename): + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=30 + ) + resp.raise_for_status() + return resp.json()["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + print(f" CHYBA | {getattr(item, 'Subject', '?')[:40]} | {e}") + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +inbox = ns.GetDefaultFolder(6) # 6 = olFolderInbox +source = "mailbox" +print(f"\n=== Inbox ===") +process_folder(conn, inbox, source) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print("\nHotovo.") diff --git a/EmailsImport/Trash/janssenpc_email_send_new_v1.1.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.1.py new file mode 100644 index 0000000..46ae6eb --- /dev/null +++ b/EmailsImport/Trash/janssenpc_email_send_new_v1.1.py @@ -0,0 +1,195 @@ +""" +janssenpc_email_send_new v1.1 +Verze: 1.1 +Datum: 2026-05-28 +Popis: Prochází pouze složku Inbox v Outlooku (MAPI), ukládá emailové zprávy jako .msg + soubory a uploaduje je na https://msgs.buzalka.cz. Zaznamenává zpracované + zprávy do SQLite DB (jnjemails.db) a DB periodicky uploaduje na server. + Podporuje pokračování od posledního zpracovaného emailu (resume). + Nově: chyby při uploadu se logují do souboru jnjemails_errors.log + (timestamp, složka, odesílatel, předmět, chyba). +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def upload_db(db_path): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + +def upload_msg(msg_path, filename): + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=30 + ) + resp.raise_for_status() + return resp.json()["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + subject = getattr(item, 'Subject', '?') + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +inbox = ns.GetDefaultFolder(6) # 6 = olFolderInbox +source = "mailbox" +print(f"\n=== Inbox ===") +process_folder(conn, inbox, source) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/EmailsImport/Trash/janssenpc_email_send_new_v1.2.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.2.py new file mode 100644 index 0000000..f952163 --- /dev/null +++ b/EmailsImport/Trash/janssenpc_email_send_new_v1.2.py @@ -0,0 +1,199 @@ +""" +janssenpc_email_send_new v1.2 +Verze: 1.2 +Datum: 2026-05-28 +Popis: Prochází pouze složku Inbox v Outlooku (MAPI), ukládá emailové zprávy jako .msg + soubory a uploaduje je na https://msgs.buzalka.cz. Zaznamenává zpracované + zprávy do SQLite DB (jnjemails.db) a DB periodicky uploaduje na server. + Podporuje pokračování od posledního zpracovaného emailu (resume). + Chyby při uploadu se logují do souboru jnjemails_errors.log. + Oprava v1.2: folder cesta obsahuje celé jméno schránky (např. /vbuzalka@its.jnj.com/Inbox) + aby resume logika správně navazovala na záznamy z původního skriptu. +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def upload_db(db_path): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + +def upload_msg(msg_path, filename): + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=30 + ) + resp.raise_for_status() + return resp.json()["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + subject = getattr(item, 'Subject', '?') + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +inbox = ns.GetDefaultFolder(6) # 6 = olFolderInbox +mailbox_name = inbox.Parent.Name # např. "vbuzalka@its.jnj.com" +print(f"Schránka: {mailbox_name}") + +source = "mailbox" +print(f"\n=== Inbox ({mailbox_name}) ===") +process_folder(conn, inbox, source, f"/{mailbox_name}") + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/EmailsImport/Trash/janssenpc_email_send_new_v1.3.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.3.py new file mode 100644 index 0000000..97aee67 --- /dev/null +++ b/EmailsImport/Trash/janssenpc_email_send_new_v1.3.py @@ -0,0 +1,200 @@ +""" +janssenpc_email_send_new v1.3 +Verze: 1.3 +Datum: 2026-05-28 +Popis: Prochází složky Inbox, Deleted Items a Sent Items v Outlooku (MAPI), + ukládá emailové zprávy jako .msg soubory a uploaduje je na https://msgs.buzalka.cz. + Zaznamenává zpracované zprávy do SQLite DB (jnjemails.db) a DB periodicky + uploaduje na server. Podporuje pokračování od posledního zpracovaného emailu (resume). + Folder cesta obsahuje celé jméno schránky (např. /vbuzalka@its.jnj.com/Inbox). + Chyby při uploadu se logují do souboru jnjemails_errors.log. +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +# olFolderInbox=6, olFolderDeletedItems=3, olFolderSentMail=5 +FOLDERS_TO_PROCESS = [6, 3, 5] + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def upload_db(db_path): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + +def upload_msg(msg_path, filename): + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=30 + ) + resp.raise_for_status() + return resp.json()["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + subject = getattr(item, 'Subject', '?') + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +counter = [0] +for folder_id in FOLDERS_TO_PROCESS: + folder = ns.GetDefaultFolder(folder_id) + mailbox_name = folder.Parent.Name + print(f"\n=== {folder.Name} ({mailbox_name}) ===") + process_folder(conn, folder, "mailbox", f"/{mailbox_name}", counter) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/EmailsImport/Trash/janssenpc_email_send_new_v1.4.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.4.py new file mode 100644 index 0000000..d1ad95f --- /dev/null +++ b/EmailsImport/Trash/janssenpc_email_send_new_v1.4.py @@ -0,0 +1,233 @@ +""" +janssenpc_email_send_new v1.4 +Verze: 1.4.1 +Datum: 2026-05-29 +Popis: Prochází složky Inbox, Deleted Items a Sent Items v Outlooku (MAPI), + ukládá emailové zprávy jako .msg soubory a uploaduje je na https://msgs.buzalka.cz. + Zaznamenává zpracované zprávy do SQLite DB (jnjemails.db) a DB uploaduje na server + jednou za 24 hodin (ne při každém běhu). Podporuje pokračování od posledního + zpracovaného emailu (resume). Folder cesta obsahuje celé jméno schránky + (např. /vbuzalka@its.jnj.com/Inbox). Chyby se logují do jnjemails_errors.log. +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +DB_UPLOAD_MARKER = r"C:\Users\vbuzalka\SQLITE\jnjemails_last_db_upload.txt" +DB_UPLOAD_INTERVAL_H = 24 +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +# olFolderInbox=6, olFolderDeletedItems=3, olFolderSentMail=5 +FOLDERS_TO_PROCESS = [6, 3, 5] + +UPLOAD_LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_uploads.log" + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +# Separate upload logger — logs every upload attempt +_upload_log = logging.getLogger("uploads") +_upload_log.setLevel(logging.DEBUG) +_uh = logging.FileHandler(UPLOAD_LOG_PATH, encoding="utf-8") +_uh.setFormatter(logging.Formatter("%(asctime)s | %(message)s", datefmt="%Y-%m-%d %H:%M:%S")) +_upload_log.addHandler(_uh) + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def _db_upload_due() -> bool: + """Return True if 24h elapsed since last DB upload (or never uploaded).""" + marker = Path(DB_UPLOAD_MARKER) + if not marker.exists(): + return True + try: + last = datetime.fromisoformat(marker.read_text().strip()) + return (datetime.now() - last).total_seconds() >= DB_UPLOAD_INTERVAL_H * 3600 + except Exception: + return True + +def _db_upload_mark(): + """Write current timestamp to marker file.""" + Path(DB_UPLOAD_MARKER).write_text(datetime.now().isoformat()) + +def upload_db(db_path, force=False): + if not force and not _db_upload_due(): + return + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + _db_upload_mark() + +def upload_msg(msg_path, filename, folder=""): + _upload_log.info("UPLOAD %s | folder=%s", filename, folder) + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + data={"folder": folder}, + timeout=60 + ) + resp.raise_for_status() + result = resp.json() + _upload_log.info("RESPONSE %s | %s", filename, result) + return result["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name, current_path) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + subject = getattr(item, 'Subject', '?') + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +counter = [0] +for folder_id in FOLDERS_TO_PROCESS: + folder = ns.GetDefaultFolder(folder_id) + mailbox_name = folder.Parent.Name + print(f"\n=== {folder.Name} ({mailbox_name}) ===") + process_folder(conn, folder, "mailbox", f"/{mailbox_name}", counter) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/EmailsImport/inbox_full_sync_v1.0.md b/EmailsImport/inbox_full_sync_v1.0.md new file mode 100644 index 0000000..bbb4b84 --- /dev/null +++ b/EmailsImport/inbox_full_sync_v1.0.md @@ -0,0 +1,170 @@ +# inbox_full_sync_v1.0 + +**Název:** inbox_full_sync_v1.0.py +**Verze:** 1.0.4 +**Datum:** 2026-06-01 +**Autor:** vladimir.buzalka + +--- + +## Účel + +Jednorázový skript pro úplný přenos Inboxu z JNJ Outlooku (MAPI) do osobní schránky `vladimir.buzalka@buzalka.cz` přes Microsoft Graph API. + +Spouštět ručně jako záchranná síť nebo iniciální sync. Bezpečné opakovat — duplicity se automaticky přeskočí. + +--- + +## Co dělá + +1. Připojí se k Outlooku přes MAPI (`win32com`) +2. Projde celý **Inbox** včetně všech podsložek rekurzivně +3. Pro každý email zkontroluje SQLite DB — pokud už je přenesen, přeskočí ho +4. Nový email uloží jako `.msg` do temp složky, **zašifruje** (Fernet/AES) a odešle jako `.emsg` na `msgs.buzalka.cz/upload` +5. Server (`app.py`) dešifruje, parsuje `.msg`, importuje do Graph API a vrátí `graph_id` +6. Záznam se uloží do DB (`messages`, `log`) +7. Každých 100 přenesených emailů + na konci uploaduje DB na server + +**Online Archive se nepřenáší** — `GetDefaultFolder(6)` vrátí pouze primární schránku. + +--- + +## Šifrování (Zscaler bypass) + +JNJ síť používá **Zscaler DLP** — blokuje upload souborů s medicínským obsahem (ECG reporty, klinická data) na externí URL. + +Řešení: soubor se před odesláním zašifruje pomocí **Fernet** (AES-128 CBC + HMAC). Zscaler vidí pouze šifrovaný bináč a nerozpozná obsah. + +- Šifrovací klíč se odvozuje z `TOKEN` přes SHA-256 — žádná extra konstanta, obě strany derivují klíč samostatně +- Soubor se odesílá s příponou `.emsg` místo `.msg` +- Server (app.py v1.6+) automaticky detekuje `.emsg`, dešifruje a dále zpracuje standardně + +--- + +## Konfigurace + +Konstanty jsou přímo v kódu: + +| Konstanta | Hodnota | +|---|---| +| `TOKEN` | Bearer token pro msgs.buzalka.cz (slouží i jako základ šifrovacího klíče) | +| `UPLOAD_URL` | `https://msgs.buzalka.cz/upload` | +| `DB_UPLOAD_URL` | `https://msgs.buzalka.cz/upload-db` | +| `DB_PATH` | `C:\Users\vbuzalka\SQLITE\jnjemails.db` | +| `LOG_PATH` | `C:\Users\vbuzalka\SQLITE\inbox_full_sync_errors.log` | + +--- + +## Závislosti + +- Python 3.10+, Windows +- Outlook musí být spuštěn +- `pywin32`, `requests`, `cryptography` +- Server `msgs.buzalka.cz` musí běžet (app.py v1.6+) + +--- + +## SQLite DB (`jnjemails.db`) + +### Tabulka `messages` +Jeden záznam na každý přenesený email. + +| Sloupec | Popis | +|---|---| +| `message_id` | Internet Message-ID (nebo `entryid:...` jako fallback) | +| `entry_id` | Outlook EntryID — pro zpětné dohledání v MAPI | +| `graph_id` | ID zprávy v Graph API — pro sync operace | +| `is_read` | Stav přečtení při přenosu (0/1) | +| `jnj_folder` | Složka v JNJ při přenosu | +| `source` | Vždy `inbox_full_sync` | + +### Tabulka `runs` +Jeden záznam na každý běh skriptu. + +| Sloupec | Popis | +|---|---| +| `script` | `inbox_full_sync` | +| `version` | verze skriptu | +| `started_at` / `finished_at` | časy běhu | +| `transferred` | počet nově přenesených emailů | +| `skipped` | počet přeskočených (již v DB) | +| `errors` | počet chyb | + +### Tabulka `log` +Flat event log — každý console výstup i interní událost jako řádek. + +| Sloupec | Popis | +|---|---| +| `run_id` | FK na `runs.id` | +| `level` | `INFO` / `ERROR` | +| `event` | typ události (viz níže) | +| `subject` | předmět emailu (pokud relevantní) | +| `folder` | složka (pokud relevantní) | +| `graph_id` | Graph ID (pokud relevantní) | +| `detail` | pro `upload_saved`: `size=XKB`; pro `upload_error`: `error=... \| size=XKB \| body=... \| sender=... \| received=... \| entry_id=... \| message_id=...` | + +#### Události (`log.event`) + +| Event | Popis | +|---|---| +| `run_start` | start skriptu | +| `mailbox` | název schránky | +| `folder_start` | vstup do složky (detail = počet položek) | +| `folder_done` | konec složky (detail = přeneseno/skip) | +| `upload_saved` | nový email úspěšně přenesen (detail = size=XKB) | +| `upload_exists` | email již v DB, přeskočen | +| `upload_error` | chyba při uploadu — detail obsahuje sender, received, entry_id, message_id pro dohledání v Outlooku | +| `progress` | každých 100 přenesených emailů | +| `db_upload` | úspěšný upload DB na server | +| `db_upload_error` | chyba uploadu DB | +| `run_done` | konec skriptu (detail = souhrn) | + +--- + +## Užitečné dotazy + +**Poslední běh — kompletní log:** +```sql +SELECT r.script, r.version, r.started_at, + l.level, l.event, l.subject, l.folder, l.detail, l.created_at +FROM log l JOIN runs r ON r.id = l.run_id +WHERE l.run_id = (SELECT MAX(id) FROM runs) +ORDER BY l.created_at +``` + +**Přehled všech běhů:** +```sql +SELECT id, script, version, started_at, finished_at, + transferred, skipped, errors +FROM runs ORDER BY started_at DESC +``` + +**Chyby z posledního běhu:** +```sql +SELECT l.event, l.subject, l.folder, l.detail, l.created_at +FROM log l +WHERE l.run_id = (SELECT MAX(id) FROM runs) + AND l.level = 'ERROR' +ORDER BY l.created_at +``` + +--- + +## Návaznost + +- Sdílí DB s `janssenpc_email_send_new_v1.5.py` — záznamy jsou kompatibilní +- Emaily přenesené tímto skriptem mají `graph_id` a jsou od té chvíle hlídány sync průchodem v1.5 +- Server endpoint: `msgs.buzalka.cz/upload` musí vracet `graph_id` (app.py v1.6+) +- nginx `client_max_body_size` nastaven na **200M** (SWAG `msgreceiver.subdomain.conf`) + +--- + +## Historie verzí + +| Verze | Datum | Změna | +|---|---|---| +| 1.0.0 | 2026-06-01 | Základní funkce: Inbox full scan, dedup přes DB, entry_id/graph_id/is_read | +| 1.0.1 | 2026-06-01 | DB upload každých 100 emailů + finální upload | +| 1.0.2 | 2026-06-01 | SQLite tabulky runs + log | +| 1.0.3 | 2026-06-01 | Kompletní konzolový výstup zrcadlen do log tabulky, skipped counter | +| 1.0.4 | 2026-06-01 | Šifrování Fernet (.emsg) pro bypass Zscaler DLP; rozšířený error detail (sender/received/entry_id/size) | diff --git a/EmailsImport/inbox_full_sync_v1.0.py b/EmailsImport/inbox_full_sync_v1.0.py new file mode 100644 index 0000000..fe47ede --- /dev/null +++ b/EmailsImport/inbox_full_sync_v1.0.py @@ -0,0 +1,384 @@ +""" +inbox_full_sync v1.0 +Název: inbox_full_sync_v1.0.py +Verze: 1.0.3 +Datum: 2026-06-01 +Autor: vladimir.buzalka + +Popis: + Jednorázový skript pro úplný přenos Inboxu z JNJ Outlooku (MAPI) do osobní + schránky vladimir.buzalka@buzalka.cz přes Graph API. + + Prochází celý Inbox včetně všech podsložek. Online Archive se nepřenáší + (GetDefaultFolder(6) vrátí pouze primární schránku). + + Každý email se uloží jako .msg do temp složky, odešle na https://msgs.buzalka.cz/upload + a přes Graph API se importuje do odpovídající složky v osobní schránce. + Dedup zajišťuje SQLite DB — email který je v DB (message_id) se přeskočí. + +Spouštění: + Spouštět ručně jako záchranná síť nebo iniciální sync. + Bezpečné opakovat — duplicity se přeskočí. + +Závislosti: + win32com, requests, sqlite3 (stdlib) + Python 3.10+, Windows, Outlook musí být spuštěn + +Konfigurace (konstanty v kódu): + TOKEN Bearer token pro msgs.buzalka.cz + UPLOAD_URL https://msgs.buzalka.cz/upload + DB_UPLOAD_URL https://msgs.buzalka.cz/upload-db + DB_PATH C:\\Users\\vbuzalka\\SQLITE\\jnjemails.db + LOG_PATH C:\\Users\\vbuzalka\\SQLITE\\inbox_full_sync_errors.log + +SQLite DB (jnjemails.db): + messages — přenesené emaily (message_id, entry_id, graph_id, is_read, jnj_folder, ...) + runs — jeden záznam na běh (script, version, started_at, finished_at, counts) + log — flat event log per run (level, event, subject, folder, graph_id, detail) + + Dotaz pro posledn běh: + SELECT r.script, r.version, r.started_at, l.level, l.event, + l.subject, l.folder, l.detail, l.created_at + FROM log l JOIN runs r ON r.id = l.run_id + WHERE l.run_id = (SELECT MAX(id) FROM runs) + ORDER BY l.created_at + +Log události (log.event): + run_start — start skriptu + mailbox — název schránky + folder_start — vstup do složky (detail = počet položek) + folder_done — konec složky (detail = přeneseno/skip) + upload_saved — nový email přenesen + upload_exists — email již v DB, přeskočen + upload_error — chyba při uploadu (detail = chybová zpráva) + progress — každých 100 přenesených + db_upload — úspěšný upload DB na server + db_upload_error — chyba uploadu DB + run_done — konec skriptu (detail = souhrn) + +Historie verzí: + 1.0.0 2026-06-01 Základní funkce: Inbox full scan, dedup přes DB, entry_id/graph_id/is_read + 1.0.1 2026-06-01 DB upload každých 100 emailů + finální upload + 1.0.2 2026-06-01 SQLite tabulky runs + log + 1.0.3 2026-06-01 Kompletní konzolový výstup zrcadlen do log tabulky, skipped counter +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +import hashlib +import base64 +from pathlib import Path +from datetime import datetime +from cryptography.fernet import Fernet +import tempfile + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\inbox_full_sync_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" +DB_UPLOAD_URL = "https://msgs.buzalka.cz/upload-db" +SCRIPT_NAME = "inbox_full_sync" +SCRIPT_VERSION = "1.0.4" +# Šifrovací klíč odvozený z TOKENu — stejný algoritmus jako na serveru +_FERNET = Fernet(base64.urlsafe_b64encode(hashlib.sha256(TOKEN.encode()).digest())) + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')), + entry_id TEXT, + graph_id TEXT, + is_read INTEGER DEFAULT 0, + jnj_folder TEXT + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + + conn.execute(""" + CREATE TABLE IF NOT EXISTS runs ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + script TEXT NOT NULL, + version TEXT, + started_at TEXT NOT NULL, + finished_at TEXT, + transferred INTEGER DEFAULT 0, + skipped INTEGER DEFAULT 0, + sync_updated INTEGER DEFAULT 0, + sync_deleted INTEGER DEFAULT 0, + errors INTEGER DEFAULT 0 + ) + """) + + conn.execute(""" + CREATE TABLE IF NOT EXISTS log ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + run_id INTEGER REFERENCES runs(id), + level TEXT NOT NULL, + event TEXT NOT NULL, + subject TEXT, + folder TEXT, + graph_id TEXT, + detail TEXT, + created_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE INDEX IF NOT EXISTS idx_log_run_id ON log(run_id)") + + for col, definition in [ + ("entry_id", "TEXT"), + ("graph_id", "TEXT"), + ("is_read", "INTEGER DEFAULT 0"), + ("jnj_folder", "TEXT"), + ]: + try: + conn.execute(f"ALTER TABLE messages ADD COLUMN {col} {definition}") + except Exception: + pass + conn.commit() + + +def start_run(conn): + cur = conn.execute( + "INSERT INTO runs (script, version, started_at) VALUES (?, ?, datetime('now'))", + (SCRIPT_NAME, SCRIPT_VERSION) + ) + conn.commit() + return cur.lastrowid + + +def finish_run(conn, run_id, transferred, skipped, errors): + conn.execute(""" + UPDATE runs SET finished_at=datetime('now'), transferred=?, skipped=?, errors=? + WHERE id=? + """, (transferred, skipped, errors, run_id)) + conn.commit() + + +def db_log(conn, run_id, level, event, subject=None, folder=None, graph_id=None, detail=None): + conn.execute(""" + INSERT INTO log (run_id, level, event, subject, folder, graph_id, detail) + VALUES (?, ?, ?, ?, ?, ?, ?) + """, (run_id, level, event, subject, folder, graph_id, detail)) + conn.commit() + + +def info(conn, run_id, event, **kwargs): + db_log(conn, run_id, "INFO", event, **kwargs) + + +def error(conn, run_id, event, **kwargs): + db_log(conn, run_id, "ERROR", event, **kwargs) + + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + + +def save_to_db(conn, message_id, subject, sender, received_at, folder, + entry_id=None, graph_id=None, is_read=0): + conn.execute(""" + INSERT OR IGNORE INTO messages + (message_id, subject, sender, received_at, folder, source, + entry_id, graph_id, is_read, jnj_folder) + VALUES (?, ?, ?, ?, ?, 'inbox_full_sync', ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, + entry_id, graph_id, is_read, folder)) + conn.commit() + + +def upload_db(conn, run_id): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + try: + with open(DB_PATH, "rb") as f: + resp = requests.post( + DB_UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60, + ) + result = resp.json() + msg = f"DB upload: {result}" + print(f" {msg}") + info(conn, run_id, "db_upload", detail=msg) + except Exception as e: + msg = str(e) + print(f" DB upload CHYBA: {msg}") + error(conn, run_id, "db_upload_error", detail=msg) + + +def upload_msg(msg_path, filename, folder=""): + size_kb = Path(msg_path).stat().st_size // 1024 + with open(msg_path, "rb") as f: + encrypted = _FERNET.encrypt(f.read()) + enc_filename = Path(filename).stem + ".emsg" + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (enc_filename, encrypted, "application/octet-stream")}, + data={"folder": folder}, + timeout=60, + ) + if not resp.ok: + raise requests.HTTPError( + f"{resp.status_code} {resp.reason} | size={size_kb}KB | body={resp.text[:300]}", + response=resp, + ) + return resp.json() + + +def process_folder(conn, run_id, folder, folder_path, counter, skipped_counter, error_counter): + current_path = f"{folder_path}/{folder.Name}" + items = folder.Items + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + total = items.Count + + msg = f"Složka: {current_path} ({total} položek)" + print(f"\n {msg}") + info(conn, run_id, "folder_start", folder=current_path, detail=str(total)) + + for item in items: + subject = getattr(item, 'Subject', '?') + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except Exception: + mid = None + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + skipped_counter[0] += 1 + continue + + try: + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + size_kb = tmp_path.stat().st_size // 1024 + result = upload_msg(tmp_path, safe_name, current_path) + + status = result.get("status", "?") + graph_id = result.get("graph_id") + is_read = 0 if item.UnRead else 1 + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + + save_to_db(conn, mid, subject, item.SenderEmailAddress, + received, current_path, + entry_id=item.EntryID, graph_id=graph_id, is_read=is_read) + info(conn, run_id, f"upload_{status}", + subject=subject, folder=current_path, graph_id=graph_id, + detail=f"size={size_kb}KB") + + counter[0] += 1 + count += 1 + + if counter[0] % 100 == 0: + msg = f"celkem přeneseno: {counter[0]}" + print(f" → {msg}, uploaduji DB...") + info(conn, run_id, "progress", detail=msg) + upload_db(conn, run_id) + + print(f" {status.upper():6} | {subject[:70]}") + + except Exception as e: + sender_str = getattr(item, 'SenderEmailAddress', '?') + received_str = getattr(item, 'ReceivedTime', None) + received_str = received_str.isoformat() if received_str else '?' + entry_id_str = getattr(item, 'EntryID', '?') + detail = ( + f"error={e} | " + f"sender={sender_str} | " + f"received={received_str} | " + f"entry_id={entry_id_str} | " + f"message_id={mid}" + ) + print(f" CHYBA | {subject[:50]} | sender={sender_str} | received={received_str} | {e}") + error(conn, run_id, "upload_error", + subject=subject, folder=current_path, detail=detail) + logging.error("folder=%s | %s", current_path, detail) + error_counter[0] += 1 + + except Exception as e: + # Neočekávaná chyba mimo upload blok (MessageClass, EntryID, apod.) + print(f" CHYBA (item) | {subject[:50]} | {e}") + logging.error("folder=%s | item_error | subject=%s | error=%s", current_path, subject, e) + error_counter[0] += 1 + + msg = f"složka hotova: přeneseno {count} | skip {skipped}" + print(f" → {msg}") + info(conn, run_id, "folder_done", folder=current_path, detail=msg) + + for subfolder in folder.Folders: + process_folder(conn, run_id, subfolder, current_path, counter, skipped_counter, error_counter) + + +# --- MAIN --- +print(f"=== inbox_full_sync v{SCRIPT_VERSION} ===") +print(f"Start: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}") + +conn = sqlite3.connect(DB_PATH) +init_db(conn) +run_id = start_run(conn) +info(conn, run_id, "run_start", detail=f"script={SCRIPT_NAME} version={SCRIPT_VERSION}") + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +inbox = ns.GetDefaultFolder(6) # olFolderInbox — primární schránka, bez Online Archive +mailbox_name = inbox.Parent.Name +print(f"\nSchránka: {mailbox_name}") +info(conn, run_id, "mailbox", detail=mailbox_name) + +counter = [0] +skipped_counter = [0] +error_counter = [0] +process_folder(conn, run_id, inbox, f"/{mailbox_name}", counter, skipped_counter, error_counter) + +finish_run(conn, run_id, + transferred=counter[0], + skipped=skipped_counter[0], + errors=error_counter[0]) + +summary = f"přeneseno {counter[0]} | skip {skipped_counter[0]} | chyby {error_counter[0]}" +print(f"\n=== Hotovo: {summary} ===") +info(conn, run_id, "run_done", detail=summary) + +print("Uploaduji DB...") +upload_db(conn, run_id) + +print(f"Konec: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}") +print(f"Chyby logovány do: {LOG_PATH}") +conn.close() diff --git a/EmailsImport/janssenpc_email_send_new_v1.5.py b/EmailsImport/janssenpc_email_send_new_v1.5.py new file mode 100644 index 0000000..a325d34 --- /dev/null +++ b/EmailsImport/janssenpc_email_send_new_v1.5.py @@ -0,0 +1,464 @@ +""" +janssenpc_email_send_new v1.5 +Verze: 1.5.2 +Datum: 2026-06-01 +Popis: Prochází složky Inbox, Deleted Items a Sent Items v Outlooku (MAPI), + ukládá emailové zprávy jako .msg soubory a uploaduje je na https://msgs.buzalka.cz. + Zaznamenává zpracované zprávy do SQLite DB (jnjemails.db) a DB uploaduje na server + jednou za 24 hodin (ne při každém běhu). Podporuje pokračování od posledního + zpracovaného emailu (resume). Folder cesta obsahuje celé jméno schránky + (např. /vbuzalka@its.jnj.com/Inbox). Chyby se logují do jnjemails_errors.log. + v1.5: tracking entry_id, graph_id, is_read, jnj_folder. + Sync průchod posledních 30 dní: detekce smazání, změny přečtení, přesunu složky. + v1.5.2: SQLite logging — tabulky runs + log (flat event log per run). +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +DB_UPLOAD_MARKER = r"C:\Users\vbuzalka\SQLITE\jnjemails_last_db_upload.txt" +DB_UPLOAD_INTERVAL_H = 24 +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" +SYNC_DAYS = 30 +SCRIPT_NAME = "email_send" +SCRIPT_VERSION = "1.5.2" + +# olFolderInbox=6, olFolderDeletedItems=3, olFolderSentMail=5 +FOLDERS_TO_PROCESS = [6, 3, 5] + +UPLOAD_LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_uploads.log" + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +_upload_log = logging.getLogger("uploads") +_upload_log.setLevel(logging.DEBUG) +_uh = logging.FileHandler(UPLOAD_LOG_PATH, encoding="utf-8") +_uh.setFormatter(logging.Formatter("%(asctime)s | %(message)s", datefmt="%Y-%m-%d %H:%M:%S")) +_upload_log.addHandler(_uh) + + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')), + entry_id TEXT, + graph_id TEXT, + is_read INTEGER DEFAULT 0, + jnj_folder TEXT + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + + conn.execute(""" + CREATE TABLE IF NOT EXISTS runs ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + script TEXT NOT NULL, + version TEXT, + started_at TEXT NOT NULL, + finished_at TEXT, + transferred INTEGER DEFAULT 0, + skipped INTEGER DEFAULT 0, + sync_updated INTEGER DEFAULT 0, + sync_deleted INTEGER DEFAULT 0, + errors INTEGER DEFAULT 0 + ) + """) + + conn.execute(""" + CREATE TABLE IF NOT EXISTS log ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + run_id INTEGER REFERENCES runs(id), + level TEXT NOT NULL, + event TEXT NOT NULL, + subject TEXT, + folder TEXT, + graph_id TEXT, + detail TEXT, + created_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE INDEX IF NOT EXISTS idx_log_run_id ON log(run_id)") + + # Migrate existing DB + for col, definition in [ + ("entry_id", "TEXT"), + ("graph_id", "TEXT"), + ("is_read", "INTEGER DEFAULT 0"), + ("jnj_folder", "TEXT"), + ]: + try: + conn.execute(f"ALTER TABLE messages ADD COLUMN {col} {definition}") + except Exception: + pass + conn.commit() + + +def start_run(conn): + cur = conn.execute( + "INSERT INTO runs (script, version, started_at) VALUES (?, ?, datetime('now'))", + (SCRIPT_NAME, SCRIPT_VERSION) + ) + conn.commit() + return cur.lastrowid + + +def finish_run(conn, run_id, transferred, skipped, sync_updated=0, sync_deleted=0, errors=0): + conn.execute(""" + UPDATE runs SET finished_at=datetime('now'), + transferred=?, skipped=?, sync_updated=?, sync_deleted=?, errors=? + WHERE id=? + """, (transferred, skipped, sync_updated, sync_deleted, errors, run_id)) + conn.commit() + + +def db_log(conn, run_id, level, event, subject=None, folder=None, graph_id=None, detail=None): + conn.execute(""" + INSERT INTO log (run_id, level, event, subject, folder, graph_id, detail) + VALUES (?, ?, ?, ?, ?, ?, ?) + """, (run_id, level, event, subject, folder, graph_id, detail)) + conn.commit() + + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source, + entry_id=None, graph_id=None, is_read=0): + conn.execute(""" + INSERT OR IGNORE INTO messages + (message_id, subject, sender, received_at, folder, source, + entry_id, graph_id, is_read, jnj_folder) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source, + entry_id, graph_id, is_read, folder)) + conn.commit() + + +def _db_upload_due() -> bool: + marker = Path(DB_UPLOAD_MARKER) + if not marker.exists(): + return True + try: + last = datetime.fromisoformat(marker.read_text().strip()) + return (datetime.now() - last).total_seconds() >= DB_UPLOAD_INTERVAL_H * 3600 + except Exception: + return True + + +def _db_upload_mark(): + Path(DB_UPLOAD_MARKER).write_text(datetime.now().isoformat()) + + +def upload_db(db_path, force=False): + if not force and not _db_upload_due(): + return + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + _db_upload_mark() + + +def upload_msg(msg_path, filename, folder=""): + _upload_log.info("UPLOAD %s | folder=%s", filename, folder) + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + data={"folder": folder}, + timeout=60 + ) + resp.raise_for_status() + result = resp.json() + _upload_log.info("RESPONSE %s | %s", filename, result) + return result + + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + + +def get_item_folder_path(item): + """Reconstruct full folder path from an Outlook item, e.g. /vbuzalka@its.jnj.com/Inbox/Sub.""" + parts = [] + obj = item.Parent + while True: + try: + parts.insert(0, obj.Name) + obj = obj.Parent + except Exception: + break + return "/" + "/".join(parts) + + +def process_folder(conn, run_id, folder, source, folder_path="", counter=None, error_counter=None): + if counter is None: + counter = [0] + if error_counter is None: + error_counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + subject = getattr(item, 'Subject', '?') + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except Exception: + mid = None + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + graph_id = None + try: + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + result = upload_msg(tmp_path, safe_name, current_path) + + status = result.get("status", "?") + graph_id = result.get("graph_id") + is_read = 0 if item.UnRead else 1 + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + + save_to_db(conn, mid, subject, item.SenderEmailAddress, + received, current_path, source, + entry_id=item.EntryID, graph_id=graph_id, is_read=is_read) + db_log(conn, run_id, "INFO", f"upload_{status}", + subject=subject, folder=current_path, graph_id=graph_id) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {subject[:60]}") + + except Exception as e: + db_log(conn, run_id, "ERROR", "upload_error", + subject=subject, folder=current_path, detail=str(e)) + raise + + except Exception as e: + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + error_counter[0] += 1 + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + error_counter[0] += 1 + + for subfolder in folder.Folders: + process_folder(conn, run_id, subfolder, source, current_path, counter, error_counter) + + +def sync_recent(conn, run_id, ns): + """Sync last SYNC_DAYS days: detect deleted emails, read-status changes, folder moves.""" + cutoff = (datetime.now() - timedelta(days=SYNC_DAYS)).isoformat() + rows = conn.execute( + """SELECT message_id, entry_id, graph_id, is_read, jnj_folder + FROM messages + WHERE graph_id IS NOT NULL AND entry_id IS NOT NULL + AND received_at > ?""", + (cutoff,) + ).fetchall() + + print(f"\n=== Sync průchod: {len(rows)} záznamů za posledních {SYNC_DAYS} dní ===") + deleted = 0 + updated = 0 + errors = 0 + + for message_id, entry_id, graph_id, is_read, jnj_folder in rows: + found = False + current_read = None + current_folder = None + + try: + item = ns.GetItemFromID(entry_id) + current_read = 0 if item.UnRead else 1 + current_folder = get_item_folder_path(item) + found = True + except Exception: + pass + + if found: + read_changed = current_read != (is_read or 0) + folder_changed = current_folder != (jnj_folder or "") + + if not read_changed and not folder_changed: + continue + + payload = {"graph_id": graph_id} + if read_changed: + payload["is_read"] = bool(current_read) + if folder_changed: + payload["folder"] = current_folder + + try: + resp = requests.post( + "https://msgs.buzalka.cz/message-update", + headers={"Authorization": f"Bearer {TOKEN}"}, + json=payload, + timeout=30, + ) + resp.raise_for_status() + result = resp.json() + new_graph_id = result.get("graph_id", graph_id) + conn.execute( + "UPDATE messages SET is_read=?, jnj_folder=?, graph_id=? WHERE message_id=?", + (current_read, current_folder, new_graph_id, message_id) + ) + conn.commit() + updated += 1 + + if read_changed: + db_log(conn, run_id, "INFO", "sync_read_update", graph_id=new_graph_id, + detail=f"{is_read} → {current_read}") + if folder_changed: + db_log(conn, run_id, "INFO", "sync_folder_move", graph_id=new_graph_id, + folder=current_folder, detail=f"{jnj_folder} → {current_folder}") + + changes = [] + if read_changed: + changes.append(f"read={current_read}") + if folder_changed: + changes.append(f"folder={current_folder}") + print(f" UPDATE | {', '.join(changes)}") + + except Exception as e: + db_log(conn, run_id, "ERROR", "sync_update_failed", graph_id=graph_id, detail=str(e)) + logging.error("sync update failed | graph_id=%s | error=%s", graph_id, e) + errors += 1 + else: + try: + resp = requests.post( + "https://msgs.buzalka.cz/message-delete", + headers={"Authorization": f"Bearer {TOKEN}"}, + json={"graph_id": graph_id}, + timeout=30, + ) + resp.raise_for_status() + db_log(conn, run_id, "INFO", "sync_delete", graph_id=graph_id, folder=jnj_folder) + conn.execute("DELETE FROM messages WHERE message_id=?", (message_id,)) + conn.commit() + deleted += 1 + print(f" DELETE | graph_id={graph_id[:20]}...") + except Exception as e: + db_log(conn, run_id, "ERROR", "sync_delete_failed", graph_id=graph_id, detail=str(e)) + logging.error("sync delete failed | graph_id=%s | error=%s", graph_id, e) + errors += 1 + + print(f" → sync hotov: {updated} aktualizováno | {deleted} smazáno | {errors} chyb") + return updated, deleted, errors + + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +run_id = start_run(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +counter = [0] +error_counter = [0] +skipped_total = [0] + +for folder_id in FOLDERS_TO_PROCESS: + folder = ns.GetDefaultFolder(folder_id) + mailbox_name = folder.Parent.Name + print(f"\n=== {folder.Name} ({mailbox_name}) ===") + process_folder(conn, run_id, folder, "mailbox", f"/{mailbox_name}", counter, error_counter) + +sync_updated, sync_deleted, sync_errors = sync_recent(conn, run_id, ns) +error_counter[0] += sync_errors + +finish_run(conn, run_id, + transferred=counter[0], + skipped=skipped_total[0], + sync_updated=sync_updated, + sync_deleted=sync_deleted, + errors=error_counter[0]) + +print("\nFinální upload DB...") +upload_db(DB_PATH, force=True) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/EmailsImport/janssenpc_email_send_v1.1.py b/EmailsImport/janssenpc_email_send_v1.1.py new file mode 100644 index 0000000..6d83cf8 --- /dev/null +++ b/EmailsImport/janssenpc_email_send_v1.1.py @@ -0,0 +1,224 @@ +""" +janssenpc_email_send v1.1 +Verze: 1.1 +Datum: 2026-05-28 +Popis: Prochází všechny složky Outlooku (MAPI), ukládá emailové zprávy jako .msg + soubory a uploaduje je na https://msgs.buzalka.cz. Zaznamenává zpracované + zprávy do SQLite DB (jnjemails.db) a DB periodicky uploaduje na server. + Podporuje pokračování od posledního zpracovaného emailu (resume). + Nově: před startem zkontroluje jestli Outlook běží, pokud ne, spustí ho + automaticky (cesta z registru) a počká na inicializaci MAPI. +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import subprocess +import winreg +import time +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io +import psutil + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +def is_outlook_running(): + return any(p.name().lower() == "outlook.exe" for p in psutil.process_iter()) + +def find_outlook_path(): + try: + key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, + r"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\OUTLOOK.EXE") + path, _ = winreg.QueryValueEx(key, "") + winreg.CloseKey(key) + return path + except FileNotFoundError: + return None + +def ensure_outlook_running(): + outlook_path = find_outlook_path() + print(f"Cesta k Outlooku: {outlook_path}") + if is_outlook_running(): + print("Outlook již běží.") + else: + if not outlook_path: + print("CHYBA: Outlook nenalezen v registru.") + exit(1) + print("Outlook neběží, spouštím...") + subprocess.Popen([outlook_path]) + print("Čekám na inicializaci Outlooku", end="", flush=True) + for _ in range(30): + time.sleep(2) + print(".", end="", flush=True) + if is_outlook_running(): + break + print() + time.sleep(20) # dát čas MAPI vrstvě nastartovat + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def upload_db(db_path): + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + +def upload_msg(msg_path, filename): + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=30 + ) + resp.raise_for_status() + return resp.json()["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + print(f" CHYBA | {getattr(item, 'Subject', '?')[:40]} | {e}") + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +ensure_outlook_running() + +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +for i in range(1, ns.Folders.Count + 1): + root = ns.Folders.Item(i) + +# if "Archive" in root.Name: +# print(f"\n=== {root.Name} — přeskočeno ===") +# continue + + source = "mailbox" + print(f"\n=== {root.Name} ({source}) ===") + process_folder(conn, root, source) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print("\nHotovo.") diff --git a/EmailsImport/janssenpc_file_send_v2.1.py b/EmailsImport/janssenpc_file_send_v2.1.py new file mode 100644 index 0000000..15bcc11 --- /dev/null +++ b/EmailsImport/janssenpc_file_send_v2.1.py @@ -0,0 +1,248 @@ +# Název: janssenpc_file_send.py +# Verze: 2.1 +# Datum: 2026-05-28 +# Popis: Přejmenuje soubory ve složce ##JNJPrenos, odešle je na msgs.buzalka.cz +# a přesune do podsložky Trash. Loguje průběh do file_send.log vedle skriptu. +# Podporuje: PANORAMA Site Contacts (xlsx), Panorama Dashboard (xlsx), +# Site Visit Report (xlsx), Follow-Up Letter (xlsx), +# Clario MayoScore (csv), Clario MayoDiary (csv). + +import os +import time +import shutil +import requests +import pandas as pd +from pathlib import Path +from datetime import datetime + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload-dropbox" +SOURCE_DIR = Path(r"C:\Users\vbuzalka\OneDrive - JNJ\##JNJPrenos") +TRASH_DIR = SOURCE_DIR / "Trash" +LOG_FILE = Path(__file__).parent / "file_send.log" + +MAYO_DIARY_COLUMNS = [ + 'Protocol', 'Country', 'Site', 'PI Name', 'Subject ID', + 'Report Date', 'Report Start Date/Time', 'Report End Date/Time', + 'Stool Frequency', 'Form Number', 'Role', 'Original Source', +] + +MAYO_SCORE_COLUMNS = [ + 'Protocol', 'Study Population', 'Country', 'Site', 'Principal Investigator', + 'Participant ID', 'Baseline Stool Frequency', 'Visit', 'Visit Date', + 'Endoscopy Completed?', 'Central Endoscopy Score', 'Local Endoscopy Score', + 'Partial Mayo Score', 'Full Mayo Score', +] + +PANORAMA_COLUMNS = [ + 'Part', 'Source', 'Sector', 'TA', 'Protocol ID', 'Interventional', + 'Region', 'Country Name', 'Institution Name', 'Site City', + 'Site Zip/Postal Code', 'Site Address', 'MSID', 'Site ID', + 'Site Status', 'SM Full Name', 'PI Name', 'St F Subj Enr Act', + 'ID', 'Category', 'Type', 'Priority', 'Severity', 'Description', + 'Brief Description - Subject ID', 'Comments', 'Created By', + 'Create Date', 'Last Modified Date', 'Start Date', 'Due Date', + 'End Date', 'Status', 'Days Outstanding', 'Action Taken', + 'Escalated To', 'Visit Report Status', 'Visit Report Approved', + 'Visit Report Type', 'Visit Report Status End Date', 'Active', + 'Association', 'Deviation', 'Deviation Closed Date', 'Reason For Exclusion' +] + + +def log(msg: str): + ts = datetime.now().strftime('%Y-%m-%d %H:%M:%S') + line = f"[{ts}] {msg}" + print(line) + with LOG_FILE.open("a", encoding="utf-8") as lf: + lf.write(line + "\n") + + +def move_to_trash(f: Path): + TRASH_DIR.mkdir(exist_ok=True) + dest = TRASH_DIR / f.name + if dest.exists(): + ts = datetime.now().strftime('%Y%m%d_%H%M%S') + dest = TRASH_DIR / f"{f.stem}_{ts}{f.suffix}" + shutil.move(str(f), dest) + + +def get_timestamp(file_path: str) -> str: + return datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d_%H-%M-%S') + + +def prejmenuj(directory: Path) -> None: + log(f"--- Přejmenování, adresář: {directory} ---") + files = [f for f in directory.iterdir() if f.is_file()] + log(f" Nalezeno souborů: {len(files)} — {[f.name for f in files]}") + + for f in files: + filename = f.name + file_path = str(f) + + # 0a. CLARIO MAYO DIARY (CSV) + if 'MAYO-DIARY' in filename and filename.endswith('.csv'): + log(f" Detekován MayoDiary: {filename}") + try: + df = pd.read_csv(file_path) + missing = set(MAYO_DIARY_COLUMNS) - set(df.columns) + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol: {list(protocols)}") + if len(protocols) > 0: + study = str(protocols[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Clario MayoDiary.csv" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # 0b. CLARIO MAYO SCORE (CSV) + if 'Custom.MayoScoreReport' in filename and filename.endswith('.csv'): + log(f" Detekován MayoScore: {filename}") + try: + df = pd.read_csv(file_path) + missing = set(MAYO_SCORE_COLUMNS) - set(df.columns) + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol: {list(protocols)}") + if len(protocols) > 0: + study = str(protocols[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Clario MayoScore.csv" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # Ostatní — jen xlsx + if not filename.endswith('.xlsx'): + log(f" Přeskočeno (neznámý typ): {filename}") + continue + + # 1a. PANORAMA SITE CONTACTS (XLSX) — soubor pojmenovaný "PANORAMA Dashboard" + if 'PANORAMA Dashboard' in filename: + log(f" Detekován PANORAMA Site Contacts: {filename}") + try: + with pd.ExcelFile(file_path) as xl: + sheet_names = xl.sheet_names + if 'Site Contacts' in sheet_names: + df_a1 = xl.parse('Site Contacts', nrows=1, header=None) + a1 = str(df_a1.iloc[0, 0]) if not df_a1.empty else '' + else: + a1 = None + # soubor je nyní zavřen — přejmenování proběhne bez chyby + if a1 is None: + log(f" PŘESKOČENO: List 'Site Contacts' nenalezen.") + elif 'Title: Site Contacts' in a1: + new_name = f"{get_timestamp(file_path)} PANORAMA Site Contacts.xlsx" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" PŘESKOČENO: A1 neodpovídá vzoru ({a1[:50]})") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # 1. PANORAMA DASHBOARD (XLSX) + if 'Panorama Dashboard' in filename: + log(f" Detekován Panorama: {filename}") + try: + df = pd.read_excel(file_path, skiprows=5) + missing = set(PANORAMA_COLUMNS) - set(df.columns) + if not missing: + ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID: {list(ids)}") + if len(ids) > 0: + study = str(ids[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Panorama Deviations and Issues.xlsx" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # 2. SITE VISIT REPORT A FOLLOW-UP LETTER (XLSX) + try: + df_a1 = pd.read_excel(file_path, nrows=1, header=None) + if not df_a1.empty: + a1 = str(df_a1.iloc[0, 0]) + log(f" A1: {a1[:80]}") + is_site_visit = "Title: Site Visit Report Details" in a1 + is_follow_up = "Title: Follow-Up Letter Details" in a1 + + if is_site_visit or is_follow_up: + suffix = "Site Visit Details.xlsx" if is_site_visit else "FUL details.xlsx" + log(f" Detekován {'Site Visit' if is_site_visit else 'Follow-Up Letter'}: {filename}") + df = pd.read_excel(file_path, skiprows=5) + if 'Protocol ID' in df.columns: + ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID: {list(ids)}") + if len(ids) > 0: + study = str(ids[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} {suffix}" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupec Protocol ID.") + else: + log(f" Přeskočeno (neznámý xlsx obsah): {filename}") + except Exception as e: + log(f" CHYBA: {e}") + + log("--- Přejmenování dokončeno ---") + + +# === HLAVNÍ LOGIKA === + +log("=== Spuštění ===") +log(f"Zdrojový adresář: {SOURCE_DIR} (existuje: {SOURCE_DIR.exists()})") + +# 1. Přejmenuj +prejmenuj(SOURCE_DIR) + +# 2. Počkej 10 vteřin +log("Čekám 10 vteřin...") +time.sleep(10) + +# 3. Odešli soubory +files = [f for f in SOURCE_DIR.iterdir() if f.is_file()] +log(f"Souborů k odeslání: {len(files)}") +for f in files: + log(f" Nalezen: {f.name}") + +if not files: + log("Žádné soubory k odeslání.") +else: + for f in files: + try: + with f.open("rb") as fh: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (f.name, fh, "application/octet-stream")}, + timeout=120, + ) + resp.raise_for_status() + status = resp.json().get('status', '?').upper() + log(f" {status:10} | {f.name}") + move_to_trash(f) + log(f" PŘESUNUTO | {f.name} -> Trash") + except Exception as e: + log(f" CHYBA | {f.name} | {e}") + +log("=== Hotovo ===") diff --git a/EmailsImport/janssenpc_file_watch.py b/EmailsImport/janssenpc_file_watch.py new file mode 100644 index 0000000..d945de0 --- /dev/null +++ b/EmailsImport/janssenpc_file_watch.py @@ -0,0 +1,59 @@ +import time +import requests +from pathlib import Path +from watchdog.observers import Observer +from watchdog.events import FileSystemEventHandler + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload-dropbox" +SOURCE_DIR = Path(r"C:\Users\vbuzalka\OneDrive - JNJ\##JNJPrenos") + + +def upload_file(f: Path): + time.sleep(2) + if not f.exists() or not f.is_file(): + return + try: + with f.open("rb") as fh: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (f.name, fh, "application/octet-stream")}, + timeout=120, + ) + resp.raise_for_status() + print(f" UPLOADED | {f.name}") + f.unlink() + except Exception as e: + print(f" CHYBA | {f.name} | {e}") + + +class NewFileHandler(FileSystemEventHandler): + def on_created(self, event): + if event.is_directory: + return + upload_file(Path(event.src_path)) + + def on_moved(self, event): + if event.is_directory: + return + upload_file(Path(event.dest_path)) + + +if __name__ == "__main__": + # Při startu odešli soubory, které už tam jsou + for f in SOURCE_DIR.iterdir(): + if f.is_file(): + upload_file(f) + + observer = Observer() + observer.schedule(NewFileHandler(), str(SOURCE_DIR), recursive=False) + observer.start() + print(f"Hlídám: {SOURCE_DIR}") + + try: + while True: + time.sleep(1) + except KeyboardInterrupt: + observer.stop() + observer.join() diff --git a/EmailsImport/mcp_jnjemails.py b/EmailsImport/mcp_jnjemails.py new file mode 100644 index 0000000..afcd08a --- /dev/null +++ b/EmailsImport/mcp_jnjemails.py @@ -0,0 +1,164 @@ +#!/usr/bin/env python3 +""" +mcp_jnjemails.py | v1.0 | 2026-06-01 +MCP server pro dotazování SQLite DB jnjemails (EmailsImport pipeline). +Automaticky načte nejnovější jnjemails_*.db z \\tower\JNJEMAILS\db\. +""" +import sqlite3 +import sys +from pathlib import Path + +from mcp.server.fastmcp import FastMCP + +DB_DIR = Path(r"\\tower\JNJEMAILS\db") + + +def log(msg: str): + print(msg, file=sys.stderr, flush=True) + + +def get_latest_db() -> Path: + files = sorted(DB_DIR.glob("jnjemails_*.db"), key=lambda f: f.name) + if not files: + raise FileNotFoundError(f"Žádný jnjemails_*.db soubor v {DB_DIR}") + return files[-1] + + +def query(sql: str, params=()) -> list[dict]: + db_path = get_latest_db() + conn = sqlite3.connect(db_path) + conn.row_factory = sqlite3.Row + try: + cur = conn.execute(sql, params) + return [dict(row) for row in cur.fetchall()] + finally: + conn.close() + + +mcp = FastMCP("jnjemails") + + +@mcp.tool() +def db_info() -> dict: + """Informace o aktuální DB: cesta, velikost, název souboru.""" + db_path = get_latest_db() + size_kb = db_path.stat().st_size // 1024 + return { + "path": str(db_path), + "file": db_path.name, + "size_kb": size_kb, + } + + +@mcp.tool() +def last_run() -> list[dict]: + """Kompletní log posledního běhu (runs + log tabulky).""" + return query(""" + SELECT r.script, r.version, r.started_at, r.finished_at, + r.transferred, r.skipped, r.errors, + l.level, l.event, l.subject, l.folder, l.detail, l.created_at + FROM log l + JOIN runs r ON r.id = l.run_id + WHERE l.run_id = (SELECT MAX(id) FROM runs) + ORDER BY l.created_at + """) + + +@mcp.tool() +def list_runs(limit: int = 20) -> list[dict]: + """Přehled všech běhů skriptů (nejnovější nahoře).""" + return query(""" + SELECT id, script, version, started_at, finished_at, + transferred, skipped, errors + FROM runs + ORDER BY started_at DESC + LIMIT ? + """, (limit,)) + + +@mcp.tool() +def errors_last_run() -> list[dict]: + """Chyby z posledního běhu.""" + return query(""" + SELECT l.event, l.subject, l.folder, l.detail, l.created_at + FROM log l + WHERE l.run_id = (SELECT MAX(id) FROM runs) + AND l.level = 'ERROR' + ORDER BY l.created_at + """) + + +@mcp.tool() +def run_log(run_id: int) -> list[dict]: + """Log konkrétního běhu podle ID (z list_runs).""" + return query(""" + SELECT level, event, subject, folder, graph_id, detail, created_at + FROM log + WHERE run_id = ? + ORDER BY created_at + """, (run_id,)) + + +@mcp.tool() +def search_messages(subject: str = "", sender: str = "", folder: str = "", limit: int = 50) -> list[dict]: + """Hledání v přenesených emailech. Všechny parametry jsou volitelné (LIKE, case-insensitive).""" + conditions = [] + params = [] + if subject: + conditions.append("subject LIKE ?") + params.append(f"%{subject}%") + if sender: + conditions.append("sender LIKE ?") + params.append(f"%{sender}%") + if folder: + conditions.append("jnj_folder LIKE ?") + params.append(f"%{folder}%") + where = f"WHERE {' AND '.join(conditions)}" if conditions else "" + params.append(limit) + return query(f""" + SELECT id, message_id, subject, sender, received_at, + jnj_folder, graph_id, is_read, source, uploaded_at + FROM messages + {where} + ORDER BY received_at DESC + LIMIT ? + """, params) + + +@mcp.tool() +def messages_stats() -> dict: + """Statistiky: celkový počet emailů, podle source, podle složky (top 10).""" + total = query("SELECT COUNT(*) as cnt FROM messages")[0]["cnt"] + by_source = query("SELECT source, COUNT(*) as cnt FROM messages GROUP BY source ORDER BY cnt DESC") + by_folder = query(""" + SELECT jnj_folder, COUNT(*) as cnt FROM messages + WHERE jnj_folder IS NOT NULL + GROUP BY jnj_folder + ORDER BY cnt DESC + LIMIT 10 + """) + no_graph = query("SELECT COUNT(*) as cnt FROM messages WHERE graph_id IS NULL")[0]["cnt"] + return { + "total": total, + "no_graph_id": no_graph, + "by_source": by_source, + "top_folders": by_folder, + } + + +@mcp.tool() +def sql(query_str: str) -> list[dict]: + """Libovolný SELECT dotaz proti DB. Pouze SELECT (ostatní jsou blokovány).""" + stripped = query_str.strip().upper() + if not stripped.startswith("SELECT"): + return [{"error": "Povoleny jsou pouze SELECT dotazy."}] + try: + return query(query_str) + except Exception as e: + return [{"error": str(e)}] + + +if __name__ == "__main__": + db_path = get_latest_db() + log(f"jnjemails MCP server — DB: {db_path.name}") + mcp.run() diff --git a/EmailsImport/parse_emails_errors.log b/EmailsImport/parse_emails_errors.log new file mode 100644 index 0000000..f79dbde --- /dev/null +++ b/EmailsImport/parse_emails_errors.log @@ -0,0 +1,15 @@ +2026-06-01 14:58:02 | open failed [899C0000969E661B0000.msg]: Attachment method missing on attachment __attach_version1.0_#00000002, and it could not be determined automatically. +2026-06-01 14:59:10 | open failed [899C0000987BE65C0000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 14:59:39 | open failed [899C00009A2FBD760000.msg]: Attachment method missing on attachment __attach_version1.0_#00000002, and it could not be determined automatically. +2026-06-01 14:59:56 | open failed [899C00009B8A9A000000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:00:07 | open failed [899C00009C3844690000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:00:17 | open failed [899C00009C3844720000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:08:39 | open failed [899C0000A4683A4B0000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:09:12 | open failed [899C0000A5CC64F40000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:09:32 | open failed [899C0000A5CC64FE0000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:18:06 | open failed [899C0000B30157A10000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:18:08 | open failed [899C0000B30157A80000.msg]: Attachments of type data MUST have a data stream. +2026-06-01 15:18:50 | open failed [899C0000B588253A0000.msg]: Attachment method missing on attachment __attach_version1.0_#00000003, and it could not be determined automatically. +2026-06-01 15:22:48 | open failed [899C0000BE168C140000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:24:07 | open failed [899C0000C0CF55D50000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. +2026-06-01 15:24:18 | open failed [899C0000C1CA96890000.msg]: Attachment method missing on attachment __attach_version1.0_#00000001, and it could not be determined automatically. diff --git a/EmailsImport/parse_emails_v1.0.md b/EmailsImport/parse_emails_v1.0.md new file mode 100644 index 0000000..34e2727 --- /dev/null +++ b/EmailsImport/parse_emails_v1.0.md @@ -0,0 +1,322 @@ +# parse_emails_v1.0 + +**Název:** parse_emails_v1.0.py +**Verze:** 1.0 +**Datum:** 2026-06-01 +**Autor:** vladimir.buzalka + +--- + +## Účel + +Jednorázový import všech `.msg` souborů do MongoDB. Z každého souboru extrahuje **všechny dostupné vlastnosti** — podobně jako EXIF u fotek. + +- **DB:** `emaily` +- **Kolekce:** `vbuzalka@its.jnj.com` +- `_id` = Internet Message-ID (nebo `filename:` jako fallback) +- Bezpečné přerušit a opakovat — upsert podle `_id` + +--- + +## Zdroje dat + +Výhradně `.msg` soubory — žádná závislost na SQLite ani jiné DB. + +| Z každého .msg se extrahuje | +|---| +| Předmět, normalized subject | +| Odesílatel (email, jméno, SMTP adresa) | +| Příjemci To/CC/BCC — strukturovaně `[{type, email, name}]` | +| Čas doručení a odeslání (UTC) | +| Tělo plaintext + HTML (max 2 MB) | +| Přílohy — metadata: jméno, velikost, MIME typ, inline flag | +| Internet headers — X-Originating-IP, Received, DKIM, X-Mailer, ... | +| MAPI: důležitost, citlivost, příznak, konverzační vlákno, kategorie | +| In-Reply-To, References — pro rekonstrukci vlákna | +| Všechny raw MAPI properties jako `{0xXXXX: value}` | + +--- + +## Konfigurace + +Konstanty přímo v kódu: + +| Konstanta | Hodnota | +|---|---| +| `MSGS_DIR` | `\\tower\JNJEMAILS` | +| `MONGO_URI` | `mongodb://192.168.1.76:27017` | +| `MONGO_DB` | `emaily` | +| `MONGO_COL` | `vbuzalka@its.jnj.com` | +| `BATCH_SIZE` | 200 dokumentů na jeden bulk_write | +| `LOG_FILE` | `parse_emails_errors.log` (vedle skriptu) | + +--- + +## Spouštění + +**Venv:** `U:\PythonProject\Janssen\.venv\Scripts\python.exe` + +**1. spuštění — kompletní import:** +```cmd +"U:\PythonProject\Janssen\.venv\Scripts\python.exe" "U:\PythonProject\Janssen\EmailsImport\parse_emails_v1.0.py" +``` + +**Pokračování po přerušení (druhý den):** +```cmd +"U:\PythonProject\Janssen\.venv\Scripts\python.exe" "U:\PythonProject\Janssen\EmailsImport\parse_emails_v1.0.py" --skip-existing +``` + +**Test na malém vzorku:** +```cmd +"U:\PythonProject\Janssen\.venv\Scripts\python.exe" "U:\PythonProject\Janssen\EmailsImport\parse_emails_v1.0.py" --limit 50 --no-indexes +``` + +### Všechny parametry + +| Parametr | Popis | +|---|---| +| `--skip-existing` | Načte seznam hotových souborů z MongoDB a přeskočí je. Použij pro pokračování po přerušení. | +| `--limit N` | Zpracuje jen prvních N souborů. Vhodné pro test. | +| `--no-indexes` | Nevytváří indexy na konci. Použij pokud je přerušíš uprostřed — indexy vytvoř ručně až je vše hotové. | + +--- + +## Průběh na konzoli + +Každý email na jednom řádku: +``` + 1/69371 OK RE: Protocol deviation CZ10022 jan.novak@its.jnj.com + 2/69371 OK UCO3001: Draft FUL pro DD5-CZ10022 monitor@4gclinical.com + 3/69371 ERR ? ? +``` + +Každých 500 emailů oddělovač s průběhem: +``` + ──────────────────────────────────────────────────────────────────────────────── + Průběh: ok=498 err=2 0.4 msg/s ETA 47h12m + ──────────────────────────────────────────────────────────────────────────────── +``` + +Na konci souhrn: +``` +==================================================== +Vysledek: ok=69300 | skip=0 | err=71 +Celkovy cas: 47h 23m 10s +Dokumentu v kolekci: 69300 +``` + +--- + +## Struktura dokumentu v MongoDB + +```json +{ + "_id": "", + "filename": "7A3F...0000.msg", + + "subject": "RE: Protocol deviation CZ10022", + "normalized_subject": "Protocol deviation CZ10022", + "importance": 1, + "sensitivity": 0, + "flag_status": 0, + "read_receipt_requested": false, + "delivery_receipt_requested": false, + "has_attachments": true, + "attachment_count": 1, + "message_size_bytes": 284512, + + "conversation_topic": "Protocol deviation CZ10022", + "conversation_index": "AcqX...", + "in_reply_to": "", + "internet_references": ["", ""], + "categories": ["UCO3001"], + + "received_at": "2026-05-15T09:23:11", + "sent_at": "2026-05-15T09:21:44", + + "sender": { + "email": "jan.novak@its.jnj.com", + "name": "Novák Jan", + "smtp": "jan.novak@its.jnj.com" + }, + "to": "vladimir.buzalka@its.jnj.com", + "cc": "petra.free@its.jnj.com", + "bcc": "", + "display_to": "Buzalka Vladimir", + "display_cc": "Free Petra", + "recipients": [ + { "type": "to", "email": "vbuzalka@its.jnj.com", "name": "Buzalka Vladimir" }, + { "type": "cc", "email": "petra.free@its.jnj.com", "name": "Free Petra" } + ], + + "body_text": "Dobrý den,\n\nposílám...", + "body_html": "...", + + "attachments": [ + { + "filename": "PD_report_CZ10022.pdf", + "size_bytes": 284512, + "mime_type": "application/pdf", + "content_id": null, + "is_inline": false + } + ], + + "headers": { + "message_id": "", + "x_originating_ip": "10.24.1.55", + "x_mailer": "Microsoft Outlook 16.0", + "received": ["from SMTP01...", "from EX2019..."], + "x_spam_status": "No" + }, + + "mapi": { + "0x0017": 1, + "0x0036": 0, + "0x0070": "Protocol deviation CZ10022", + "0x1035": "", + "0x1042": "" + }, + + "parsed_at": "2026-06-01T20:00:00" +} +``` + +--- + +## Hodnotové kódy + +| Pole | Hodnota | Význam | +|---|---|---| +| `importance` | 0 | Nízká | +| | 1 | Normální | +| | 2 | Vysoká | +| `sensitivity` | 0 | Normální | +| | 1 | Osobní | +| | 2 | Soukromé | +| | 3 | Důvěrné | +| `flag_status` | 0 | Bez příznaku | +| | 1 | Označeno (follow up) | +| | 2 | Dokončeno | + +--- + +## MongoDB indexy + +Automaticky vytvořeny na konci importu (`--no-indexes` přeskočí): + +| Index | Pole | +|---|---| +| Chronologický | `received_at`, `sent_at` | +| Odesílatel | `sender.email` | +| Soubor | `filename` (unique) | +| Konverzace | `conversation_topic` | +| Filtry | `has_attachments`, `categories`, `importance`, `flag_status` | +| Full-text | `subject` + `body_text` + `to` + `cc` (text index `text_search`) | + +--- + +## Ukázkové dotazy (MongoDB shell / MCP) + +**Emaily o UCO3001 s přílohou:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + $text: { $search: "UCO3001" }, + has_attachments: true +}).sort({ received_at: -1 }) +``` + +**Emaily od konkrétního odesílatele:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + "sender.email": /covance/i +}).sort({ received_at: -1 }) +``` + +**Celé konverzační vlákno:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + conversation_topic: "Protocol deviation CZ10022" +}).sort({ received_at: 1 }) +``` + +**Označené emaily (follow up):** +```javascript +db["vbuzalka@its.jnj.com"].find({ flag_status: 1 }) +``` + +**Vysoká priorita s přílohou:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + importance: 2, + has_attachments: true +}).sort({ received_at: -1 }) +``` + +**Statistiky podle odesílatele (top 20):** +```javascript +db["vbuzalka@its.jnj.com"].aggregate([ + { $group: { _id: "$sender.email", count: { $sum: 1 } } }, + { $sort: { count: -1 } }, + { $limit: 20 } +]) +``` + +**Emaily s PDF přílohou:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + "attachments.mime_type": "application/pdf" +}) +``` + +**Hledání v těle emailu:** +```javascript +db["vbuzalka@its.jnj.com"].find({ + $text: { $search: "inactivation notification" } +}) +``` + +--- + +## Chybový log + +Soubory které selhaly jsou zalogrovány do `parse_emails_errors.log` vedle skriptu: +``` +2026-06-01 20:14:33 | open failed [7A3F...0000.msg]: +2026-06-01 20:15:01 | extract_message failed [8B2C...0000.msg]: +``` + +--- + +## Výkon + +| Parametr | Hodnota | +|---|---| +| Počet souborů | ~69 000 | +| Rychlost | ~0.4 msg/s (síť SMB + htmlBody dekódování) | +| Odhadovaný čas | 48 hodin (přes noc, s pokračováním) | +| Batch size | 200 dokumentů / bulk_write | +| Odhadovaná velikost DB | 2–5 GB | + +--- + +## Závislosti + +``` +extract-msg==0.55.0 +pymongo +python-dateutil +``` + +Instalace do venv: +```cmd +"U:\PythonProject\Janssen\.venv\Scripts\pip.exe" install extract-msg pymongo python-dateutil +``` + +--- + +## Historie verzí + +| Verze | Datum | Změna | +|---|---|---| +| 1.0 | 2026-06-01 | Iniciální verze | diff --git a/EmailsImport/parse_emails_v1.0.py b/EmailsImport/parse_emails_v1.0.py new file mode 100644 index 0000000..6a119da --- /dev/null +++ b/EmailsImport/parse_emails_v1.0.py @@ -0,0 +1,644 @@ +""" +parse_emails_v1.0.py +Nazev: parse_emails_v1.0.py +Verze: 1.0 +Datum: 2026-06-01 +Autor: vladimir.buzalka + +Popis: + Parsuje vsechny .msg soubory z MSGS_DIR a importuje je jako dokumenty + do MongoDB. Z kazdeho souboru extrahuje VSECHNY dostupne vlastnosti — + podobne jako EXIF u fotek: + + - predmet, odesilatel, prijemci (To/CC/BCC s typy) + - cas doruceni a odeslani (UTC) + - telo plaintext + HTML (max 2 MB) + - prilohy (metadata: jmeno, velikost, MIME typ, inline flag) + - internet headers (X-Originating-IP, Received, DKIM, ...) + - MAPI vlastnosti: dulezitost, citlivost, priznak, konverzacni vlakno, + kategorie, In-Reply-To, References, ... + - vsechny raw MAPI properties jako {0xXXXX: value} + + DB: emaily + Kolekce: vbuzalka@its.jnj.com + _id: Internet Message-ID (nebo "filename:" jako fallback) + + Bezpecne prerusit a opakovat: + - upsert podle _id — duplicity se automaticky prepisi + - --skip-existing nacte seznam hotovych souboru z MongoDB a + preskoci je => pokracovani po preruseni bez ztraty prace + +Spousteni: + python parse_emails_v1.0.py # kompletni import + python parse_emails_v1.0.py --limit 50 # test na prvnich 50 + python parse_emails_v1.0.py --skip-existing # pokracovani po preruseni + python parse_emails_v1.0.py --no-indexes # bez vytvoreni indexu na konci + +Vystup na konzoli: + Kazdy email na jednom radku: + / OK/ERR + Kazych 500 emailu: oddelovac s prubehem, rychlosti a ETA. + Na konci: souhrn ok/skip/err, celkovy cas, pocet dokumentu v kolekci. + +Zavislosti: + pymongo, extract-msg, python-dateutil + Python 3.10+, Windows nebo Linux + Pristup k \\\\tower\\JNJEMAILS (SMB share) + MongoDB na 192.168.1.76:27017 + +Struktura dokumentu v MongoDB: + _id Internet Message-ID (nebo filename: fallback) + filename jmeno .msg souboru (20znakovy hex + .msg) + subject predmet zpravy + normalized_subject predmet bez RE:/FW: prefixu + importance 0=nizka 1=normalni 2=vysoka + sensitivity 0=normalni 1=osobni 2=soukrome 3=duverne + flag_status 0=bez priznaku 1=oznaceno 2=dokonceno + read_receipt_requested bool + delivery_receipt_requested bool + has_attachments bool + attachment_count int + message_size_bytes velikost .msg souboru na disku + conversation_topic tema vlakna (PR_CONVERSATION_TOPIC) + conversation_index base64 PR_CONVERSATION_INDEX + in_reply_to Message-ID predchozi zpravy + internet_references [Message-ID] — cela historia vlakna + categories [str] — MAPI kategorie / stitky + read_receipt_requested bool + delivery_receipt_requested bool + received_at datetime UTC — cas doruceni + sent_at datetime UTC — cas odeslani + sender.email emailova adresa odesilatele + sender.name zobrazovane jmeno odesilatele + sender.smtp SMTP adresa (pro interni EX adresy) + to retezec To (tak jak v Outlooku) + cc retezec CC + bcc retezec BCC + display_to PR_DISPLAY_TO (zkraceny seznam) + display_cc PR_DISPLAY_CC + recipients [{type, email, name}] — to/cc/bcc s typy + body_text plain text telo + body_html HTML telo (max 2 MB, None pokud neni) + attachments [{filename, size_bytes, mime_type, + content_id, is_inline}] + headers dict internet headers (lowercase_s_podtrzitky) + mapi dict vsech raw MAPI properties {0xXXXX: value} + parsed_at datetime UTC — cas parsovani + +Indexy (vytvoreny automaticky na konci): + received_at, sent_at, sender.email, filename (unique), + conversation_topic, has_attachments, categories, importance, + flag_status, text_search (subject + body_text + to + cc) + +Chyby: + Soubory ktere selhaly jsou zalogiovany do parse_emails_errors.log + v adresari skriptu. Radek: timestamp | open/extract failed | duvod. + +Historie verzi: + 1.0 2026-06-01 Inicialni verze +""" + +import sys +import re +import logging +import argparse +import base64 +from pathlib import Path +from datetime import datetime, timezone +from typing import Optional + +import extract_msg +from dateutil import parser as dtparser +from pymongo import MongoClient, UpdateOne, ASCENDING, TEXT + +if hasattr(sys.stdout, "reconfigure"): + sys.stdout.reconfigure(encoding="utf-8", errors="replace") + +# ─── KONFIGURACE ────────────────────────────────────────────────────────────── +MSGS_DIR = Path(r"\\tower\JNJEMAILS") +MONGO_URI = "mongodb://192.168.1.76:27017" +MONGO_DB = "emaily" +MONGO_COL = "vbuzalka@its.jnj.com" +BATCH_SIZE = 200 +LOG_FILE = Path(__file__).parent / "parse_emails_errors.log" +SCRIPT_VERSION = "1.0" +# ────────────────────────────────────────────────────────────────────────────── + +logging.basicConfig( + filename=str(LOG_FILE), + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + + +# ─── Pomocné funkce ─────────────────────────────────────────────────────────── + +def safe(obj, *attrs, default=None): + """Bezpecne cteni atributu — vrati prvni non-None hodnotu.""" + for attr in attrs: + try: + val = getattr(obj, attr, None) + if val is None: + continue + if isinstance(val, str) and not val.strip(): + continue + return val + except Exception: + continue + return default + + +def parse_date(raw) -> Optional[datetime]: + """Libovolny datum -> UTC datetime bez tzinfo (pro MongoDB).""" + if raw is None: + return None + if isinstance(raw, datetime): + if raw.tzinfo: + return raw.astimezone(timezone.utc).replace(tzinfo=None) + return raw + try: + dt = dtparser.parse(str(raw)) + if dt.tzinfo: + return dt.astimezone(timezone.utc).replace(tzinfo=None) + return dt + except Exception: + return None + + +def to_bson(val): + """Konvertuje hodnotu na BSON-serializovatelny typ.""" + if isinstance(val, bytes): + return val.hex() if len(val) <= 128 else f"" + if isinstance(val, datetime): + return parse_date(val) + if isinstance(val, (str, int, float, bool, type(None))): + return val + if isinstance(val, list): + return [to_bson(v) for v in val] + try: + return int(val) + except Exception: + pass + return str(val) + + +# ─── Extrakce částí zprávy ──────────────────────────────────────────────────── + +def extract_headers(msg) -> dict: + headers = {} + try: + hdr = msg.header + if not hdr: + return {} + from email.header import decode_header as _dh + + def _decode(v: str) -> str: + try: + parts = _dh(v) + out = "" + for part, enc in parts: + out += part.decode(enc or "utf-8", errors="replace") if isinstance(part, bytes) else part + return out + except Exception: + return v + + for key in set(hdr.keys()): + k = key.lower().replace("-", "_") + vals = [_decode(v) for v in hdr.get_all(key, [])] + headers[k] = vals if len(vals) > 1 else (vals[0] if vals else "") + except Exception as e: + logging.error("extract_headers: %s", e) + return headers + + +def extract_recipients(msg) -> list: + result = [] + type_map = {1: "to", 2: "cc", 3: "bcc"} + try: + for r in msg.recipients: + rtype = getattr(r, "type", 1) + try: + rtype = int(rtype) + except Exception: + try: + rtype = int(rtype.value) + except Exception: + rtype = 1 + rec = { + "type": type_map.get(rtype, "to"), + "email": safe(r, "email", default=""), + "name": safe(r, "name", default=""), + } + result.append(rec) + except Exception as e: + logging.error("extract_recipients: %s", e) + return result + + +def extract_attachments(msg) -> list: + result = [] + try: + for att in msg.attachments: + fname = safe(att, "longFilename", "shortFilename", default="") + if not fname: + continue + size = 0 + try: + d = att.data + size = len(d) if d else 0 + except Exception: + pass + result.append({ + "filename": fname, + "size_bytes": size, + "mime_type": safe(att, "mimetype", "mimeType", default="application/octet-stream"), + "content_id": safe(att, "cid", default=None), + "is_inline": bool(safe(att, "isInline", default=False)), + }) + except Exception as e: + logging.error("extract_attachments: %s", e) + return result + + +def extract_mapi_props(msg) -> dict: + """Vsechny raw MAPI properties jako {0xXXXX: value}.""" + result = {} + try: + props = msg.props + if not hasattr(props, "items"): + return {} + for key, prop in props.items(): + try: + val = to_bson(prop.value) + prop_id = f"0x{key[:4].upper()}" if len(key) >= 4 else f"0x{key.upper()}" + result[prop_id] = val + except Exception: + pass + except Exception as e: + logging.error("extract_mapi_props: %s", e) + return result + + +# ─── Hlavní extrakce ───────────────────────────────────────────────────────── + +def extract_message(msg_path: Path) -> Optional[dict]: + """Parsuje jeden .msg soubor -> MongoDB dokument.""" + try: + msg = extract_msg.Message(str(msg_path)) + except Exception as e: + logging.error("open failed [%s]: %s", msg_path.name, e) + return None + + try: + # ── Message-ID ──────────────────────────────────────────────── + mid = None + for attr in ("messageId", "message_id", "internetMessageId"): + mid = safe(msg, attr) + if mid: + break + if not mid: + mid = f"filename:{msg_path.stem}" + mid = str(mid).strip() + + # ── Předmět ─────────────────────────────────────────────────── + try: + subject = msg.subject or "" + except Exception: + subject = "" + + normalized_subject = safe(msg, "normalizedSubject", "normalized_subject", default="") + + # ── Tělo ────────────────────────────────────────────────────── + try: + body_text = msg.body or "" + except Exception: + body_text = "" + + body_html = None + try: + bh = msg.htmlBody + if isinstance(bh, bytes): + bh = bh.decode("utf-8", errors="replace") + if bh: + body_html = bh if len(bh) <= 2 * 1024 * 1024 else bh[:2 * 1024 * 1024] + except Exception: + pass + + # ── Odesílatel ──────────────────────────────────────────────── + try: + sender_email = msg.sender or "" + except Exception: + sender_email = "" + + sender_name = safe(msg, "senderName", "sender_name", default="") + sender_smtp = safe(msg, "senderSmtpAddress", "sent_representing_smtp_address", default="") + + # ── Příjemci ────────────────────────────────────────────────── + recipients = extract_recipients(msg) + + try: + to_raw = msg.to or "" + except Exception: + to_raw = "" + try: + cc_raw = msg.cc or "" + except Exception: + cc_raw = "" + try: + bcc_raw = getattr(msg, "bcc", None) or "" + except Exception: + bcc_raw = "" + + display_to = safe(msg, "displayTo", "display_to", default="") + display_cc = safe(msg, "displayCc", "display_cc", default="") + + # ── Časy ────────────────────────────────────────────────────── + try: + received_at = parse_date(msg.date) + except Exception: + received_at = None + + sent_at = None + for attr in ("clientSubmitTime", "client_submit_time", "sentOn"): + v = safe(msg, attr) + if v: + sent_at = parse_date(v) + break + + # ── MAPI vlastnosti ─────────────────────────────────────────── + importance = 1 + try: + v = msg.importance + if v is not None: + importance = int(v) + except Exception: + pass + + sensitivity = 0 + try: + v = getattr(msg, "sensitivity", None) + if v is not None: + sensitivity = int(v) + except Exception: + pass + + flag_status = 0 + try: + v = safe(msg, "flagStatus", "flag_status") + if v is not None: + flag_status = int(v) + except Exception: + pass + + conversation_topic = safe(msg, "conversationTopic", "conversation_topic", default="") + + conversation_index = "" + try: + ci = safe(msg, "conversationIndex", "conversation_index") + if isinstance(ci, bytes): + conversation_index = base64.b64encode(ci).decode() + elif ci: + conversation_index = str(ci) + except Exception: + pass + + in_reply_to = safe(msg, "inReplyTo", "in_reply_to", default="") + + internet_refs = [] + try: + refs = safe(msg, "internetReferences", "internet_references") + if isinstance(refs, list): + internet_refs = refs + elif isinstance(refs, str) and refs: + internet_refs = [r.strip() for r in refs.split() if r.strip()] + except Exception: + pass + + categories = [] + try: + cats = safe(msg, "categories") + if isinstance(cats, list): + categories = [str(c) for c in cats if c] + elif isinstance(cats, str) and cats: + categories = [c.strip() for c in re.split(r"[;,]", cats) if c.strip()] + except Exception: + pass + + read_receipt = bool(safe(msg, "readReceiptRequested", "read_receipt_requested", default=False)) + delivery_receipt = bool(safe(msg, "deliveryReceiptRequested", "delivery_receipt_requested", default=False)) + + # ── Internet headers ────────────────────────────────────────── + headers = extract_headers(msg) + + if not in_reply_to: + in_reply_to = headers.get("in_reply_to", "") + if not internet_refs: + refs_str = headers.get("references", "") + if isinstance(refs_str, str) and refs_str: + internet_refs = [r.strip() for r in refs_str.split() if r.strip()] + + # ── Přílohy ─────────────────────────────────────────────────── + attachments = extract_attachments(msg) + + # ── Raw MAPI ────────────────────────────────────────────────── + mapi_raw = extract_mapi_props(msg) + + msg.close() + + # ── Dokument ────────────────────────────────────────────────── + return { + "_id": mid, + "filename": msg_path.name, + + "subject": subject, + "normalized_subject": normalized_subject, + "importance": importance, + "sensitivity": sensitivity, + "flag_status": flag_status, + "read_receipt_requested": read_receipt, + "delivery_receipt_requested": delivery_receipt, + "has_attachments": len(attachments) > 0, + "attachment_count": len(attachments), + "message_size_bytes": msg_path.stat().st_size, + + "conversation_topic": conversation_topic, + "conversation_index": conversation_index, + "in_reply_to": in_reply_to, + "internet_references": internet_refs, + "categories": categories, + + "received_at": received_at, + "sent_at": sent_at, + + "sender": { + "email": sender_email, + "name": sender_name, + "smtp": sender_smtp, + }, + "to": to_raw, + "cc": cc_raw, + "bcc": bcc_raw, + "display_to": display_to, + "display_cc": display_cc, + "recipients": recipients, + + "body_text": body_text, + "body_html": body_html, + + "attachments": attachments, + "headers": headers, + "mapi": mapi_raw, + + "parsed_at": datetime.now(timezone.utc).replace(tzinfo=None), + } + + except Exception as e: + logging.error("extract_message failed [%s]: %s", msg_path.name, e) + return None + + +# ─── MongoDB indexy ─────────────────────────────────────────────────────────── + +def create_indexes(col): + print(" Vytvarim indexy...") + col.create_index([("received_at", ASCENDING)]) + col.create_index([("sent_at", ASCENDING)]) + col.create_index([("sender.email", ASCENDING)]) + col.create_index([("filename", ASCENDING)], unique=True, sparse=True) + col.create_index([("conversation_topic", ASCENDING)]) + col.create_index([("has_attachments", ASCENDING)]) + col.create_index([("categories", ASCENDING)]) + col.create_index([("importance", ASCENDING)]) + col.create_index([("flag_status", ASCENDING)]) + col.create_index([ + ("subject", TEXT), + ("body_text", TEXT), + ("to", TEXT), + ("cc", TEXT), + ], name="text_search", default_language="none") + print(" Indexy hotovy.") + + +# ─── MAIN ───────────────────────────────────────────────────────────────────── + +def main(): + ap = argparse.ArgumentParser(description=f"parse_emails v{SCRIPT_VERSION}") + ap.add_argument("--msgs-dir", default=str(MSGS_DIR), + help="Cesta k .msg souborum") + ap.add_argument("--limit", type=int, default=0, + help="Zpracovat max N souboru (0 = vse)") + ap.add_argument("--skip-existing", action="store_true", + help="Preskocit soubory ktere jiz jsou v MongoDB (pokracovani)") + ap.add_argument("--no-indexes", action="store_true", + help="Nevytvorit indexy na konci") + args = ap.parse_args() + + msgs_dir = Path(args.msgs_dir) + start = datetime.now() + + print(f"=== parse_emails v{SCRIPT_VERSION} ===") + print(f"Start: {start.strftime('%Y-%m-%d %H:%M:%S')}") + print(f"Zdroj: {msgs_dir}") + print(f"MongoDB: {MONGO_URI} -> {MONGO_DB}.{MONGO_COL}") + + # MongoDB + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + try: + client.admin.command("ping") + print(" MongoDB OK") + except Exception as e: + print(f" CHYBA: MongoDB neni dostupna -- {e}") + sys.exit(1) + + col = client[MONGO_DB][MONGO_COL] + + # Skip existing — nacti seznam uz importovanych souboru + existing: set = set() + if args.skip_existing: + print(" Nacitam existujici zaznamy z MongoDB...") + existing = set(col.distinct("filename")) + print(f" {len(existing)} jiz importovano") + + # Scan + print(f"\nSkenuji {msgs_dir} ...") + all_files = sorted(msgs_dir.glob("*.msg")) + if args.limit: + all_files = all_files[:args.limit] + + to_process = [f for f in all_files if f.name not in existing] + skipped = len(all_files) - len(to_process) + total = len(to_process) + + print(f" Celkem .msg: {len(all_files)}") + print(f" Preskoceno: {skipped}") + print(f" Ke zpracovani: {total}\n") + + if total == 0: + print("Neni co importovat.") + client.close() + return + + batch = [] + ok_count = 0 + err_count = 0 + + def flush(): + if not batch: + return + try: + col.bulk_write(batch, ordered=False) + except Exception as e: + logging.error("bulk_write: %s", e) + print(f" CHYBA bulk_write: {e}") + batch.clear() + + for i, msg_path in enumerate(to_process, 1): + doc = extract_message(msg_path) + + if doc is None: + err_count += 1 + else: + batch.append(UpdateOne({"_id": doc["_id"]}, {"$set": doc}, upsert=True)) + ok_count += 1 + + if len(batch) >= BATCH_SIZE: + flush() + + # Výpis každého emailu + status = "ERR " if doc is None else "OK " + subject_str = (doc.get("subject") or "")[:60] if doc else "?" + sender_str = (doc.get("sender", {}).get("email") or "")[:40] if doc else "?" + print(f" {i:>6}/{total} {status} {subject_str:<60} {sender_str}") + + if i % 500 == 0: + elapsed = (datetime.now() - start).total_seconds() + rate = i / elapsed if elapsed > 0 else 0 + eta_s = int((total - i) / rate) if rate > 0 else 0 + print(f" {'─'*80}") + print(f" Průběh: ok={ok_count} err={err_count} " + f"{rate:.1f} msg/s ETA {eta_s//3600}h{(eta_s%3600)//60}m") + print(f" {'─'*80}") + + flush() + + elapsed_total = (datetime.now() - start).total_seconds() + print(f"\n{'='*52}") + print(f"Vysledek: ok={ok_count} | skip={skipped} | err={err_count}") + print(f"Celkovy cas: {int(elapsed_total//3600)}h {int((elapsed_total%3600)//60)}m {int(elapsed_total%60)}s") + print(f"Dokumentu v kolekci: {col.count_documents({})}") + + if not args.no_indexes: + print() + create_indexes(col) + + print(f"\nKonec: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}") + if err_count: + print(f"Chyby logovany do: {LOG_FILE}") + + client.close() + + +if __name__ == "__main__": + main() diff --git a/EmailsImport/stats.py b/EmailsImport/stats.py new file mode 100644 index 0000000..e82c2ca --- /dev/null +++ b/EmailsImport/stats.py @@ -0,0 +1,93 @@ +import sqlite3 +import os +from pathlib import Path + +DB_DIR = r"\\tower\JNJEMAILS\db" +MSG_DIR = r"\\tower\JNJEMAILS" + + +def find_latest_db(db_dir): + dbs = sorted(Path(db_dir).glob("*.db"), key=lambda p: p.stat().st_mtime) + if not dbs: + raise FileNotFoundError(f"Žádná .db databáze v {db_dir}") + return dbs[-1] + + +def count_msg_files(msg_dir): + return sum(1 for f in Path(msg_dir).iterdir() if f.suffix.lower() == ".msg") + + +def stats(db_path): + con = sqlite3.connect(db_path) + cur = con.cursor() + + total = cur.execute("SELECT COUNT(*) FROM messages").fetchone()[0] + + date_range = cur.execute( + "SELECT MIN(received_at), MAX(received_at) FROM messages WHERE received_at IS NOT NULL" + ).fetchone() + + top_senders = cur.execute( + "SELECT sender, COUNT(*) AS n FROM messages GROUP BY sender ORDER BY n DESC LIMIT 10" + ).fetchall() + + by_folder = cur.execute( + "SELECT folder, COUNT(*) AS n FROM messages GROUP BY folder ORDER BY n DESC" + ).fetchall() + + by_source = cur.execute( + "SELECT source, COUNT(*) AS n FROM messages GROUP BY source ORDER BY n DESC" + ).fetchall() + + by_month = cur.execute( + """SELECT SUBSTR(received_at, 1, 7) AS month, COUNT(*) AS n + FROM messages WHERE received_at IS NOT NULL + GROUP BY month ORDER BY month""" + ).fetchall() + + con.close() + return total, date_range, top_senders, by_folder, by_source, by_month + + +def main(): + db_path = find_latest_db(DB_DIR) + print(f"Databáze: {db_path.name}") + print(f"Velikost: {db_path.stat().st_size / 1024 / 1024:.1f} MB") + + msg_count = count_msg_files(MSG_DIR) + print(f".msg souborů ve složce: {msg_count:,}") + + total, date_range, top_senders, by_folder, by_source, by_month = stats(db_path) + + print(f"\n{'-'*50}") + print(f" Emailu v databazi: {total:,}") + if date_range[0]: + print(f" Nejstarsi: {date_range[0]}") + print(f" Nejnovejsi: {date_range[1]}") + + if by_folder: + print(f"\n Slozky:") + for folder, n in by_folder: + print(f" {folder or '(bez slozky)':<35} {n:>6,}") + + if by_source: + print(f"\n Zdroje (source):") + for src, n in by_source: + print(f" {src or '(prazdny)':<35} {n:>6,}") + + if by_month: + print(f"\n Emaily po mesicich:") + for month, n in by_month: + bar = "#" * min(n // 20, 40) + print(f" {month} {bar:<40} {n:>5,}") + + if top_senders: + print(f"\n Top 10 odesilatelU:") + for sender, n in top_senders: + print(f" {(sender or '(neznamy)')[:50]:<52} {n:>5,}") + + print(f"{'-'*50}") + + +if __name__ == "__main__": + main() diff --git a/Feasibility/77242113UCO2001/77242113UCO3002_CZ_SK_Investigators_with_internet_summary.xlsx b/Feasibility/77242113UCO2001/77242113UCO3002_CZ_SK_Investigators_with_internet_summary.xlsx new file mode 100644 index 0000000..4a51694 Binary files /dev/null and b/Feasibility/77242113UCO2001/77242113UCO3002_CZ_SK_Investigators_with_internet_summary.xlsx differ diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Batovsky_Marian_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Batovsky_Marian_ICONIC_H2H.eml new file mode 100644 index 0000000..4069022 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Batovsky_Marian_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: batovsky@pe.unb.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Blaha_Pavol_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Blaha_Pavol_ICONIC_H2H.eml new file mode 100644 index 0000000..bc337d0 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Blaha_Pavol_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavol.blaha@svetzdravia.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Brandeburova_Julia_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Brandeburova_Julia_ICONIC_H2H.eml new file mode 100644 index 0000000..1cb2449 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Brandeburova_Julia_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: brandenburova@post.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Bruncak_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Bruncak_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..6c5b30b --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Bruncak_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: michalbruncak@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Bunganic_Ivan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Bunganic_Ivan_ICONIC_H2H.eml new file mode 100644 index 0000000..e4914ab --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Bunganic_Ivan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: bunganic@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Cechova_Ivana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Cechova_Ivana_ICONIC_H2H.eml new file mode 100644 index 0000000..285b4e9 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Cechova_Ivana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ivanacechova@ccrbrno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Cvejkusova_Danka_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Cvejkusova_Danka_ICONIC_H2H.eml new file mode 100644 index 0000000..9f5f6aa --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Cvejkusova_Danka_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: dcvejka@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Dobesova_Jarmila_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Dobesova_Jarmila_ICONIC_H2H.eml new file mode 100644 index 0000000..70f2be5 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Dobesova_Jarmila_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jarmila.dobesova@fnol.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Douda_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Douda_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..82186e2 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Douda_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: tomas.douda@fnhk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Drastich_Pavel_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Drastich_Pavel_ICONIC_H2H.eml new file mode 100644 index 0000000..2bd2f33 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Drastich_Pavel_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: drastich@hotmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Durina_Juraj_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Durina_Juraj_ICONIC_H2H.eml new file mode 100644 index 0000000..e3c4419 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Durina_Juraj_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jdurina@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Dzurikova_Michaela_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Dzurikova_Michaela_ICONIC_H2H.eml new file mode 100644 index 0000000..b4a59c4 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Dzurikova_Michaela_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: dzurikova@assiduo.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Falc_Matej_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Falc_Matej_ICONIC_H2H.eml new file mode 100644 index 0000000..378803e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Falc_Matej_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: matesfalc@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Gabalec_Libor_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gabalec_Libor_ICONIC_H2H.eml new file mode 100644 index 0000000..0f49c8d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gabalec_Libor_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: libor.gabalec@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregar_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregar_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..818d1be --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregar_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jan.gregar@fnol.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregusova_Katarina_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregusova_Katarina_ICONIC_H2H.eml new file mode 100644 index 0000000..5f889dd --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Gregusova_Katarina_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: gregusova.studie@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hadraba_Ladislav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hadraba_Ladislav_ICONIC_H2H.eml new file mode 100644 index 0000000..f6bedd0 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hadraba_Ladislav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ladislav.hadraba@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hala_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hala_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..30f9634 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hala_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: tomas.hala@ccrpardubice.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hegyi_Peter_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hegyi_Peter_ICONIC_H2H.eml new file mode 100644 index 0000000..8bf6292 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hegyi_Peter_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hegyi.peter@pte.hu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hejda_Vaclav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hejda_Vaclav_ICONIC_H2H.eml new file mode 100644 index 0000000..9a63fa3 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hejda_Vaclav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hejdav@fnplzen.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlavova_Helena_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlavova_Helena_ICONIC_H2H.eml new file mode 100644 index 0000000..8058b1c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlavova_Helena_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hhlavova@atlas.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlista_Milan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlista_Milan_ICONIC_H2H.eml new file mode 100644 index 0000000..a1352e2 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hlista_Milan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: milan.hlista@fntn.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Horny_Ivo_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Horny_Ivo_ICONIC_H2H.eml new file mode 100644 index 0000000..6c81c3f --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Horny_Ivo_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ivo.horny@post.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Horvath_Frantisek_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Horvath_Frantisek_ICONIC_H2H.eml new file mode 100644 index 0000000..ff46bc5 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Horvath_Frantisek_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: fhorvath.studie@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hrdlicka_Ludek_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hrdlicka_Ludek_ICONIC_H2H.eml new file mode 100644 index 0000000..c9a1916 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hrdlicka_Ludek_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ludek.hrdlicka@restrial.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Hustak_Rastislav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hustak_Rastislav_ICONIC_H2H.eml new file mode 100644 index 0000000..155b7d1 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Hustak_Rastislav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: rastislav.hustak@fntt.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Jelinek_Ondrej_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Jelinek_Ondrej_ICONIC_H2H.eml new file mode 100644 index 0000000..9029799 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Jelinek_Ondrej_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ondra.jelinek@cmail.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Jungwirthova_Anna_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Jungwirthova_Anna_ICONIC_H2H.eml new file mode 100644 index 0000000..6617605 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Jungwirthova_Anna_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: a.jungwirthova@egk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kadleckova_Barbora_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kadleckova_Barbora_ICONIC_H2H.eml new file mode 100644 index 0000000..c00dabe --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kadleckova_Barbora_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kadleckova@assiduo.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kalisova_Iveta_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kalisova_Iveta_ICONIC_H2H.eml new file mode 100644 index 0000000..8a4b9c6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kalisova_Iveta_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: iveta.kalisova@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Karaskova_Eva_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Karaskova_Eva_ICONIC_H2H.eml new file mode 100644 index 0000000..4fe98df --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Karaskova_Eva_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: Eva.Karaskova@fnol.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Klucho_Jozef_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Klucho_Jozef_ICONIC_H2H.eml new file mode 100644 index 0000000..d942bdf --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Klucho_Jozef_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: klucho@gastroenterolog.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kohout_Pavel_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kohout_Pavel_ICONIC_H2H.eml new file mode 100644 index 0000000..c381056 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kohout_Pavel_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavel.kohout@ftn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kojecky_Vladimir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kojecky_Vladimir_ICONIC_H2H.eml new file mode 100644 index 0000000..75dec22 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kojecky_Vladimir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kojecky@bnzlin.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Koller_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Koller_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..b672bfd --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Koller_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: koller.tomas@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Komarek_Viktor_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Komarek_Viktor_ICONIC_H2H.eml new file mode 100644 index 0000000..868a947 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Komarek_Viktor_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: viktor.komarek@volny.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..ff339ff --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: konecnymi@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Stefan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Stefan_ICONIC_H2H.eml new file mode 100644 index 0000000..16824ff --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Konecny_Stefan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: konecny.stefan@fnbrno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kopet_Antonin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kopet_Antonin_ICONIC_H2H.eml new file mode 100644 index 0000000..9f9cc7c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kopet_Antonin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kopet.antonin@nemcb.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Koskova_Radka_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Koskova_Radka_ICONIC_H2H.eml new file mode 100644 index 0000000..c63df18 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Koskova_Radka_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: studie.endo@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kozeluhova_Jana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kozeluhova_Jana_ICONIC_H2H.eml new file mode 100644 index 0000000..c052eab --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kozeluhova_Jana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kozeluhova@fnplzen.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kralova_Maria_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kralova_Maria_ICONIC_H2H.eml new file mode 100644 index 0000000..3f52af6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kralova_Maria_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: maria.kralova@sm.unb.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Kratky_Adrian_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kratky_Adrian_ICONIC_H2H.eml new file mode 100644 index 0000000..80bdf94 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Kratky_Adrian_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: adrian.kratky@nextra.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Krizova_Viera_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Krizova_Viera_ICONIC_H2H.eml new file mode 100644 index 0000000..b7fbe6f --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Krizova_Viera_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: viera.krizova@homolka.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Laclav_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Laclav_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..2eaba8e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Laclav_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: martin.laclav@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Leksa_Vaclav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Leksa_Vaclav_ICONIC_H2H.eml new file mode 100644 index 0000000..d04cf80 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Leksa_Vaclav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: vaclav.leksa@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Lukac_Ludovit_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Lukac_Ludovit_ICONIC_H2H.eml new file mode 100644 index 0000000..24fa1b1 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Lukac_Ludovit_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ludo.lukac@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Lutgens_Maurice_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Lutgens_Maurice_ICONIC_H2H.eml new file mode 100644 index 0000000..8fe6d06 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Lutgens_Maurice_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: m.lutgens@etz.nl +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Macedek_Jaroslav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Macedek_Jaroslav_ICONIC_H2H.eml new file mode 100644 index 0000000..25b857a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Macedek_Jaroslav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jaroslav.macecek@smn.agel.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Machytka_Evzen_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Machytka_Evzen_ICONIC_H2H.eml new file mode 100644 index 0000000..0dfa73e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Machytka_Evzen_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: machytka@endohope.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Martinek_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Martinek_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..1fa6263 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Martinek_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jan.martinek@fnusa.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml new file mode 100644 index 0000000..1f5ece7 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hana.matejovska@efertusclinical.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Mihalkanin_Lubomir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Mihalkanin_Lubomir_ICONIC_H2H.eml new file mode 100644 index 0000000..471879c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Mihalkanin_Lubomir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: mihalkanin@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarik_Peter_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarik_Peter_ICONIC_H2H.eml new file mode 100644 index 0000000..861d93d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarik_Peter_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: peterminarik@atlas.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarikova_Petra_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarikova_Petra_ICONIC_H2H.eml new file mode 100644 index 0000000..0c61d83 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Minarikova_Petra_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: petra.minarikova@uvn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Molnar_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Molnar_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..9344240 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Molnar_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: molnarm@centrum.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Mudr_Robert_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Mudr_Robert_ICONIC_H2H.eml new file mode 100644 index 0000000..826fd4b --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Mudr_Robert_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: robert.mudr@nmskb.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Nedbalova_Lenka_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Nedbalova_Lenka_ICONIC_H2H.eml new file mode 100644 index 0000000..39c7369 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Nedbalova_Lenka_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: lenka.nedbalova@nemlib.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Novotny_Ales_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Novotny_Ales_ICONIC_H2H.eml new file mode 100644 index 0000000..b0b9f6c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Novotny_Ales_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: Ales.Novotny@vfn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Papik_Zdenek_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Papik_Zdenek_ICONIC_H2H.eml new file mode 100644 index 0000000..77ace0a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Papik_Zdenek_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: papik.zdenek@nemocnicenachod.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Pesta_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pesta_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..66d9249 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pesta_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pestam@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Pipek_Barbora_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pipek_Barbora_ICONIC_H2H.eml new file mode 100644 index 0000000..a99dfb6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pipek_Barbora_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: barbora.pipek@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Pumpria_Juri_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pumpria_Juri_ICONIC_H2H.eml new file mode 100644 index 0000000..9cfc0e5 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Pumpria_Juri_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: research@vilazdravi.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Repak_Rudolf_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Repak_Rudolf_ICONIC_H2H.eml new file mode 100644 index 0000000..2345a3a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Repak_Rudolf_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: rrepak@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Serclova_Zuzana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Serclova_Zuzana_ICONIC_H2H.eml new file mode 100644 index 0000000..db1a681 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Serclova_Zuzana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: sercl@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Smajstrla_Vit_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Smajstrla_Vit_ICONIC_H2H.eml new file mode 100644 index 0000000..133f213 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Smajstrla_Vit_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: vit.smajstrla@bormed.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Stehlik_Jiri_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Stehlik_Jiri_ICONIC_H2H.eml new file mode 100644 index 0000000..d717bff --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Stehlik_Jiri_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jiri.stehlik@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Stepek_David_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Stepek_David_ICONIC_H2H.eml new file mode 100644 index 0000000..26426b4 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Stepek_David_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: dstepek@vnbrno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Student_Vladimir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Student_Vladimir_ICONIC_H2H.eml new file mode 100644 index 0000000..794f5dc --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Student_Vladimir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: studentnempt@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Suchanek_Stepan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Suchanek_Stepan_ICONIC_H2H.eml new file mode 100644 index 0000000..689464d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Suchanek_Stepan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: stepan.suchanek@mediendo.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Svoboda_Pavel_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Svoboda_Pavel_ICONIC_H2H.eml new file mode 100644 index 0000000..7d74b3c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Svoboda_Pavel_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavel.svoboda@fno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Tichy_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tichy_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..8664770 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tichy_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: michal.tichy@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Tkacik_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tkacik_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..d97778e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tkacik_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: martintkacik@yahoo.co.uk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Tomsova_Eva_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tomsova_Eva_ICONIC_H2H.eml new file mode 100644 index 0000000..13655d6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Tomsova_Eva_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: eva.tomsova@onmb.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Ulbrych_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Ulbrych_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..4a057e8 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Ulbrych_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jan.ulbrych@fnusa.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Vaculin_Vladimir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vaculin_Vladimir_ICONIC_H2H.eml new file mode 100644 index 0000000..5ee0c3d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vaculin_Vladimir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: endo08@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Vitek_Petr_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vitek_Petr_ICONIC_H2H.eml new file mode 100644 index 0000000..791d37c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vitek_Petr_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: vitekp@nemfm.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Voska_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Voska_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..3fa1e64 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Voska_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: voska@nemocnice-horovice.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Vyhnalek_Petr_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vyhnalek_Petr_ICONIC_H2H.eml new file mode 100644 index 0000000..d384c41 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Vyhnalek_Petr_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: petr.vyhnalek@nempk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Woznica_Vlastimil_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Woznica_Vlastimil_ICONIC_H2H.eml new file mode 100644 index 0000000..03282be --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Woznica_Vlastimil_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: gastroambulanceVW@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Zachar_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zachar_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..fad180d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zachar_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jzachar03@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Zadorova_Zdena_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zadorova_Zdena_ICONIC_H2H.eml new file mode 100644 index 0000000..3895e8e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zadorova_Zdena_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: zadorova@fnkv.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_1_kolo/Zavada_Filip_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zavada_Filip_ICONIC_H2H.eml new file mode 100644 index 0000000..f05ef9d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_1_kolo/Zavada_Filip_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: filip.zavada@onp.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Douda_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Douda_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..82186e2 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Douda_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: tomas.douda@fnhk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Jungwirthova_Anna_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Jungwirthova_Anna_ICONIC_H2H.eml new file mode 100644 index 0000000..6617605 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Jungwirthova_Anna_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: a.jungwirthova@egk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Karaskova_Eva_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Karaskova_Eva_ICONIC_H2H.eml new file mode 100644 index 0000000..4fe98df --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Karaskova_Eva_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: Eva.Karaskova@fnol.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Klucho_Jozef_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Klucho_Jozef_ICONIC_H2H.eml new file mode 100644 index 0000000..d942bdf --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Klucho_Jozef_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: klucho@gastroenterolog.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Kohout_Pavel_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kohout_Pavel_ICONIC_H2H.eml new file mode 100644 index 0000000..c381056 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kohout_Pavel_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavel.kohout@ftn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Kojecky_Vladimir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kojecky_Vladimir_ICONIC_H2H.eml new file mode 100644 index 0000000..75dec22 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kojecky_Vladimir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kojecky@bnzlin.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Kopet_Antonin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kopet_Antonin_ICONIC_H2H.eml new file mode 100644 index 0000000..9f9cc7c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kopet_Antonin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kopet.antonin@nemcb.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Kozeluhova_Jana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kozeluhova_Jana_ICONIC_H2H.eml new file mode 100644 index 0000000..c052eab --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Kozeluhova_Jana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: kozeluhova@fnplzen.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarik_Peter_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarik_Peter_ICONIC_H2H.eml new file mode 100644 index 0000000..861d93d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarik_Peter_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: peterminarik@atlas.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarikova_Petra_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarikova_Petra_ICONIC_H2H.eml new file mode 100644 index 0000000..0c61d83 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Minarikova_Petra_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: petra.minarikova@uvn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Molnar_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Molnar_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..9344240 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Molnar_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: molnarm@centrum.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Novotny_Ales_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Novotny_Ales_ICONIC_H2H.eml new file mode 100644 index 0000000..b0b9f6c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Novotny_Ales_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: Ales.Novotny@vfn.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Pesta_Martin_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Pesta_Martin_ICONIC_H2H.eml new file mode 100644 index 0000000..66d9249 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Pesta_Martin_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pestam@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Serclova_Zuzana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Serclova_Zuzana_ICONIC_H2H.eml new file mode 100644 index 0000000..db1a681 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Serclova_Zuzana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: sercl@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Stehlik_Jiri_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Stehlik_Jiri_ICONIC_H2H.eml new file mode 100644 index 0000000..d717bff --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Stehlik_Jiri_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jiri.stehlik@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Suchanek_Stepan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Suchanek_Stepan_ICONIC_H2H.eml new file mode 100644 index 0000000..689464d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Suchanek_Stepan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: stepan.suchanek@mediendo.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Svoboda_Pavel_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Svoboda_Pavel_ICONIC_H2H.eml new file mode 100644 index 0000000..7d74b3c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Svoboda_Pavel_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavel.svoboda@fno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Tichy_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Tichy_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..8664770 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Tichy_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: michal.tichy@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Voska_Michal_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Voska_Michal_ICONIC_H2H.eml new file mode 100644 index 0000000..3fa1e64 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Voska_Michal_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: voska@nemocnice-horovice.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_2_kolo/Vyhnalek_Petr_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_2_kolo/Vyhnalek_Petr_ICONIC_H2H.eml new file mode 100644 index 0000000..d384c41 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_2_kolo/Vyhnalek_Petr_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: petr.vyhnalek@nempk.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Cechova_Ivana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Cechova_Ivana_ICONIC_H2H.eml new file mode 100644 index 0000000..285b4e9 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Cechova_Ivana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ivanacechova@ccrbrno.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Dobesova_Jarmila_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Dobesova_Jarmila_ICONIC_H2H.eml new file mode 100644 index 0000000..70f2be5 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Dobesova_Jarmila_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jarmila.dobesova@fnol.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Gabalec_Libor_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Gabalec_Libor_ICONIC_H2H.eml new file mode 100644 index 0000000..0f49c8d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Gabalec_Libor_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: libor.gabalec@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Hadraba_Ladislav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hadraba_Ladislav_ICONIC_H2H.eml new file mode 100644 index 0000000..f6bedd0 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hadraba_Ladislav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ladislav.hadraba@kzcr.eu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Hala_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hala_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..30f9634 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hala_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: tomas.hala@ccrpardubice.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Hejda_Vaclav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hejda_Vaclav_ICONIC_H2H.eml new file mode 100644 index 0000000..9a63fa3 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Hejda_Vaclav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hejdav@fnplzen.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Komarek_Viktor_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Komarek_Viktor_ICONIC_H2H.eml new file mode 100644 index 0000000..868a947 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Komarek_Viktor_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: viktor.komarek@volny.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Krizova_Viera_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Krizova_Viera_ICONIC_H2H.eml new file mode 100644 index 0000000..b7fbe6f --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Krizova_Viera_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: viera.krizova@homolka.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Macedek_Jaroslav_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Macedek_Jaroslav_ICONIC_H2H.eml new file mode 100644 index 0000000..25b857a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Macedek_Jaroslav_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jaroslav.macecek@smn.agel.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Martinek_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Martinek_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..1fa6263 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Martinek_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jan.martinek@fnusa.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml new file mode 100644 index 0000000..1f5ece7 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Matejovska_Kubesova_Hana_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hana.matejovska@efertusclinical.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Nedbalova_Lenka_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Nedbalova_Lenka_ICONIC_H2H.eml new file mode 100644 index 0000000..39c7369 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Nedbalova_Lenka_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: lenka.nedbalova@nemlib.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Papik_Zdenek_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Papik_Zdenek_ICONIC_H2H.eml new file mode 100644 index 0000000..77ace0a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Papik_Zdenek_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: papik.zdenek@nemocnicenachod.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Repak_Rudolf_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Repak_Rudolf_ICONIC_H2H.eml new file mode 100644 index 0000000..2345a3a --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Repak_Rudolf_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: rrepak@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Student_Vladimir_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Student_Vladimir_ICONIC_H2H.eml new file mode 100644 index 0000000..794f5dc --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Student_Vladimir_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: studentnempt@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Tomsova_Eva_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Tomsova_Eva_ICONIC_H2H.eml new file mode 100644 index 0000000..13655d6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Tomsova_Eva_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: eva.tomsova@onmb.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Vitek_Petr_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Vitek_Petr_ICONIC_H2H.eml new file mode 100644 index 0000000..791d37c --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Vitek_Petr_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: vitekp@nemfm.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Woznica_Vlastimil_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Woznica_Vlastimil_ICONIC_H2H.eml new file mode 100644 index 0000000..03282be --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Woznica_Vlastimil_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: gastroambulanceVW@seznam.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Zadorova_Zdena_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Zadorova_Zdena_ICONIC_H2H.eml new file mode 100644 index 0000000..3895e8e --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Zadorova_Zdena_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: zadorova@fnkv.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_3_kolo/Zavada_Filip_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_3_kolo/Zavada_Filip_ICONIC_H2H.eml new file mode 100644 index 0000000..f05ef9d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_3_kolo/Zavada_Filip_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: filip.zavada@onp.cz +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Batovsky_Marian_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Batovsky_Marian_ICONIC_H2H.eml new file mode 100644 index 0000000..4069022 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Batovsky_Marian_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: batovsky@pe.unb.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Blaha_Pavol_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Blaha_Pavol_ICONIC_H2H.eml new file mode 100644 index 0000000..bc337d0 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Blaha_Pavol_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: pavol.blaha@svetzdravia.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Brandeburova_Julia_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Brandeburova_Julia_ICONIC_H2H.eml new file mode 100644 index 0000000..1cb2449 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Brandeburova_Julia_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: brandenburova@post.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Cvejkusova_Danka_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Cvejkusova_Danka_ICONIC_H2H.eml new file mode 100644 index 0000000..9f5f6aa --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Cvejkusova_Danka_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: dcvejka@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Gregusova_Katarina_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Gregusova_Katarina_ICONIC_H2H.eml new file mode 100644 index 0000000..5f889dd --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Gregusova_Katarina_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: gregusova.studie@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Hegyi_Peter_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Hegyi_Peter_ICONIC_H2H.eml new file mode 100644 index 0000000..8bf6292 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Hegyi_Peter_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: hegyi.peter@pte.hu +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Koller_Tomas_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Koller_Tomas_ICONIC_H2H.eml new file mode 100644 index 0000000..b672bfd --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Koller_Tomas_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: koller.tomas@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Kralova_Maria_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Kralova_Maria_ICONIC_H2H.eml new file mode 100644 index 0000000..3f52af6 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Kralova_Maria_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: maria.kralova@sm.unb.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Kratky_Adrian_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Kratky_Adrian_ICONIC_H2H.eml new file mode 100644 index 0000000..80bdf94 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Kratky_Adrian_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: adrian.kratky@nextra.sk +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Lukac_Ludovit_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Lukac_Ludovit_ICONIC_H2H.eml new file mode 100644 index 0000000..24fa1b1 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Lukac_Ludovit_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: ludo.lukac@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Lutgens_Maurice_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Lutgens_Maurice_ICONIC_H2H.eml new file mode 100644 index 0000000..8fe6d06 --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Lutgens_Maurice_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: m.lutgens@etz.nl +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Emaily_4_kolo/Zachar_Jan_ICONIC_H2H.eml b/Feasibility/77242113UCO2001/Emaily_4_kolo/Zachar_Jan_ICONIC_H2H.eml new file mode 100644 index 0000000..fad180d --- /dev/null +++ b/Feasibility/77242113UCO2001/Emaily_4_kolo/Zachar_Jan_ICONIC_H2H.eml @@ -0,0 +1,68 @@ +MIME-Version: 1.0 +X-Unsent: 1 +Content-Class: urn:content-classes:message +Date: Sun, 31 May 2026 14:00:00 +0200 +From: vbuzalka@its.jnj.com +To: jzachar03@gmail.com +CC: AKocourk@ITS.JNJ.com; EBartoso@ITS.JNJ.com +Subject: =?utf-8?b?TmFiw61ka2Egc3BvbHVwcsOhY2UgbmEga2xpbmlja8OpbSBob2Rub2NlbsOtIHDFmcOtcHJhdmt1IGljb3Ryb2tpbnJhLCBpbmRpa2FjZSBVQw==?= +Content-Type: text/html; charset=utf-8 +Content-Transfer-Encoding: base64 + +PGh0bWw+CjxoZWFkPgo8c3R5bGU+CmJvZHkgeyBmb250LWZhbWlseTogQXB0b3MsIEFyaWFsLCBz +YW5zLXNlcmlmOyBmb250LXNpemU6IDExcHQ7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgfQpwIHsg +bWFyZ2luOiAwIDAgMTBweCAwOyB9Cm9sIHsgbWFyZ2luOiAwIDAgMCAwOyBwYWRkaW5nLWxlZnQ6 +IDI0cHg7IH0KbGkgeyBtYXJnaW4tYm90dG9tOiAzcHg7IH0KLnNpZyBwIHsgbWFyZ2luOiAwOyB9 +Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CjxwPkRvYnLDvSBkZW4sPC9wPgo8cD5uYcWhZSBzcG9s +ZcSNbm9zdCBKb2huc29uICZhbXA7IEpvaG5zb24gcGzDoW51amUga2xpbmlja8OpIGhvZG5vY2Vu +w60gcMWZw61wcmF2a3UgaWNvdHJva2lucmEgKEpOSi03NzI0MjExMyksIGNvxb4gamUgaW5vdmF0 +aXZuw60gY8OtbGVuw70gcGVyb3LDoWxuw60gcGVwdGlkIHNlbGVrdGl2bsSbIGJsb2t1asOtY8Ot +IHJlY2VwdG9yIHBybyBpbnRlcmxldWtpbiAyMyAoSUwtMjNSKS4gSW5oaWJpY8OtIHNpZ25hbGl6 +YWNlIElMLTIzIG92bGl2xYh1amUga2zDrcSNb3ZvdSB6w6FuxJt0bGl2b3UgZHLDoWh1IHBvZMOt +bGVqw61jw60gc2UgbmEgcGF0b2dlbmV6aSBpbXVuaXRuxJsgenByb3N0xZllZGtvdmFuw71jaCB6 +w6FuxJt0bGl2w71jaCBvbmVtb2NuxJtuw60sIHbEjWV0bsSbIHVsY2Vyw7N6bsOtIGtvbGl0aWR5 +IGEgQ3JvaG5vdnkgY2hvcm9ieS48L3A+CjxwPkJ1ZGUgc2UgamVkbmF0IG8gcMWZw61tw6kgc3Jv +dm7DoW7DrSBwZXJvcsOhbG7DrSBpY290cm9raW5yeSBzIGLEm8W+bsSbIHBvdcW+w612YW5vdSBw +YXJlbnRlcsOhbG7DrSBiaW9sb2dpY2tvdSBsw6nEjWJvdSAoZG9kw6F2w6FtZSB6ZGFybWEgdiBy +w6FtY2kgaG9kbm9jZW7DrSkuIEPDrWwgc3R1ZGllIGplIHZlbG1pIGFtYmljacOzem7DrSAmbWRh +c2g7IGJ1ZGVtZSBwcm9rYXpvdmF0IHN1cGVyaW9yaXR1LjwvcD4KPHA+ViB0b210byBlLW1haWx1 +IG5lbW9odSBzZMSbbGl0IHbDrWNlIGRldGFpbG7DrWNoIGluZm9ybWFjw60sIG5pY23DqW7EmyBi +dWRlIHNlIGplZG5hdCBvIGhvZG5vY2Vuw60sIGt0ZXLDqSBidWRlOjwvcD4KPG9sPgo8bGk+b3Rl +dsWZZW7DqTs8L2xpPgo8bGk+emFocm5vdmF0IG7DoWhvZG7DqSBwxZlpxZlhemVuw60gcGFjaWVu +dMWvIGsgaWNvdHJva2luxZllIG5lYm8gayBwYXJlbnRlcsOhbG7DrSBiaW9sb2dpY2vDqSBsw6nE +jWLEmzs8L2xpPgo8bGk+YmV6IHBsYWNlYm92w6kgc2t1cGlueSAmbWRhc2g7IGthxb5kw70gcGFj +aWVudCBvYmRyxb7DrSBha3Rpdm7DrSBsw6nEjWJ1OzwvbGk+CjxsaT51csSNZW5vIHBybyBkb3Nw +xJtsw6kgcGFjaWVudHkgc2Ugc3TFmWVkbsSbIHTEm8W+a291IGHFviB0xJvFvmtvdSBha3Rpdm7D +rSB1bGNlcsOzem7DrSBrb2xpdGlkb3U7PC9saT4KPGxpPnphaHJub3ZhdCBsw6nEjWVibm91IGbD +oXppIHYgdHJ2w6Fuw60gcMWZaWJsacW+bsSbIDQ2IHTDvWRuxa87IHBhY2llbnRpIHYgcmFtZW5p +IHMgaWNvdHJva2lucm91IG1vaG91IG7DoXNsZWRuxJsgcG9rcmHEjW92YXQgdiBkbG91aG9kb2LD +qW0gc2xlZG92w6Fuw60gcyBha3Rpdm7DrSBsw6nEjWJvdSBwbyBkb2J1IGRhbMWhw61jaCBwxZlp +Ymxpxb5uxJsgZHZvdSBsZXQuPC9saT4KPC9vbD4KPHA+Jm5ic3A7PC9wPgo8cD5Sw6FkaSBieWNo +b20gVsOhcyBwb8W+w6FkYWxpIG8gc3BvbHVwcsOhY2kgcMWZaSB0b210byBob2Rub2NlbsOtIGEg +emppc3RpbGksIHpkYSBtw6F0ZSB6w6FqZW0gc2UgZG8gc3R1ZGllIHphcG9qaXQgamFrbyBobGF2 +bsOtIHprb3XFoWVqw61jw60gKFBJKS48L3A+CjxwPlBva3VkIGJ1ZGV0ZSBtw610IHrDoWplbSwg +diBkYWzFocOtbSBrcm9rdSBWw6FtIHphxaFsZW1lIGRvaG9kdSBvIG1sxI1lbmxpdm9zdGkgKENE +QSkgYSBwb8W+w6Fkw6FtZSBWw6FzIG8gdnlwbG7Em27DrSBrcsOhdGvDqWhvIGRvdGF6bsOta3Ug +byBWYcWhZW0gcHJhY292acWhdGkgYSBwYWNpZW50c2vDqSBwb3B1bGFjaSAoc2lwSVEpLCBrdGVy +w70gbsOhbSB1bW/Fvm7DrSBwb3NvdWRpdCB2aG9kbm9zdCBzcG9sdXByw6FjZS48L3A+CjxwPlZl +bGljZSBieWNob20gb2NlbmlsaSBWYcWhaSByeWNobG91IHJlYWtjaSwgYSB0byBpIHYgcMWZw61w +YWTEmyBuZWdhdGl2bsOtIG9kcG92xJtkaS48L3A+CjxwPlYgcMWZw61wYWTEmyBqYWvDvWNoa29s +aSBkb3RhesWvIGpzZW0gVsOhbSBwbG7EmyBrIGRpc3BvemljaS48L3A+CjxwPlMgcG96ZHJhdmVt +PC9wPgo8ZGl2IGNsYXNzPSJzaWciIHN0eWxlPSJtYXJnaW4tdG9wOjEwcHg7Ij4KPHA+PHN0cm9u +Zz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPk1VRHIuIFZsYWRp +bcOtciBCVVpBTEtBPC9zcGFuPjwvc3Ryb25nPjwvcD4KPHA+Jm5ic3A7PC9wPgo8cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPklDT04g +cGxjPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMHB0O2ZvbnQtZmFtaWx5 +OkFyaWFsLHNhbnMtc2VyaWY7Ij5QZXJmb3JtaW5nIExvY2FsIFRyaWFsIE1hbmFnZW1lbnQgU2Vy +dmljZXMgZm9yIEphbnNzZW4gJm5kYXNoOyBDaWxhZyBzLnIuby48L3NwYW4+PC9wPgo8cD48c3Bh +biBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1mYW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkds +b2JhbCBDbGluaWNhbCBPcGVyYXRpb25zPC9zcGFuPjwvcD4KPHA+PHNwYW4gc3R5bGU9ImZvbnQt +c2l6ZToxMHB0O2ZvbnQtZmFtaWx5OkFyaWFsLHNhbnMtc2VyaWY7Ij5Nb2JpbGU6ICs0MjAgNzc1 +IDczNSAyNzY8L3NwYW4+PC9wPgo8cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Zm9udC1m +YW1pbHk6QXJpYWwsc2Fucy1zZXJpZjsiPkZheDogKzQyMCAyMjcgMDEyIDI4NDwvc3Bhbj48L3A+ +CjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTBwdDtmb250LWZhbWlseTpBcmlhbCxzYW5zLXNl +cmlmOyI+RS1tYWlsOiA8YSBocmVmPSJtYWlsdG86dmJ1emFsa2FAaXRzLmpuai5jb20iIHN0eWxl +PSJjb2xvcjpibHVlOyI+dmJ1emFsa2FAaXRzLmpuai5jb208L2E+LCA8YSBocmVmPSJtYWlsdG86 +dmxhZGltaXIuYnV6YWxrYUBpY29ucGxjLmNvbSIgc3R5bGU9ImNvbG9yOmJsdWU7Ij52bGFkaW1p +ci5idXphbGthQGljb25wbGMuY29tPC9hPjwvc3Bhbj48L3A+CjwvZGl2Pgo8L2JvZHk+CjwvaHRt +bD4= diff --git a/Feasibility/77242113UCO2001/Info zdroje/Zpracované/77242113UCO3002_Non_confidential_Protocol_Summary_Apr2026_FINAL.pdf b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/77242113UCO3002_Non_confidential_Protocol_Summary_Apr2026_FINAL.pdf new file mode 100644 index 0000000..ee1ae9b Binary files /dev/null and b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/77242113UCO3002_Non_confidential_Protocol_Summary_Apr2026_FINAL.pdf differ diff --git a/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC Dawn FAQ.xlsx b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC Dawn FAQ.xlsx new file mode 100644 index 0000000..036e852 Binary files /dev/null and b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC Dawn FAQ.xlsx differ diff --git a/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC H2H Country Outreach.pptx b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC H2H Country Outreach.pptx new file mode 100644 index 0000000..be9cdbd Binary files /dev/null and b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC H2H Country Outreach.pptx differ diff --git a/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC UC H2H Protocol Overview and sipIQ KOM_FINAL.pptx b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC UC H2H Protocol Overview and sipIQ KOM_FINAL.pptx new file mode 100644 index 0000000..ce7c1fd Binary files /dev/null and b/Feasibility/77242113UCO2001/Info zdroje/Zpracované/ICONIC UC H2H Protocol Overview and sipIQ KOM_FINAL.pptx differ diff --git a/Feasibility/77242113UCO2001/List of sites_ SK CD_MAF_JNJ4804_25Jun2025.xlsx b/Feasibility/77242113UCO2001/List of sites_ SK CD_MAF_JNJ4804_25Jun2025.xlsx new file mode 100644 index 0000000..f66f586 Binary files /dev/null and b/Feasibility/77242113UCO2001/List of sites_ SK CD_MAF_JNJ4804_25Jun2025.xlsx differ diff --git a/Feasibility/77242113UCO2001/import_to_mongo.py b/Feasibility/77242113UCO2001/import_to_mongo.py new file mode 100644 index 0000000..f5449a0 --- /dev/null +++ b/Feasibility/77242113UCO2001/import_to_mongo.py @@ -0,0 +1,50 @@ +""" +Import 77242113UCO3002_CZ_SK_Investigators_with_internet_summary.xlsx +do MongoDB databáze 'feasibility', kolekce 'investigators'. + +Spustit: python import_to_mongo.py +Závislosti: pip install openpyxl pymongo +""" + +import openpyxl +from pymongo import MongoClient +import os + +XLSX = os.path.join(os.path.dirname(__file__), + "77242113UCO3002_CZ_SK_Investigators_with_internet_summary.xlsx") +MONGO_URI = "mongodb://192.168.1.76:27017/" +DB_NAME = "feasibility" +COLLECTION = "investigators" + +wb = openpyxl.load_workbook(XLSX, data_only=True) +ws = wb["CZ + SK Investigators"] +rows = list(ws.iter_rows(values_only=True)) + +docs = [] +for row in rows[1:]: + if not any(row): + continue + zeme, prijmeni, jmeno, email, pracoviste, studie_raw, zdroje_raw, summary = row + docs.append({ + "zeme": zeme, + "prijmeni": prijmeni, + "jmeno": jmeno, + "email": email, + "pracoviste": pracoviste, + "studie": [s.strip() for s in studie_raw.split("\n") if s.strip()] if studie_raw else [], + "zdroje": [u.strip() for u in zdroje_raw.split("\n") if u.strip()] if zdroje_raw else [], + "internet_summary": summary, + }) + +client = MongoClient(MONGO_URI) +db = client[DB_NAME] +col = db[COLLECTION] +col.drop() # čistý start +result = col.insert_many(docs) +print(f"Vloženo {len(result.inserted_ids)} dokumentů do {DB_NAME}.{COLLECTION}") + +col.create_index("studie") +col.create_index("zeme") +col.create_index("prijmeni") +print("Indexy vytvořeny: studie, zeme, prijmeni") +client.close() diff --git a/Feasibility/77242113UCO2001/update_excel_fields.py b/Feasibility/77242113UCO2001/update_excel_fields.py new file mode 100644 index 0000000..c4df383 --- /dev/null +++ b/Feasibility/77242113UCO2001/update_excel_fields.py @@ -0,0 +1,3475 @@ +#!/usr/bin/env python3 +""" +Přidá pole 'excel' ke každému investigátorovi v feasibility.investigators +na základě dat z CHARGE a IBD LIST OF SITES záložek. +Spustit: python update_excel_fields.py +""" +from pymongo import MongoClient +import json + +MONGO_URI = "mongodb://192.168.1.76:27017/" +client = MongoClient(MONGO_URI) +col = client["feasibility"]["investigators"] + +updates = [ + { + "filter": { + "prijmeni": "Lukas" + }, + "excel": { + "Fire Site Id": "30047063", + "Site Segmentation": "Key", + "Site Name": "ISCARE a.s.", + "Site Address": "Českomoravská 2510/19 Prague Prague", + "Site City": "Prague", + "PI Segmentation": "Key", + "Pi First Name": "Milan", + "Pi Last Name": "Lukas", + "PI Phone": "420234770299", + "Pi Email": "studie.lukas@email.cz", + "Global Tier": "1", + "Country Tier": "1", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano rejected. Chceme do Charge.", + "SIPIQ": "odmítl", + "SIPIQ info (pacienti a další)": "N/A" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Bortlik" + }, + "excel": { + "Fire Site Id": "30044460", + "Site Segmentation": "Core", + "Site Name": "Nemocnice Ceske Budejovice, a.s.", + "Site Address": "Boženy Němcové 585/54 České Budějovice Jihočeský kraj", + "Site City": "České Budějovice", + "PI Segmentation": "Key", + "Pi First Name": "Martin", + "Pi Last Name": "Bortlik", + "PI Phone": "420234770231", + "Pi Email": "mbortlik@seznam.cz", + "Global Tier": "1", + "Country Tier": "1", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected UC only. Chceme do Charge.", + "LP comment": "PI nekontaktován z důvodu problémů s nedostupností SD a přetíženosti SC", + "OMS": "ORG-100046277\nLOC-100076350", + "SM": "máme varování, že nebrat, nebudeme uhánět" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Siroky" + }, + "excel": { + "Fire Site Id": "30140800", + "Site Segmentation": "Core", + "podpis před EU CTR schvalenim": "ano", + "Site Name": "Gastroenterologie, s.r.o., Hradec Kralove", + "Site Address": "Mánesova 646 Hradec Králové Královéhradecký kraj", + "Site City": "Hradec Králové", + "PI Segmentation": "Core", + "Pi First Name": "Milan", + "Pi Last Name": "Siroky", + "PI Phone": "420721405317", + "Pi Email": "m.sirokydr@gmail.com", + "Global Tier": "1", + "Country Tier": "1", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, nechtěl, Ivetka. Máme ho v Anthemu, chtěli bychom ho do Charge.", + "LP comment": "18.7.- má zájem, jen mu nepřišel SipIQ- prosím zaslat na m.sirokydr@gmail.com", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "8 pacientů, IUS nechce. ujasnit Q81- specifické požadavky na handheldy", + "CDA": "ANO 24Jul25\nVTMF-23897260", + "OMS": "ORG-100048229\nLOC-100079801", + "SM": "Agi (případně Ivetka)", + "SQV termín": "onsite 20.8. v rámci předávání Anthemu", + "SQV info (poslední věta v reportu) a jestli centrum vybíráme": "ANO. Příprava Skyrizi na centru (jsou tak zvyklí, nechce v lékárně). Mají SOP? Dr bude psát do zdrojovky.", + "SQV pacienti": "8 pacien+W4:W16tů", + "SQV konkurenční studie": "Žádné, Anthem skončí koncem roku", + "SQV vybavení": "CHladnička v lékárně", + "SQV smlouva": "Trojstranná včetně lokální laborky a lékárny", + "Kompenzace": "Hotovost nebo stravenky. Tedy hotovost.", + "IUS podstudie": "Ne" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Vanasek" + }, + "excel": { + "Fire Site Id": "30045763", + "Site Segmentation": "Core", + "podpis před EU CTR schvalenim": "ano", + "Site Name": "Hepato-gastroenterologie HK, s.r.o.", + "Site Address": "třída Edvarda Beneše 1549/34 Hradec Králové Královéhradecký kraj", + "Site City": "Hradec Králové", + "PI Segmentation": "Base", + "Pi First Name": "Tomas", + "Pi Last Name": "Vanasek", + "PI Phone": "420495218475", + "Pi Email": "tomas.vanasek@hepato-gastro.com", + "Global Tier": "1", + "Country Tier": "1", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano rejected. Chceme do Charge.", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "5 pacientů, IUS nechce, ujasnit Q81- specifické požadavky na handheldy", + "CDA": "ANO 07Aug25\nVTMF-23920652", + "OMS": "ORG-100042224\nLOC-100069704", + "SM": "Ivetka", + "SQV termín": "onsite 14.8. 14:30", + "SQV info (poslední věta v reportu) a jestli centrum vybíráme": "ANO. Fakturace léku po aplikaci. Lék objednávají z Iscare, kde je sledována teplota při transportu. Příprava Skyrizi v lékárně.", + "SQV pacienti": "5 pacientů (3 pacienti na rok)", + "SQV konkurenční studie": "14 studií, aktivní nábor u CD 1 studie v roce 2026", + "SQV vybavení": "Vše mají. Mají mrazák mínus 70. Nemají kalibraci na teploměr. Jsou tam jenom vzorky. Zkusit teploměr s kalibrací.", + "SQV smlouva": "Trojstranná včetně lokální laborky a lékárny (lékárnu mají zasmluvněnou sami)", + "Kompenzace": "Preference hotovosti a kvartálně zálohové faktury", + "IUS podstudie": "Ne" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Stepek" + }, + "excel": { + "Fire Site Id": "30152540", + "Site Segmentation": "Base", + "podpis před EU CTR schvalenim": "nutno overit", + "Site Name": "Vojenska nemocnice Brno", + "Site Address": "Zábrdovická 3", + "Site City": "Brno", + "PI Segmentation": "Core", + "Pi First Name": "David", + "Pi Last Name": "Stepek", + "PI Phone": "420973445401", + "Pi Email": "dstepek@vnbrno.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected", + "LP comment": "17Jul- má zájem, ale nenašel email (měli v nemocnici výpadek sítě).", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "7 pacientů, IUS nechce, Vyplnil sipIQ- že kupovat Skyrizi nelze,- ale poté potvrdil telefonicky, že lze, prosím upřesnit v reportu z SQV", + "CDA": "ANO 18Jul25\nVTMF-23820467", + "OMS": "ORG-100043479\nLOC-100071918", + "SM": "Oxana", + "SQV termín": "onsite, 7.8. ct, behem dne, ma sluzbu a bude mit cas. lekarna na 13:00", + "SQV pacienti": "5 pacientů", + "SQV konkurenční studie": "Iconic CD", + "SQV vybavení": "Mají vše", + "SQV smlouva": "Trojstranná", + "Kompenzace": "Hotovost", + "IUS podstudie": "?? (čeká na lékaře z dovolené)" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Voska" + }, + "excel": { + "Fire Site Id": "30047018", + "Site Segmentation": "Base", + "Site Name": "Nemocnice Horovice, a.s.", + "Site Address": "K Nemocnici 14 Hořovice Středočeský kraj", + "Site City": "Hořovice", + "PI Segmentation": "Base", + "Pi First Name": "Michal", + "Pi Last Name": "Voska", + "PI Phone": "420773200360", + "Pi Email": "voska@nemocnice-horovice.cz", + "Global Tier": "1", + "Country Tier": "1", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, vedená Serclova, která ve FNKV", + "LP comment": "17Jul- nemá zájem, je příliš vytížený. Nové studie nyní nechce dělat.Možná za 2 - 3 roky přehodnotí.", + "SIPIQ": "odmítl", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "N/A", + "SM": "Ivetka" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Hrdlicka" + }, + "excel": { + "Fire Site Id": "30045952", + "Site Segmentation": "Base", + "Site Name": "ResTrial GastroEndo, s.r.o", + "Site Address": "Sofijské náměstí 3404/3 Prague Prague", + "Site City": "Prague", + "PI Segmentation": "Base", + "Pi First Name": "Ludek", + "Pi Last Name": "Hrdlicka", + "PI Phone": "42736772445", + "Pi Email": "ludek.hrdlicka@restrial.com", + "Global Tier": "3", + "Country Tier": "3", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, nechtěl", + "LP comment": "17Jul- je na dovolené a tak neodpověděl na email, \n21Jul- momentálně rozjíždí 2 nové studie a na víc nemá kapacitu. Nové nabídky případně můžeme zaslat, ale teď nemá zájem.", + "SIPIQ": "odmítl", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "N/A" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Serclova" + }, + "excel": { + "Fire Site Id": "30045108", + "Site Segmentation": "Base", + "podpis před EU CTR schvalenim": "ano", + "Site Name": "Fakultni nemocnice Kralovske Vinohrady", + "Site Address": "Šrobárova 50", + "Site City": "Prague", + "Pi First Name": "Zuzana", + "Pi Last Name": "Serclova", + "PI Phone": "420266082165/ 602 158 805", + "Pi Email": "sercl@seznam.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected CD only, Ivetka. Má zájem o Charge.", + "LP comment": "17Jul- Dr.Šerclová slíbila, že se koukne na email a SipIQ a dá vědět (rozjíždí teď 3 studie a neví jak to bude stíhat)\n21.7.- odesláno upozornění na vyplnění\n23.7.- ve 12:45 je na sále, volat kolem 15h. 15:00 Slíbila se, že se na sipIQ teď podívá.", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "3 pacienty, IUS nechce, ujasnit Q81- specifické požadavky na handheldy, Vyplnila sipIQ- že kupovat Skyrizi nelze poté\" telefonicky upřesnila, že lze, prosím upřesnit v reportu z SQV", + "CDA": "master 09Mar23\nVTMF-23383494", + "OMS": "ORG-100029480\nLOC-100046792", + "SM": "Ivetka", + "SQV termín": "26.8. ve 14:30 onsite", + "SQV info (poslední věta v reportu) a jestli centrum vybíráme": "ANO. Biol lecbu pacienty posílají do Iscare. Z lékárny objednání Skyrizi neměl by být problém. Jenom jeden gastroenterlog Martin Lukáš.", + "SQV pacienti": "3", + "SQV konkurenční studie": "2 studie na CD s náborem v roce 2026.", + "SQV vybavení": "Vše kromě inkubátoru a ten zapůjčený v Iconicu. 3 endoskopy - pak dokumentace ke všem.", + "SQV smlouva": "Dvojstranná (instituce a sponzor), přes mgr Brožová, včetně lékárny a lok, laborky", + "Kompenzace": "Hotovost. Stravenky nechtějí pacienti.", + "IUS podstudie": "Ne" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Kozeluhova" + }, + "excel": { + "Fire Site Id": "30047682", + "Site Segmentation": "Dormant", + "Site Name": "Fakultni nemocnice Plzen", + "Site Address": "Alej Svobody 80 Pilsen Plzeňský kraj", + "Site City": "Pilsen", + "PI Segmentation": "Dormant", + "Pi First Name": "Jana", + "Pi Last Name": "Kozeluhova", + "PI Phone": "420377103322, 377103331- lékařák", + "Pi Email": "kozeluhova@fnplzen.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, nemají personál, ale Medical chtěl", + "LP comment": "18.7.- má dovolenou, volat ve čtvrtek 24.7.\n25.7.- mají podstav- oočekávají nástup dvou nových kolegů někdy příští rok, pak by byli schopni provést studii.", + "SIPIQ": "odmítla", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "master 30May25\nvTMF ???", + "SM": "Oxana" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Ulbrych" + }, + "excel": { + "Fire Site Id": "30044708", + "Site Name": "SurGal Clinic", + "Site Address": "307 Drobného Černá Pole", + "Site City": "Brno", + "Pi First Name": "Jan", + "Pi Last Name": "Ulbrych", + "PI Phone": "420543182418", + "Pi Email": "ulbrych.jan@surgalclinic.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano, rejected sám, i když byl vybrán. Chceme do Charge kdyby chtěl.", + "LP comment": "SipIQ- nesedí počet pacientů ADT treated vs ADT treatment failure za rok (Q41 vs Q421)", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "3 pacienty, IUS chce, nemá mrazák na -70stC", + "CDA": "ANO 14Jul25\nVTMF-23781754", + "OMS": "ORG-100046124\nLOC-100076087", + "SM": "Oxana", + "SQV termín": "onsite, 8.8 ct, 11:30, odpoved za lekarnu cekam", + "SQV pacienti": "3 pacienti", + "SQV konkurenční studie": "Nemají", + "SQV vybavení": "Mrazák jenom mínus 20, jinak vše mají", + "SQV smlouva": "Trojstranná", + "Kompenzace": "Hotovost", + "IUS podstudie": "Ano" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Pipek" + }, + "excel": { + "Fire Site Id": "30044693", + "Site Name": "Vitkovicka nemocnice a.s.", + "Site Address": "Zalužanského 1192/15", + "Site City": "Ostrava", + "Pi First Name": "Barbora", + "Pi Last Name": "Pipek", + "PI Phone": "420595633205", + "Pi Email": "barbora.pipek@seznam.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Neoslovena", + "LP comment": "Momentálně nemají zájem .", + "SIPIQ": "odmítla", + "SIPIQ info (pacienti a další)": "N/A" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Svoboda" + }, + "excel": { + "Fire Site Id": "30045883", + "podpis před EU CTR schvalenim": "nemocnice podepisuje az po schveni, ale JnJ a PI muzou mit podepsane", + "Site Name": "Fakultni nemocnice Ostrava", + "Site Address": "17. listopadu 1790", + "Site City": "Ostrava", + "Pi First Name": "Pavel", + "Pi Last Name": "Svoboda", + "PI Phone": "420597374191", + "Pi Email": "pavel.svoboda@fno.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano rejected, váhali v tu dobu", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "5 pacientů, IUS chce, nemá inkubátor", + "CDA": "ANO", + "OMS": "ORG-100030731\nLOC-100048362", + "SM": "Oxana", + "SQV termín": "onsite, 14.8, od 12 hod. lekarna v jednani", + "SQV pacienti": "5 pacientů", + "SQV konkurenční studie": "Nemají", + "SQV vybavení": "Vše", + "SQV smlouva": "Trojstranná včetně lékárny a lok. laborky", + "Kompenzace": "Hotovost", + "IUS podstudie": "Ano" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Mudr" + }, + "excel": { + "Fire Site Id": "30046814", + "Site Name": "Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze", + "Site Address": "36 Vlasska Mala Strana", + "Site City": "Praha 1- Mala Strana", + "Pi First Name": "Robert", + "Pi Last Name": "Mudr", + "PI Phone": "4203257197111 | 420257197305", + "Pi Email": "robert.mudr@nmskb.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected. Chceme do Charge. Ivetka nebo i Oxana, která ho zná.", + "LP comment": "komunikaci s centrem řeší Oxana", + "SIPIQ": "odmítl, chce nabrat Iconic", + "CDA": "NA", + "SM": "Oxana" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Minarikova" + }, + "excel": { + "Fire Site Id": "30127373", + "Site Name": "Ústrední vojenské nemocnice Praha", + "Site Address": "U Vojenské nemocnice 1", + "Site City": "Prague", + "Pi First Name": "Petra", + "Pi Last Name": "Minarikova", + "PI Phone": "603 482 476 od Ivet, \n(špatné číslo 420608965907", + "Pi Email": "petra.minarikova@uvn.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano rejected, nemá zástup v ambulanci, ivetka", + "LP comment": "603 482 476, na dovolené do 24.7., \n25.7.- nelze se dovolat, hlasová schránka na email přišla odpověď, že je mimo kancelář v době 24.7.-11.8.2025", + "SIPIQ": "nezastižena", + "CDA": "ANO 10Jul25\nVTMF-23781784", + "SM": "Ivetka" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Konecny" + }, + "excel": { + "Fire Site Id": "30132711", + "podpis před EU CTR schvalenim": "ne, nesmi se ani nic delat predem, mozne pouze online treninky", + "Site Name": "Fakultni nemocnice Brno", + "Site Address": "Jihlavská 20", + "Site City": "Brno", + "Pi First Name": "Stefan", + "Pi Last Name": "Konecny", + "PI Phone": "420775161464", + "Pi Email": "konecny.stefan@fnbrno.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "5 pacientů, IUS chce, ověřit zkušenosti s KH, dle sipIQ 1/2 pacientu na ADT má selhání???", + "CDA": "master 19Dec22\n VTMF-23185021", + "OMS": "ORG-100022981\nLOC-100031711", + "SM": "Oxana", + "SQV termín": "onsite, 7.8, ct od 8:00, lekarnu pokusim se domluvit sama", + "SQV pacienti": "5 pacientů", + "SQV konkurenční studie": "Nemají", + "SQV vybavení": "Mají vše", + "SQV smlouva": "Trojstranná plu s hlavním zkoušejícím", + "Kompenzace": "Hotovost", + "IUS podstudie": "Ano" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Konecny" + }, + "excel": { + "Fire Site Id": "30047960", + "Site Name": "Fakultní nemocnice Olomouc", + "Site Address": "I.P. Pavlova 6", + "Site City": "Olomouc", + "Pi First Name": "Michal", + "Pi Last Name": "Konecny", + "PI Phone": "+420 581 201 691", + "Pi Email": "michal.konecny@fnol.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected", + "LP comment": "18.7.- v Pá nebývá , volat v Po kolem 12 nebo pak před 13 h, mají otevřeno až do 14\n21.7.- email viděl, ale myslel, že je to k ICONIC. Přeposlala jsem email znova a slíbil že zítra (Út 22.7) zkoukne a vyplní.", + "zájem o DUET": "NO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "4 pacienty, IUS nechce, ověřit site staff, ověřit zkušenosti s KH, nemá inkubátor a centrifigu, ujasnit Q81- specifické požadavky na handheldy", + "CDA": "master 05Apr23\nVTMF-21240029", + "OMS": "ORG-100032988\nLOC-100076870", + "SM": "Oxana", + "SQV termín": "onsite, 14.8 ct, jeste potvrdi na zacatku srpna. schuzka jen s nim, s lekarniky az bude mit poredstavu o rozpoctu...", + "SQV pacienti": "3 pacienti", + "SQV konkurenční studie": "Jen Iconic CD", + "SQV vybavení": "Není inkubátor a centrifuga (přes Iocnic)", + "SQV smlouva": "Dvojstranná (instituce a sponzor), včetně lékárny a lok, laborky", + "Kompenzace": "SPíše stravenky", + "IUS podstudie": "Ne" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Vyhnalek" + }, + "excel": { + "Fire Site Id": "30046344", + "Site Name": "Pardubicka krajska nemocnice a.s.", + "Site Address": "Kyjevská 44", + "Site City": "Pardubice", + "Pi First Name": "Petr", + "Pi Last Name": "Vyhnalek", + "PI Phone": "420466014209, 4229 (endoskopie), nebo přes recepci\n4201- kancelář PI", + "Pi Email": "petr.vyhnalek@nempk.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ano selected jako Leksa, ale nemá zájem o dalsi studie", + "LP comment": "18.7.- pan primář je na dovolené, volat v pondělí 21.7. na endoskopii\n21.7.- dnes se vrátil z dovolené a nestíhá. Dle dohody email s dotazníkem přeposlán znova. Podívá se na to zítra (Út 22.7.)\n23.7.- dnes končil okolo 11h a bude až v pátek 25.7., volat cca v 8h do PI kanceláře\n25.7.- nestíhají, studii teď nechtějí", + "SIPIQ": "odmítl", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "zasláno k podpisu" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Kohout" + }, + "excel": { + "Fire Site Id": "30133665", + "podpis před EU CTR schvalenim": "podepisou, ale nechaji si smlouvu u sebe, ale dovoluji iniciace, registr az po schvaleni, smlouvu daji hned po schvaleni", + "Site Name": "Thomayerova nemocnice", + "Site Address": "Vídeňská 800", + "Site City": "Prague", + "Pi First Name": "Pavel", + "Pi Last Name": "Kohout", + "PI Phone": "420261083134- fax| 420261082295", + "Pi Email": "pavel.kohout@ftn.cz;", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Neosloven", + "LP comment": "18.7.- uvedené tel,č je na sekretariát. sekretářka předá informaci. Pan docent má dovolenou 22.-24.7. (= bude v pondělí 21.7. a v pátek 25.7.)\n21.7.- sekretářka potvrdila, že informace předalal, ale po dohodě přeposílám email i na ni- michaela.grundova@ftn.cz\n23.7.- sekretářka potvrdila, že vyplňoval, ale nevidím v Qualtrics- již OK", + "zájem o DUET": "ANO", + "SIPIQ": "ANO", + "SIPIQ info (pacienti a další)": "15 pacientů, IUS chce (nemá zkušenosti s nahráváním kolonoskopie a IUS), při SQV - ujasnit nahrávání záznamu kolonoskopie (Q35)", + "CDA": "master 30Oct23\nVTMF-21240047", + "OMS": "ORG-100030941", + "SM": "Agi a Ivetka - performance", + "SQV termín": "31.7. ve 14:30 on site", + "SQV info (poslední věta v reportu) a jestli centrum vybíráme": "ANO. S dr Škopkem jako podpora.", + "SQV pacienti": "5 pacientů", + "SQV konkurenční studie": "Nemají", + "SQV vybavení": "Vše mají", + "SQV smlouva": "Trojstranná smlouva včetně lokální laborky a lékárny", + "Kompenzace": "Hotovost", + "IUS podstudie": "Ano" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Douda" + }, + "excel": { + "Fire Site Id": "30047879", + "Site Name": "Fakultni nemocnice Hradec Kralove", + "Site Address": "Sokolská 581", + "Site City": "Hradec Králové", + "Pi First Name": "Tomas", + "Pi Last Name": "Douda", + "PI Phone": "49583 linka 3818, 3437", + "Pi Email": "tomas.douda@fnhk.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, nemají kapacitu", + "LP comment": "They can't keep up, they don't want to study now", + "SIPIQ": "odmítl", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "N/A" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Novotny" + }, + "excel": { + "Fire Site Id": "30133663", + "Site Name": "Vseobecna fakultni nemocnice v Praze", + "Site Address": "U Nemocnice 2", + "Site City": "Prague", + "Pi First Name": "Ales", + "Pi Last Name": "Novotny", + "PI Phone": "4200224962486| 4200224962506| 4200224962427", + "Pi Email": "Ales.Novotny@vfn.cz", + "Global Tier": "0", + "Country Tier": "0", + "Iconic Legenda: Ano je, že se účastnili Iconic IBD feasky, pak bud vybráni (sele": "Ne, osloven a vybrán Hrabak z VFN ve své ambulanci", + "LP comment": "18.7. má dovolenou, volat v pondělí 21.7. ( lůžkové oddělení B- linka 9337), \n21.7. dopoledne je na endoskopiích, ve 13h zrovna nezastižen- doběhl, volat cca v 14h\n23.7.- 15:00 nikdo nezvedá\n25.7.- dopoledne opakovaně obsazeno na lince 9337, doporučena linka 2476, (sestry), sestry doporučili ultrazvuk 2467- má školení neberou- volat na lůžkové cca 13:15, 14:00- neví zda to bude stíhat přeposlán znova email se sipIQ", + "SIPIQ": "odmítla", + "SIPIQ info (pacienti a další)": "N/A", + "CDA": "master 18Jan23\nVTMF-21240055" + }, + "zdroj_sheet": "CHARGE" + }, + { + "filter": { + "prijmeni": "Zimen" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "SM": "NA", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "není ani v Iluminatoru, žádná akce tam", + "Comment": "10APR2025 Dotaz na možnost účasti v adolescentní větvi UC, ale nemá zájem z kapacitních důvodů", + "Společnost na CDA": "Nemocnice Jihlava", + "PI Last Name": "Zimen", + "PI First Name": "Martin", + "Plné jméno": "MUDr. Martin Zimen", + "PI Email Address": "zimenm@nemji.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Melek" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "SM": "NA", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "NA", + "Comment": "11APR2025 Už tam nepracuje, přeposlal kolegovi, ale nenapsal kterému\n17APR2025 pracuje Dr. Melek, ale nechtějí", + "Společnost na CDA": "Fakultní nemocnice Hradec Králové", + "PI Last Name": "Melek", + "PI First Name": "Jan", + "Plné jméno": "MUDr. Jan Melek", + "PI Email Address": "jan.melek1@gmail.com" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Zahradníček" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "SM": "NA", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "NA", + "Comment": "17APR2025 neodpověděl, nemá tedy zájem\n11APR2025 reminder 2\n09APR2025 žádost o účast v adolescentní větvi UC", + "Společnost na CDA": "Krajská nemocnice Ústí nad Labem", + "PI Last Name": "Zahradníček", + "PI First Name": "Lubomír", + "Plné jméno": "MUDr. Lubomír Zahradníček", + "PI Email Address": "lubomir.zahradnicek@kzcr.eu" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Ženišková" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_Lag2MX1qfv0nPid_b11cOvqU1TI0p3U_CGC_LPPXiClRvObQuBO&_g_=g", + "SM": "NA", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "25APR2025 začala vyplňovat a pak napsala, že je zavalena prací\n22APR2025 SIPIQ odeslán", + "Comment": "17APR2025 má zájem, doplnil jsem centrum do Iluminatoru, potřebuji nastavit zemi\n11APR2025 reminder 2\n09APR2025 žádost o účast v adolescentní větvi UC", + "Společnost na CDA": "Nemocnice České Budějovice", + "PI Last Name": "Ženišková", + "PI First Name": "Ivana", + "Plné jméno": "MUDr. Ivana Ženíšková", + "PI Email Address": "i.zeniskova@volny.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Kopet" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s dr Ženíšková děti", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_Lag2MX1qfv0nPid_b11cOvqU1TI0p3U_CGC_LPPXiClRvObQuBO&_g_=g", + "SM": "Lenka", + "SM poznámky": "2.5.- Dr.Kopet je v nemocnici ČB (Dětské oddělení- gastroenterolog) ve St, Čt, Pa. Dnes není k dispozici. Budu volat ve St 7.5.- dělá od 8:30 bude na l. 38787 6326 (okolo 9h), biologické léčby 6354 nebo 53\n7.5.- slíbíl že SipIQ vyplní, má zájem. Domluven termín SQV.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "20.5. v 10h remote\nrozmyslel si to nestíhá, nechce se účastnit", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "30APR2025 SIPIQ odeslán", + "Comment": "30APR2025 bude 8 dní pryč\n30apr2025 napsal, že chce vidět, posílám SIPIQ\n29APR2025 připomínka emailem\n25APR2025 Dr. Ženíšková mi dala tip na oslovení Dr. Kopeta", + "Společnost na CDA": "Nemocnice České Budějovice", + "PI Last Name": "Kopet", + "PI First Name": "Antonín", + "Plné jméno": "MUDr. Antonín Kopeta", + "PI Email Address": "kopet.antonin@nemcb.cz", + "PI Phone Number": "38787 6326 nebo ambulance 38787 6311\n607 227 487" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Ťoukálková" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "NA", + "Comment": "17APR2025 neodpověděla, nemá zájem\n11APR2025 reminder 2\n09APR2025 žádost o účast v adolescentní větvi UC", + "Společnost na CDA": "Krajská nemocnice Tomáše Bati", + "PI Last Name": "Ťoukálková", + "PI First Name": "Lenka", + "Plné jméno": "MUDr. Lenka Ťoukálková", + "PI Email Address": "toukalkova@bnzlin.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Šuláková" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_15BdYXMEJFdf7W9_b11cOvqU1TI0p3U_CGC_2wRKnkQCn6FAGjj&_g_=g", + "SM": "Lenka", + "SM poznámky": "dle ww stránek v ambulanci - Dr.Šuláková po,pá: 08,00-14,30 a út: 08,00-11,30,\n 2.5. v 10:00 ani po 14h- nikdo nezvedá. Zavolám v pondělí 5.5.\n5.5. má toho moc, slíbila, že vyplní SipIQ dnes nebo zítra. Jinak bude k dispozici v pátek 9.5. v ambulanci.\n9.5.- SipIQ paní doktorka vyplnila a odeslala při našem hovoru. Domluven termín SQV.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "21.5. v 13:30 \nremote", + "SIPIQ zajímavosti": "Nemá zkušenost s Mayo, ePRO, CSSRS, nemá SC (nemuselo by vadit - 1-2 pacienti), IATA, nemá inkubátor, IGRA a rtg hrudníku", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Adolescenti 2 (1:1)", + "Počet pacientů SQV": "2-3 screening/ 1-2 randomizovaní\nměli jen jednu studii a to byla 4 (neměli nikdy 2 ani 3 fázi)", + "Recommended Not recommended for selection argumenty podle reportu": "SM does not recommend this site:\n - PI is inexperience (only one study phase IV.)\n - Insufficient study team - only one study nurse, PI is very busy and want to perform the role of SC Additonal comment: PI confirmed that site want to participate in the IUS sub-study.\nSub-Investigator will perform the IUS examination", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Adolescenti", + "FINAL DECISION PRO ICONIC IBD": "Not recommended", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "17APR2025 SIPIQ odeslán", + "Comment": "30APR2025 reminder k vyplnění feasibility dotazníku\n29APR2025 reminder, aby vyplnila feasibility dotazník\n11APR2025 má zájem o feasibility\n11APR2025 reminder 2\n09APR2025 žádost o účast v adolescentní větvi UC", + "Společnost na CDA": "Fakultní nemocnice Ostrava", + "PI Last Name": "Šuláková", + "PI First Name": "Astrida", + "Plné jméno": "MUDr. Astrida Šuláková, PhD.", + "PI Email Address": "astrida.sulakova@osu.cz\nastrida.sulakova@fno.cz", + "PI Phone Number": "597 373 524" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Karásková" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "není ani v Iluminatoru, žádná akce tam", + "Comment": "10APR2025 nebude se účastnit\n09APR2025 žádost o účast v adolescentní větvi UC", + "Společnost na CDA": "Fakultní nemocnice Ostrava", + "PI Last Name": "Karásková", + "PI First Name": "Eva", + "Plné jméno": "doc. MUDr. Eva Karásková, PhD.", + "PI Email Address": "Eva.Karaskova@fnol.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vyhnánek" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_1nYMXUpJeUbk168_b11cOvqU1TI0p3U_CGC_ElYHCLBaVrdnqy3&_g_=g", + "SM": "Lenka", + "SM poznámky": "2.5.- číslo 261 082 328- 14h sestřička slíbila, že předá Dr.Vyhnánkovi vzkaz až se vrátí a ozve se sám zpět , neozval se, dodán nový tel.kontakt- 261 082 377- nikdo nezvedá. Budu volat v pondělí 5.5.. 261 083 798 \n5.5. - 12:30- Šel na oběd, volat cca v 13:30, na čísle 261 082 328 není a na lince 3798 je stále obsazeno, kdýž jsem se dovolalal tak nešel k telefonu (komunikace přes sestřičku) \nmá teď akutní případ, volat zítra 6.5. linka 261 082 328 okolo 9h \n6.5.- 9h prý je na ambulanci linka 3798,na ambulanci tvrdili, že je na lůžkovém a tam, že odešel na ambulanci (není k sehnání), možná bude na lůžkovém v 13:30. Ponechán vzkaz na ambulanci i na lůžkovém.\nVladovi na email odpověděl, že nestíhá a předal kontakt na Dr.. Lucií Gonsorčíkovou Ph.D. (261 083 180)\n9.5. Dr.Gonsorčíková má jednání- zanechán vzkaz- volala zpět a potvrdila, že SipIQ vyplnila a má zájem. SQV domuvena.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "28.5. v 13:30 \non-site", + "SIPIQ zajímavosti": "Nemá zkušenost s Mayo, ePRO, CSSRS,IATA", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Adolescenti 5 (3:2)", + "Počet pacientů SQV": "2 pacienti", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ano", + "LTM": "Vlado", + "Illuminator status CD": "NA", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "30APR2025 reminder, aby vyplnil feasibility dotazník\n29APR2025 reminder, aby vyplnil feasibility dotazník\n11APR2025 opakování\n09APR2025 opakování\n05APR2025 žádost o účast v adolescentní větvi UC\n15APR2025 chce do feasibility", + "Společnost na CDA": "Fakultní Thomayerova nemocnice", + "PI Last Name": "Vyhnánek\n Gonsorčíková", + "PI First Name": "Radim\nLucie", + "Plné jméno": "MUDr. Radim Vyhnánek\nMUDr. Lucie Gonsorčíková, PhD.", + "PI Email Address": "radim.vyhnanek@ftn.cz\nlucie.gonsorcikova@ftn.cz", + "PI Phone Number": "261 083 798 (ambulance), 2328 (lůžkové), 2377 (pokoj)\n739 089 650" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Falc" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_NlpwWPMSKtrY7Xe_b11cOvqU1TI0p3U_CGC_JHxt6JWa9lHqrx3&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Lenka", + "SM poznámky": "2.5.- PI dopoledne nedostupný, ozval se, že je na dovolené. Zavoláme si příští týden (Po nebo Út 5.nebo 6.5.) a domluvíme termín SQV.\n5.5. domluven termín telefonické selekce", + "Termín SQV a TYP (onsite či remote, respektive remote)": "16.5. v 16h \nremote", + "SIPIQ zajímavosti": "Zadáno strašně málo pacientů ročně 3xCD a 5xUC. Chyba? \nLP- po SQV- Myšleno nový pacientů.\nNemá inkubátor a EKG a mrazák -70.\nNevychází počty.", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "2 (2:0) / 4 (2:0)", + "Počet pacientů SQV": "UC- 4 screenovaní- 2 randomizovaní\nCD- 3 screenovaní- 2 randomizovaní\nmá pouze biol. naivní pacienty", + "Recommended Not recommended for selection argumenty podle reportu": "The PI has been involved in clinical trials since 2020 and has experience as a principal investigator in two clinical\ntrials at Slany Hospital. PI is communicative, well- cooperate and responsible.\nThis is small that would like to participate in clinical trials, but the unavailable devices (centrifuge and altimeter)\nneed to be resolved.\nThe PI would appreciate if these devices could be borrowed from Janssen for the study. Additional comments: PI will clarify whether the site will participate in the IUS sub-study - check with the radiologist for availability.\nPI confirmed that most patients will be able to use BYOD. He would like to receive a few handhelds on the site,\nfor those who don't have suitable phones. Falc v Anthemu U dr Peterky. Ostatní přístroje si koupí až mu potvrdíme. Potřeboval by centrifugu a vyskomer - ujistit se o zapujceni pres novy provider Vladku, ci jestli by slo koupit lokálně z penez studie. Bude potřebovat inkubator od centrály.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Zajímá se o další dvě studie, ale není centrum biolog lecby. Do SIPIQ dal jednotky léčených pacientů na UC a CD (error?). Spíše ne do dalších studiích, abychom viděli, jak to bude fungovat.", + "FINAL DECISION PRO ICONIC IBD": "Recommended", + "Adolescenti": "Ne", + "Stav CDA": "Fully executed", + "LTM": "Vlado", + "Illuminator status CD": "25APR2025 SIPIQ odeslán", + "Illumninator status UC": "25APR2025 SIPIQ odeslán", + "Comment": "Chce se účasnit, není v Illuminatoru", + "Společnost na CDA": "Centrum gastroenterologie a hepatologie s.r.o.", + "PI Last Name": "Falc", + "PI First Name": "Matěj", + "Plné jméno": "MUDr. Matěj Falc", + "PI Email Address": "matesfalc@seznam.cz", + "PI Phone Number": "731 168 856" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hucl/Drastich" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Svetlana asi tedy namisto Drasticha a Benese??", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s doc Drastichem", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_I6JruiYAaeo76r6_b11cOvqU1TI0p3U_CGC_RlMoEDeeIYBPf7M&_g_=g", + "SM": "Dan", + "SM poznámky": "SIPIQ znovu odeslán po tel.domluvě přes sekretářku 5.5.25, přislíbila pana profesora upomenout. 7.5 prof. informuje , že orientačně vyplnil SIPIQ. Odkaz na Doc. Drasticha-zaslan e-mail ohledně stanoveni terminu selekce 11.5 a 12.5. upomínka přes paní sekretářku, 14.5. email upomenuti PI, sekretarka telefonicky", + "Termín SQV a TYP (onsite či remote, respektive remote)": "on-site 23.5 - PI 15:00\non-site 29.5. - SC 14:00", + "SIPIQ zajímavosti": "Nemají zkušenost s CDAI, Mayo, ePRO, CSSRS", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 5 (2:3) / 5 (2:3)", + "Počet pacientů SQV": "3 rand. UC a 3 rand. CD", + "Recommended Not recommended for selection argumenty podle reportu": "2 a 2 studie bezi. Nejprve vsechno vi vsechno zna (doc drastich), az ke konci se ptal (pistele a dren). 4 xSI, 1xSC, 2-3x SN. Skladovani IMP v lekarne a vyzvedavat postupne, smlouva dvojstranna. Domluva komplikovanejsi jak s PI tak s SC. Jeste cekame na detaily endoskopu. Budou zařazovat spíše těžší pacienty co selhali 3 a více biol. lecby.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o obě studie. Uvedli, že léčí ročně 20 pacientů UC a 20 pacientů CD (error?) s poměrem 5:15 v obou", + "FINAL DECISION PRO ICONIC IBD": "ANO ale 7/10", + "Adolescenti": "ne", + "Stav CDA": "09APR2025 vyžádáno Zuzka", + "LTM": "Vlado", + "Illuminator status CD": "máme SIPIQ", + "Illumninator status UC": "máme SIPIQ", + "Comment": "30APR2025 reminder, aby vyplnil feasibility dotazník\n29APR2025 reminder, aby vyplnil feasibility dotazník\n08APR2025 poslední pokus\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem 9APR2025 Svetlana ma meeting 15May, zeptá se", + "Společnost na CDA": "IKEM", + "PI Last Name": "Hucl/Drastich", + "PI First Name": "Tomáš/Pavel", + "Plné jméno": "prof. MUDr. Tomáš Hucl, Ph.D.\ndoc. MUDr. Pavel Drastich, Ph.D.", + "PI Email Address": "tomas.hucl@ikem.cz", + "PI Phone Number": "+420 236 052 600", + "PI Full Address": "IKEM", + "Primary Institution Name": "Ikem", + "Site Address": "Praha", + "Site City": "Praha" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Leksa" + }, + "excel": { + "Světlana, Zuzka, Panorama": "tip od svetlany https://www.gastromedic.cz/o-nas-a5", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_UdaEYElwWeMzunZ_b11cOvqU1TI0p3U_CGC_dBGlrGnvr8UPn0I&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Žaneta", + "Termín SQV a TYP (onsite či remote, respektive remote)": "26.5.2025 remotely", + "SIPIQ zajímavosti": "Nemá inkubátor, IGRA, EKG, mrazák -70", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 3 (3:0) / 2 (2:0)", + "Počet pacientů SQV": "CD 2 / UC 3 (naivní primárně)", + "Recommended Not recommended for selection argumenty podle reportu": "Recommended, ma jen naivni pacienty. CD 2, UC 3, vybaceni ma, chybi inkubator a centrifuga. Lekarna pobliz.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Nemá zájem", + "FINAL DECISION PRO ICONIC IBD": "Ano (10 z 10) - ale chybi centrifuga", + "Adolescenti": "ne", + "Stav CDA": "Fully executed", + "LTM": "Vlado", + "Illuminator status CD": "SIPIQ hotov", + "Illumninator status UC": "SIPIQ hotov", + "Comment": "09APR2025 ozval se Dr. Leksa, mají zájem\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem + jestli ano, tak identifikovat PI 9APR2025 Svetlana zavolá a zeptá se", + "Společnost na CDA": "Gastromedic s.r.o.", + "PI Last Name": "Leksa", + "PI First Name": "Václav", + "Plné jméno": "MUDr. Václav Leksa", + "PI Email Address": "vaclav.leksa@seznam.cz", + "Site Address": "Pardubice" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Pešta" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Svetlana", + "EMA": "UC 1x po náboru a také 1x nábor pending u Bartoše", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "Comment": "26MAR2025 nemají pro studii prostor\n26MAR2025 email jestli zájem 9APR2025 Svetlana po Velikonocích meeting tak se jeste zeptá", + "Společnost na CDA": "Nemocnice Bulovka", + "PI Last Name": "Pešta", + "PI First Name": "Martin", + "Plné jméno": "MUDr. Martin Pešta", + "PI Email Address": "pestam@seznam.cz\nmartin.pesta@bulovka.cz", + "PI Phone Number": "+420 266 082 560", + "PI Full Address": "Bulovka", + "Primary Institution Name": "Bulovka", + "Site Address": "Praha", + "Site City": "Praha" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vyhnálek" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Svetlana namísto Vyhnálka??", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s dr Leksou", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_eXfhXjSPVkGRmE6_b11cOvqU1TI0p3U_CGC_gsUajdzMVzOKfw5&_g_=g", + "Feasibility dotaznik vyplnen": "NE", + "SM": "Žaneta", + "SM poznámky": "6.5.2025 nepodařilo se mi dovolat,zkoušela jsem x krát. Poslala jsem upomínku emailem. 12.5.2025 nelze se dr. dovolat, ani na sekretariát.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "Jen pro info: Tady pracuje asi i dr Leksa, ale asi ok. Vedeno jako centrum biologické léčby s dr Leksou.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "ne", + "LTM": "Vlado", + "Illuminator status CD": "25APR2025 SIPIQ odeslán", + "Illumninator status UC": "25APR2025 SIPIQ odeslán", + "Comment": "30APR2025 reminder, aby vyplnil feasibility dotazník\n29APR2025 reminder, aby vyplnil feasibility dotazník\n11APR2025 opakování\n09APR2025 napsal jsem prim. PETR VYHNÁLEK", + "Společnost na CDA": "Nemocnice Pardubice", + "PI Last Name": "Vyhnálek", + "PI First Name": "Petr", + "Plné jméno": "MUDr. Petr Vyhnálek", + "PI Email Address": "petr.vyhnalek@nempk.cz", + "PI Full Address": "Nemocnice Pardubice", + "Primary Institution Name": "FN Pardubice", + "Site Address": "Pardubice", + "Site City": "Pardubice" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vanasek" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3008", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "2", + "Cn # sites": "2", + "Pr-Cn # Sites Open": "2", + "Cn F Site Open Exp": "2021-06-18 00:00:00", + "HA Init Appr Act": "2021-05-12 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "8", + "Cn # enrolled": "5", + "Cn # completed": "5", + "Cn # screen fail": "3", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Closed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - good performance, Panorama CD a Panorama UC (2 z1)", + "J&J studie": "Anthem", + "EMA": "UC1x nábor a 7x po náboru, CD 2x v naboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_1BzoQlyfQD4G2Tu_b11cOvqU1TI0p3U_CGC_fkiXZiDdEU2BSYj&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Lenka", + "SM poznámky": "2.5.- Dr.Vaňásek souhlasí s provedení SQV při MV An them 15.5.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "15.5. v 15:30 \non-site", + "SIPIQ zajímavosti": "Zkrácená verze SIPIQ bez druhé části.", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 4 (1:3) / 4 (1:3)", + "Počet pacientů SQV": "UC- 5 screenovaní- 3 randomizovaní\nCD- 5 screenovaní- 3 randomizovaní", + "Recommended Not recommended for selection argumenty podle reportu": "(nemají certifikovaný výškoměr), The SM recommends the site for participation based on potential subject population, correct staffing, space for\nconducting the study, qualification and previous experience in clinical trials (including UC a CD) and interest in\nthe proposed trial. Comments:The PI would welcome an increase in the amount of compensation:\n- for patients for endoscopy (to take into account 2 days- preparation and second day examination)\n- for accompanying a patient to a colonoscopy (they must take one day off from work)\n- and, if possible, if the travel costs took into account the patient's time spent at the site during patient visits\n(mainly during screening period and induction phase)\nPI confirmed that:\n- the site does not want to participate in the IUS sub-study\n- most patients will be able to use BYOD. He would like to receive a few handhelds on the site, for those who\ndon't have suitable phones.\nquestion raised during SQV:\n • If the termination of biological treatment was based on the refusal of the health insurance company to cover\nthe treatment even if the patient health status later worsened, the insurance company did not approve the\ncontinuation of biological treatment. Are these patients also excluded from the study?\n • During corticosteroids tapering if the patient's condition worsens, the physician should reinstitute\ncorticosteroids and/or report flare, or both?\n • Can flare be reported before complete discontinuation of corticosteroids?\nHowever, it must be taken into account that the site has a large number of studies and this may lead to\noverloading of site staffs. ají hodně studií, jsou hodně vytížení, ale hodně zkušení. Bude záležet na kompenzaci.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Má zájem o obě studie. Zkrácený SIPIQ, nevíme kolik pacientů. Mají hodně studií, jsou hodně vytížení, ale hodně zkušení. Bude záležet na kompenzaci.", + "FINAL DECISION PRO ICONIC IBD": "ANO, ale pak už nenabízet jiné studie. Dělal Anthem. Povinný ultrazvuk nechtějí.", + "Adolescenti": "ne", + "Stav CDA": "08APR2025 vyžádáno Zuzka", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 mluvil jsem s ním a udělá večer\n07apr2025 opakování emailu, ale nastavil jsem Illuminator approved for feasibility\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "Společnost na CDA": "HEPATO-GASTROENTEROLOGIE HK, s.r.o", + "PI Last Name": "Vanasek", + "PI First Name": "Tomas", + "Plné jméno": "MUDr. Tomáš Vaňásek, PhD.", + "PI Email Address": "tomas.vanasek@hepato-gastro.com", + "PI Phone Number": "603 545 009", + "PI Full Address": "tr. Edvarda Benese 1549/34,Poliklinika III.,,Hradec Kralove,", + "Primary Institution Name": "Hepato-gastroenterologie HK, s.r.o.", + "Primary Institution Phone Number": "420495218475", + "Site Address": "tr. Edvarda Benese 1549/34 Poliklinika III.", + "Site Address Line 2": "Poliklinika III.", + "Site City": "Hradec Kralove", + "Site Zip/Postal Code": "500 12", + "St # required subj": "1", + "St # screened": "1", + "St # enrolled": "1", + "St # completed": "1", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2021-03-22 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Šerclová" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3008", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "2", + "Cn # sites": "2", + "Pr-Cn # Sites Open": "2", + "Cn F Site Open Exp": "2021-06-18 00:00:00", + "HA Init Appr Act": "2021-05-12 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "8", + "Cn # enrolled": "5", + "Cn # completed": "5", + "Cn # screen fail": "3", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Not Selected", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - drop - PI left the hospital. Good eprformance, KOL, Panorama", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s dr Matoušem", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_JLu3G9ijWqSTIuU_b11cOvqU1TI0p3U_CGC_Q0OKy7FBEjH1jqq&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Iveta", + "Termín SQV a TYP (onsite či remote, respektive remote)": "27.5. ve 14:30 on-site", + "SIPIQ zajímavosti": "IUS zájem má, ale DICOM nemá.", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. NA / 4 (2:2)", + "Počet pacientů SQV": "CD3-4", + "Recommended Not recommended for selection argumenty podle reportu": "Bohate zkusenosti. Zamysli se nad designem + odpoved na dotazy, spis pacienti po x lecbach. SC zaroven sekretarka. 2 comp studies konec cerven 2026. 3-4 pacienti. Na chirurgicke klinice IBD centra. Zajem i ostatni studie v kombinaci. Site is interested to be selected for conducting of ICONIC CRD study.\nThe study team has experience with clinical trials, the site has sufficient equipment and space for conducting\nthe study. All team members are qualified by certificates and experience for this study. The SM recommends\nthe site for participation based on potential subject population, correct staffing and equipment, previous\nexperience in clinical trials and interest in the proposed trial. Addtional comments: The site is not interested in performing IUS sub-study.\nPI- Dr. Serclova probably has CV on EUCTR template.\nPI was also informed about importance sign the following Form before initial study submission in case of\nselection:\nConflict of Interest and Centre Suitability.\nPI and SC was informed that all validation/calibration certificates for study equipment needs to be available\nbefore SIV.\n The site prefers patient compensation via sending payment on patient bank account.\nThe following questions/topics raised by PI during SQV a needs to be clarified by local or central team:\nPI has a fundamental question about the exclusion criterion: Is ileocecal resection - which is the most common\nCRD operation - considered a “colonic resection”? (Excl crit: History of extensive colonic resection (ie, <30 cm of\ncolon remaining) or colonic resection that could impair the use of disease severity assessments (eg. CDAI) to\nassess response to study intervention) • She has also comment related to design of the Induction study (1:1:1-\n30% chance placebo) and then in the Maintenance Icotrokinra responders were re-randomized to the 2:1\nplacebo arm, meaning that 30% of patients would be dropped from active treatment).", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Zájem jenom CD. 350 UC a z toho naivní 50 a 220 CD a z too navní 150.", + "FINAL DECISION PRO ICONIC IBD": "Ano, jedina, kdo ma zajem explicitne o CD", + "Adolescenti": "ne", + "Stav CDA": "08APR2025 vyžádáno Zuzka", + "LTM": "Vlado", + "Illuminator status CD": "SIPIQ hotov", + "Illumninator status UC": "SIPIQ hotov", + "Comment": "29APR2025 reminder k vyplnění feasibility dotazníku\n07APR2025 pracuje na Vinohradech\n01APR2025 opakování dotazu\n26MAR2025 dotaz kde vlastně pracuje\n26MAR2025 má zájem\n26MAR2025 email jestli zájem - pak zjistíme kde vlastně je, ale pamatuji si, že do Anthem nechtěl, viděl jsem, že pracuje na Vinohradech jeden den, jako když neví, na kterou židli se posadit", + "Společnost na CDA": "Fakultní nemocnice Královské Vinohrady", + "PI Last Name": "Šerclová", + "PI First Name": "Zuzana", + "Plné jméno": "MUDr. Zuzana Šerclová", + "PI Email Address": "sercl@seznam.cz", + "PI Phone Number": "+420 602 158 805", + "Site Address": "K Nemocnici 1106 Chirurgicke oddeleni-gastroenterologie", + "Site Address Line 2": "Chirurgicke oddeleni-gastroenterologie", + "Site City": "Horovice", + "Site Zip/Postal Code": "268 31", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Lukas" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3008", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "2", + "Cn # sites": "2", + "Pr-Cn # Sites Open": "2", + "Cn F Site Open Exp": "2021-06-18 00:00:00", + "HA Init Appr Act": "2021-05-12 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "8", + "Cn # enrolled": "5", + "Cn # completed": "5", + "Cn # screen fail": "3", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Closed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - KOL, high performance, Panorama CD a panorama UC", + "J&J studie": "Astro (0), Duet CD (4), Duet UC (3), Anthem, Fuzion, Reason, Galaxy, Quasar", + "EMA": "UC3x nábor a 5x po náboru, Cd3x nabor a 3x po naboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_ZVTrPZp2ZfQUFaj_b11cOvqU1TI0p3U_CGC_4CZFthWoLDi6oW2&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Dan", + "SM poznámky": "2.5. - nikdo nezvedá, zkoušela jsem i SC Kalitzovou na mobil a také nebere. SC volala zpět. Prof. Lukáš v SanDiegu vrací ve čtvrtek.\n12.5. Hovor s SC Kalitzovou - Potencialne problem s prostory a pacienty, 13.3. behem rano znovu probere s PI Lukasem, 13.3. v 11:00 novy hovor s SC pro dohodu terminu SQV", + "Termín SQV a TYP (onsite či remote, respektive remote)": "On-site 26.5. v 9:30", + "SIPIQ zajímavosti": "více než 2 studie??? Zkrácená verze SIPIQ bez durhé části.", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 6 (2:4) / 8 (2:6)", + "Počet pacientů SQV": "3 rand. CD a 2 rand. UC", + "Recommended Not recommended for selection argumenty podle reportu": "jméno, vybavení mají, zkušenosti, podstudii ano. Jsou si vědomi, že do insterních nenabrali, že jen do externích, tak by snad mohli. Nevýhoda hlavně pacienti, co 3 a více nedostatecná odpoved na biol. lecbu. meli bychom jim nabidnou alespon jednu ze tri studii, dalsi dve studie guselkumab ano, ale nemusi golimumab - to maji v CRO studii Duetu, 8 zascreenovali, ale udržel se jenom jeden pacient. takže JNJ4804 asi pro ně tolik ne, když už tak MAF kde guselkumab versus risankizumab. 3x UC a 3x CD. Budou zařazovat těžší pacienty. Vybavení mají.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Když obě tak s MAF, nikoliv JNJ4804 alespoň náš odhad podle zkušeností v Duetu (8 pacientů nabrali, jenom 1 se udržel). 5000 poacientů a 2500 na biologické léčbě.", + "FINAL DECISION PRO ICONIC IBD": "ANO 9/10 ale nenabrali ve dvou internich studiích", + "Adolescenti": "ne", + "Stav CDA": "08APR2025 vyžádáno Zuzka", + "LTM": "", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "30apr2025 reminder, aby vyplnil feasibility dotazník\n29APR2025 reminder aby vyplnil feasibility dotazník\nNenabral nic do Anthemu, nechceme, ICONIC je stejná molekula, design stejný, není důvod čekat, že teď nabere", + "Společnost na CDA": "Iscare a.s.", + "PI Last Name": "Lukas", + "PI First Name": "Milan", + "PI Email Address": "studie.lukas@email.cz", + "PI Phone Number": "+420 23 477 0299", + "PI Full Address": "Ceskomoravska 2510/19,8. patro,IBD a gastroenterologie,Praha 9,", + "Primary Institution Name": "ISCARE a.s.", + "Site Address": "Ceskomoravska 2510/19 8. patro IBD a gastroenterologie", + "Site Address Line 2": "8. patro", + "Site Address Line 3": "IBD a gastroenterologie", + "Site City": "Praha 9", + "Site Zip/Postal Code": "190 00", + "St # required subj": "6", + "St # screened": "7", + "St # enrolled": "4", + "St # completed": "4", + "St # screen fail": "3", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2021-03-22 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Douda" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3008", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "2", + "Cn # sites": "2", + "Pr-Cn # Sites Open": "2", + "Cn F Site Open Exp": "2021-06-18 00:00:00", + "HA Init Appr Act": "2021-05-12 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "8", + "Cn # enrolled": "5", + "Cn # completed": "5", + "Cn # screen fail": "3", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Not Selected", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - drop - no active study - consider to add the site back during the next review as finally the site was added to REASON study in Oct 2023, Panorama CD", + "J&J studie": "Reason", + "EMA": "UC 1xnabor, CD 1x v naboru pod dr Melekem jan.melek@fnhk.cz", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "Comment": "04APR2025 nemají kapacitu\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "PI Last Name": "Douda", + "PI First Name": "Tomas", + "Plné jméno": "MUDr. Tomáš Douda, PhD.", + "PI Email Address": "tomas.douda@fnhk.cz", + "PI Phone Number": "+ 42 49 583 3818", + "PI Full Address": "Sokolska 581,II. interni gastroenterologicka klinika,,Hradec Kralove,", + "Primary Institution Name": "Fakultni nemocnice Hradec Kralove", + "Site Address": "Sokolska 581 II. interni gastroenterologicka klinika", + "Site Address Line 2": "II. interni gastroenterologicka klinika", + "Site City": "Hradec Kralove", + "Site Zip/Postal Code": "500 05", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hlavova" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Execution", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Zuzka - low performance, Panorama", + "EMA": "CD 1 po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_HdK1o5mdbXoVvh8_b11cOvqU1TI0p3U_CGC_BFgyRyOI736CzOt&_g_=g", + "SM": "Lenka", + "SM poznámky": "2.5. tel.kontakt v 14h, neměla čas- volat po 16h- Dr.Hlavova telefon nezvedá (zkoušela jsem 2x na mobil + 2x na pevnou linku) . Volala zpět v 16:45. Byla 3 týdny pryč. Koukne se na to v týdnu 5.5. a dá vědět.\n6.5.- 18:30 poslala sms, že vyplnila SipIQ, domluvíme SQV\n7.5. 8:15- mobil nezvedá,volala zpět sama, zavolá cca 14-15h a domluvíme termín SQV", + "Termín SQV a TYP (onsite či remote, respektive remote)": "22.5. v 14h \non-site \nDr.Hlavová chce u selekce celý tým = +4CDA", + "SIPIQ zajímavosti": "není centrum biologické léčby a uvádí IR což i uvádí v dotazníku, že léčí pacienty na biologickou léčbu víc než naivní\n26May25 LP- dle PI mají centrum biol.léčby", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 2 (1:1) / 2 (1:1)", + "Počet pacientů SQV": "UC- 2 randomizovaní\nCD- 2 randomizovaní\nbudou screenovat dokud nezařadí 2 pacienty, mají jak naivní, tak po selhání na ADT", + "Recommended Not recommended for selection argumenty podle reportu": "The SM recommends the site for participation based on potential subject population, correct staffing, space for\nconducting the study, qualification and previous experience in clinical trials (including UC a CD) and interest in\nthe proposed trial.\nThe site does not have a study coordinator, this role will be done by the PI. The PI mentioned that she would\nneed help setting up access to Vendor's systems.\nAppropriate site staff should complete IATA training if a site is selected. Additional comments: The site has preliminary interest in the IUS sub-study, but would like to know more details - what are the\nrequirements, the procedure for ultrasound recording, and how and where to record. IUS will be done by PI or\nsub-investigator.\nPI confirmed that most patients will be able to use BYOD. She would like to receive a few handhelds on the site,\nfor those who don't have suitable phones. Jen tuto studii, nemá SC, dá jenom 2 randomizované pacienty.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Nemá zájem o JNJ4804. Jen tuto studii, nemá SC, dá jenom 2 randomizované pacienty.", + "FINAL DECISION PRO ICONIC IBD": "ANO, jenom nezařadí více pacientů, ale mohl by zařadit Falc", + "Adolescenti": "ne", + "Stav CDA": "08APR2025 vyžádáno Zuzka", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "30APR2025 reminder, aby vyplnila feasibility dotazník\n29APR2025 reminder by vyplnila feasibility dotazník\n04APR2025 má zájem\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "Společnost na CDA": "Oblastni nemocnice Kladno a.s.", + "PI Last Name": "Hlavova", + "PI First Name": "Helena", + "PI Email Address": "hhlavova@atlas.cz", + "PI Phone Number": "312 606 289 nebo linka 760, 602 204 273", + "PI Full Address": "Vancurova 1548,,,Kladno,", + "Primary Institution Name": "Oblastni nemocnice Kladno a.s.", + "Primary Institution Phone Number": "420602303112", + "Site Address": "Vancurova 1548", + "Site City": "Kladno", + "Site Zip/Postal Code": "27259", + "St # required subj": "2", + "St # screened": "1", + "St # enrolled": "1", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2021-12-09 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Stepek" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Execution", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - high performance, Panorama CD a Panorama UC 2 ze 4", + "J&J studie": "Due CD a UC (?), Graviti", + "EMA": "UC5x nábor a 6x po náboru, CD 1 v náboru a 1 v náboru u Hegyi", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_RYae4Pghd19RhPz_b11cOvqU1TI0p3U_CGC_UviLrNeD52rxvhz&_g_=g", + "SM": "Lenka", + "SM poznámky": "2.5.- 14h nikdo nebere, 15h- byl na cestě v autě- slíbil, že vyplní SipIQ zítra (v So 3.5.) a poté domluvíme termín SQV. 3.5. vyplnil SipIQ, čeká na CDA.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "13.5. v 18:30 \non-site", + "SIPIQ zajímavosti": "Nic, co by vybočovalo", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol???? 4 (2:2) / 5 (2:3)", + "Počet pacientů SQV": "CD- 5 screenovaní- 3 randomizovaní", + "Recommended Not recommended for selection argumenty podle reportu": "The SM recommends the site for participation based on potential subject population, correct staffing, space for\nconducting the study, qualification and previous experience in clinical trials (including UC a CD) and interest in\nthe proposed trial. Additonal comments: PI confirmed:\n- that he is not interested in IUS sub-study.\n- patients receiving biologic treatment at this site were enrolled in clinical trials. Site is not biological treatment\ncenter.\n - most patients will be able to use BYOD. He would like to receive a few handhelds on the site, for those who\ndon't have suitable phones. Přístroje má. Měl jít do Anthemu, ale tím, že nebyl budget, tak to neklaplo. Teoreticky by mohl do další studie. Asi bude ve smlouvě cap na počet pacientu (5) a pak pisemné potvrzeni o dalsi pacienty. Snad i zvládne s Ulbrychem v Brně. Pacienti se selháním na biol lecbu jenom ve studiích.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Má zájem o obě studie.100 pacientů CD 50:50 a 150 pacientů UC 100:50 ročně.Měl jít do Anthemu, ale tím, že nebyl budget, tak to neklaplo. Teoreticky by mohl do další studie. Asi bude ve smlouvě cap na počet pacientu (5) a pak pisemné potvrzeni o dalsi pacienty. Snad i zvládne s Ulbrychem v Brně. Pacienti se selháním na biol lecbu jenom ve studiích.", + "FINAL DECISION PRO ICONIC IBD": "ANO", + "Adolescenti": "ne", + "Stav CDA": "Fully executed", + "LTM": "Vlado", + "Illuminator status CD": "05MAY2025 SIPIQ vyplněný", + "Illumninator status UC": "05MAY2025 SIPIQ vyplněný", + "Comment": "29APR2025 omylem jsem mu SIPIq neposlal, zjistil jsem to dnes, posílám\n01APR2025 má zájem, poslat SIPIQ\n26MAR2025 email jestli zájem", + "Společnost na CDA": "Vojenská nemocnice Brno", + "PI Last Name": "Stepek", + "PI First Name": "David", + "PI Email Address": "dstepek@vnbrno.cz", + "PI Phone Number": "+420 973 445 401", + "PI Full Address": "Zabrdovicka 3,,,Brno,", + "Primary Institution Name": "Fakultni nemocnice Brno Vojenská nemocnice Brno", + "Primary Institution Phone Number": "+420532232265000 0 000 000 000", + "Site Address": "Zabrdovicka 3", + "Site City": "Brno", + "Site Zip/Postal Code": "636 00", + "St # required subj": "3", + "St # screened": "5", + "St # enrolled": "5", + "St # completed": "2", + "St # screen fail": "0", + "St # early term": "1", + "St # disc treatm": "0", + "St Qualified Act": "2021-10-29 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Smid" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Cancelled", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - good performance, Panorama CD, Panorama UC 0 z 1 pacienta", + "J&J studie": "Astro (0)", + "EMA": "UC 1x po náboru (kolegyně Mayerová a Veberová po 1 studii v náboru), CD 1x po náboru (a Veberová také 1x po náboru)", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_oikvDetURD8tHn6_b11cOvqU1TI0p3U_CGC_rg13MPWrUyFQt9M&_g_=g", + "Feasibility dotaznik vyplnen": "NE", + "SM": "Žaneta", + "SM poznámky": "6.5.2025 dovolala jsem se, slíbil že co nejdříve vyplní. Příjemný pan doktor :)12.5.2025 opět jsem dr. volala, slíbil, že vyplní do termínu. 14.5.2025 s dr. jsem mluvila, říkal, že se na dotazník znovu podívá, ale stále nic. Nejspíš bez zájmu. Už ho nebudu kontaktovat, psala a volala jsem mu x krát.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "ne", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "30apr2025 připomínka, aby dokončil feasibility dotazník\n29APR2025 začal vyplňovat, ale moc daleko ne, poslal jsem mu připomínku\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "Společnost na CDA": "Synexus", + "PI Last Name": "Smid", + "PI First Name": "Vaclav", + "PI Email Address": "venca.smid@gmail.com", + "PI Phone Number": "+42 721 944 429", + "PI Full Address": "Charles Square 2097/10,,,Prague 2,", + "Primary Institution Name": "Synexus Czech s.r.o.", + "Site Address": "Charles Square 2097/10", + "Site City": "Prague 2", + "Site Zip/Postal Code": "120 00", + "St # required subj": "0", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2021-11-03 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Jelinek" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Not Selected", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama", + "EMA": "CD 1 po náboru.UC2x nábor a 2x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_L5prMyVze5GpH2o_b11cOvqU1TI0p3U_CGC_t4Ulhk5PFCocIDX&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Lenka", + "SM poznámky": "2.5.- dotazník vyplňuje Kateřina Urbánková (katerina.urbankova@crc-cz.com), slíbila, že dnes dovyplní. Adresa centra potvrzena telefonicky.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "12.5. v 10:00 \non-site", + "SIPIQ zajímavosti": "Nevychází počty, asi myslel 4 do UC a 4 do CD?:-) Nemá zkušenost s dotazníky, C-SSRS, nemá mrazák -70", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol??? 2 (2:2) / 2 (2:2)", + "Počet pacientů SQV": "2-3 screening/ 1-2 randomizovaní (pouze naivní pacienti) na kazdou studii", + "Recommended Not recommended for selection argumenty podle reportu": "SM partially recommends site.\nIt is small site- PI predicted 1-2 randomized patients for UC and 1-2 randomized patients for CD.\nThe Electronic source medical records and study electronic records needs to be unified at the site (detailed\ninformation- under B. CRF, EDC Review, Source Data, Section #2 Access to medical records verified?\nPI is interested in the study (including the IUS sub-study) and confirms that he has sufficient time to conduct the\nstudy.\nThere are currently 2 ongoing studies- one for UC and one for CD.\nThe study team has experience with clinical trials, the site has sufficient equipment and space for conducting\nthe study.\nPI has been conducting studies for 8 years. All team members are qualified by certificates and experience for\nthis study. Addtional comments: PI confirmed that some patients will be able to use BYOD. He would like to receive a few handhelds on the site,\nfor those who don't have suitable phones. Male mnozstvi pacientu, Spise 1 pacient, zajem o ultrazvuk", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Má zájem o JNJ4804 studii, ale ty počty nevychází. Zadáno 110 CD pacientů, 0 UC a navní 30 CD a naivní 80 UC. Není centrum biol lecby ne? Male mnozstvi pacientu, MAX 2", + "FINAL DECISION PRO ICONIC IBD": "ANO ale 1 pacient", + "Adolescenti": "ne", + "Stav CDA": "Fully executed", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 začal vyplňovat a skončil na otázce ultrazvuku, tak mu píšu, že to je volitelná substudie\n08APR2025 má zájem\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "Společnost na CDA": "Gastro JeKa,s.r.o. (Klatovy)", + "PI Last Name": "Jelinek", + "PI First Name": "Ondrej", + "PI Email Address": "ondra.jelinek@cmail.cz", + "PI Phone Number": "+420 37 632 0831", + "PI Full Address": "Krejciho nabrezi 914/4,,,Klatovy,", + "Primary Institution Name": "GASTRO JeKa, s.r.o.", + "Site Address": "Krejciho nabrezi 914/4", + "Site City": "Klatovy", + "Site Zip/Postal Code": "339 01", + "St # required subj": "0", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Matous" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Completed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - good performance, Panorama CD a UC (tam v Axonu Ostrovského 3x)", + "J&J studie": "Astro (2), Graviti, Quasar", + "EMA": "UC 1x po náboru ale v rámci Axonu Sevce Matouse, CD 2x v níboru a 3 po náboru v Axonu Ostrovského", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_KOpXToAxvPBc3QA_b11cOvqU1TI0p3U_CGC_Jo6LndurqvWLf5W&_g_=g", + "SM": "Ivetka", + "SM poznámky": "Dr. Matous vyplnil 5.5. SIPIQ, zájem má, poté CDA a předběžně stanoven již termín SQV", + "Termín SQV a TYP (onsite či remote, respektive remote)": "21.5. ve 14:00 on-site", + "SIPIQ zajímavosti": "Nemá zkušenosti s fistula assessment? Jeden z mála, není omyl yrovna tady?", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol??? 5 (3:2) / 4 (2:2)", + "Počet pacientů SQV": "CD 4 a UC 5", + "Recommended Not recommended for selection argumenty podle reportu": "Potencial ma, vsechno vybaveni - urcite ano. Do CD 4, a UC 5. Selhane pacienty referuje z FNKV.Dalsi studii v kombinaci zajem o UC. Site is very interested to be selected for conducting of both ICONIC IBD studies (UC and CRD):\nThe study team has experience with clinical trials, the site has sufficient equipment and space for conducting\nthe study. All team members are qualified by certificates and experience for this study. The SM recommends\nthe site for participation based on potential subject population, correct staffing and equipment, previous\nexperience in clinical trials and interest in the proposed trial.Additonal comments: PI-Dr. Jan Matous and SI-Dr. Zdena Zadorova are performing endoscopy.\nThe site does not have adolescent patients for ulcerative colitis study; the site addresses only for adult patients\nwith gastrointestinal diseases..The site prefers patient travel reimbursement via direct payment on bank\naccount or cash payment rounded to the nearest hundred. Sute has also experience with payment system\nSCAUT or Clicard.\nPI- Dr. Matous probably has CV on EUCTR template.\nPI was also informed about importance sign the following Form before initial study submission incase of\nselection: Conflict of Interest and Centre Suitability.\nPI was informed that all validation/calibration certificates for study equipment needs to be available before SIV.\nDuring SQV was also present SI-Dr. Martin Vallisch-Head of Clinical Research Axon Clinical.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Zájem jen o JNJ4804 UC. počty nevychází 100 CD (40 naivní a 25) a 70 UC (30:25).", + "FINAL DECISION PRO ICONIC IBD": "Urcite Ano", + "Adolescenti": "ne", + "Stav CDA": "Fully executed", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "05MAY2025 SIPIQ znovu přeposlán Wallisch, Matouš\n30APR2025 připomínka, aby vyplnil SIPIQ\n29APR2025 připomínka k vyplnění feasibility dotazníku\n04APR2025 mají zájem\n01APR2025 opakování emailu\n26MAR2025 email jestli zájem", + "Společnost na CDA": "Axon Clinical", + "PI Last Name": "Matous", + "PI First Name": "Jan", + "PI Email Address": "jmatous@gmail.com\ndo komunikácie pridávať aj SC/zuzana.zavorkova@axon-clinical.com", + "PI Phone Number": "+420 776 767 590", + "PI Full Address": "?", + "Primary Institution Name": "Fakultni nemocnice Kralovske Vinohrady", + "Primary Institution Phone Number": "+420267163531", + "Site Address": "Šrobárova 50", + "Site City": "Praha 10", + "Site Zip/Postal Code": "100 34", + "St # required subj": "3", + "St # screened": "4", + "St # enrolled": "3", + "St # completed": "2", + "St # screen fail": "1", + "St # early term": "1", + "St # disc treatm": "3", + "St Qualified Act": "2021-11-17 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Pumprla jr." + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Not Selected", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Panorama", + "EMA": "UC5x nábor a 2x po náboru a CD 1x v náboru a 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Vlado", + "Comment": "01APR2025 Vilu zdraví již má Helena\n01APR2025 email jestli zájem", + "PI Last Name": "Pumprla jr.", + "PI First Name": "Jiri", + "PI Email Address": "pumprlajr@vilazdravi.cz", + "PI Phone Number": "+420 72 433 9851", + "PI Full Address": "Domovina 2,,,Olomouc,", + "Primary Institution Name": "PreventaMed, s.r.o.", + "Primary Institution Phone Number": "+420585225504", + "Site Address": "Domovina 2", + "Site City": "Olomouc", + "Site Zip/Postal Code": "77900", + "St # required subj": "4", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Konecny" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Not Selected", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_mylCjrFEKVPL9J5_b11cOvqU1TI0p3U_CGC_4fGH7Y7sbCgs7n9&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Vlaďka", + "SM poznámky": "14.05. jsem volala, nebere, zkusim znovu zitra", + "Termín SQV a TYP (onsite či remote, respektive remote)": "27.5. v 15:00 on-site", + "SIPIQ zajímavosti": "Nemá zkušenost s C-SSR a IGRA testováním, nevychází počty", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol??? 8 (6:2) / 10 (5:3)\ncentrum nebiol, ale doktor ma pacienty take z FNOL", + "Počet pacientů SQV": "UC (random 5; 2 naive vs. 3 ADT-IR)\nCD (random 6; 2 naive vs. 4 ADT-IR)", + "Recommended Not recommended for selection argumenty podle reportu": "Mozny problém pro pacienty placebo. Kolonoskopie na konci indukce, maintenance a screeningu je celkem dost. Pacineti na biol lecbe jsou z nemocnice v Olomouci, mel by k nim plnou dokumentaci. Je tam po, ut a ct a SI Baca st a pa, kazdy by mel sve pacienty. za poslednich 5 let studii nemeli. Dáme 4 pacienti do obou studií s ohledem na dalsi studie. Spíše pacienti biol lecby. Nemá inkubator (centrála dodá) a centrifugu (nechteji si koupit) a min/max teplomer. rtg v budove. denní vyplnovaní deniku jsme optimisti, pár otázek. Archiv ve sklepe doma. Lokální laborka není zasmluvněna (pak vyžádat na žádance a faktury). Léky v lékárně, je mozné zasmluvnit od nás. Mensi tym, SC zena PI.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Zájem obě studie, počty pacierntů zvláštní, ale asi myslel převážně 50-60 UC i CD (zadal advanced therapy a naivní jednotky) - to z nemocnice Olomouc tak to by slo.. Asi 15 naivni, ostantí biol a jen 10 procent 3 a více selhání.", + "FINAL DECISION PRO ICONIC IBD": "ANO", + "Adolescenti": "ne", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 připomínka, aby vyplnil feasibility dotazník\nmá zájem\n09APR2024 email jestli zájem\n01APR2025 email jestli zájem", + "Společnost na CDA": "MUDr. Michal Konečný, Ph.D., s.r.o.", + "PI Last Name": "Konecny", + "PI First Name": "Michal", + "PI Email Address": "konecnymi@seznam.cz", + "PI Phone Number": "+420 581 201 691", + "PI Full Address": "Budovatelu 197/6,,,Prerov,", + "Primary Institution Name": "MUDr. Michal Konecny, Ph.D. s.r.o.", + "Site Address": "Budovatelu 197/6", + "Site City": "Prerov", + "Site Zip/Postal Code": "750 02", + "St # required subj": "3", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Peterka" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Execution", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - high performance, Panorama CD a Panorama UC", + "J&J studie": "Anthem, Graviti", + "EMA": "CD 1 v náboru a 2 ukončený nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "Comment": "Toto centrum ne, to je stroj na major protocol deviations\nSice nabral, ale je strasne narocny", + "PI Last Name": "Peterka", + "PI First Name": "Martin", + "PI Email Address": "peterka.studie@seznam.cz", + "PI Phone Number": "+420 312 575 338", + "PI Full Address": "Politickych veznu 576,,,Slany,", + "Primary Institution Name": "Nemocnice Slany", + "Site Address": "Politickych veznu 576", + "Site City": "Slany", + "Site Zip/Postal Code": "274 01", + "St # required subj": "2", + "St # screened": "8", + "St # enrolled": "5", + "St # completed": "3", + "St # screen fail": "3", + "St # early term": "0", + "St # disc treatm": "3", + "St Qualified Act": "2022-02-04 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Kojecky" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Cancelled", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - drop - no active studies and no plan to involve in the future, PanoramaCD a Panorama UC not selected", + "EMA": "UC 1x nábor penbding, CD 1y po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "LTM": "Vlado", + "Comment": "02apr2025 obsazeno, nemají kapacitu\n01APR2025 email jestli zájem", + "PI Last Name": "Kojecky", + "PI First Name": "Vladimir", + "PI Email Address": "kojecky@bnzlin.cz", + "PI Phone Number": "+420 577 552 510", + "PI Full Address": "Havlickovo nabrezi 600,,,Zlin,", + "Primary Institution Name": "Krajska nemocnice T. Bati, a.s.", + "Primary Institution Phone Number": "+4205775531880000 000 000 000", + "Site Address": "Havlickovo nabrezi 600", + "Site City": "Zlin", + "Site Zip/Postal Code": "76275", + "St # required subj": "2", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2022-02-07 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Ulbrych" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Not Selected", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - drop, Panorama CD - high performance, Panorama UC not selected", + "EMA": "UC5x nábor a 2x po náboru. CD 3 v naboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_Yd3C1WQBzbByL2Y_b11cOvqU1TI0p3U_CGC_i6ePl2ietFOcSy4&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Helena", + "SM poznámky": "16.5. , ale zřejmě virtuálně, je dost zaneprázdněný do konce května", + "Termín SQV a TYP (onsite či remote, respektive remote)": "16.5. v 9h remote", + "SIPIQ zajímavosti": "Nemá mrazák -70, jinak nic co by vybocovalo", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 2 (1:1) / 2 (1:1)", + "Počet pacientů SQV": "2 a 2. hodně studií.", + "Recommended Not recommended for selection argumenty podle reportu": "SM recommends site.It is small site- PI predicted 2 randomized patients for UC and 2 randomized patients for\nCD.PI is interested in the study (including the IUS sub-study) and confirms that he has sufficient time to conduct\nthestudy.There are currently 2 ongoing studies- one for UC and one for CD.The study team has experience with\nclinical trials, the site has sufficient equipment and space for conducting the study.PI has vast experience in\nconducting studies within past years. All team members are qualified by certificates and experience for this\nstudy.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Zájem jen o JNJ4804 UC. asi 50 UC (20:30).", + "FINAL DECISION PRO ICONIC IBD": "ANO urcite", + "Adolescenti": "Ne", + "Stav CDA": "CDA fully signed PI varianta", + "LTM": "Helena", + "Illuminator status CD": "approved for feasibility", + "Illumninator status UC": "approved for feasibility", + "Comment": "ano muzeme zaslat feasky na surgalclinic", + "Společnost na CDA": "Surgal Clinic (Brno)", + "PI Last Name": "Ulbrych", + "PI First Name": "Jan", + "PI Email Address": "jan.ulbrych@fnusa.cz - nefunguje, julbrych@vnbrno.cz - nereaguje; ulbrych.jan@surgalclinic.cz - sem mame poslat feasku", + "PI Phone Number": "+420 543 182 418", + "Primary Institution Name": "Surgal Clinic", + "Site Address Line 2": "II. interni klinika - ambul. odd-GEO", + "Site City": "Brno", + "St # required subj": "2", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Bortlik" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3004", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "5", + "Pr-Cn # Sites Open": "5", + "Cn F Site Open Exp": "2022-09-02 00:00:00", + "HA Init Appr Act": "2022-04-08 00:00:00", + "Cn # expected subj": "4", + "Cn # screened": "18", + "Cn # enrolled": "14", + "Cn # completed": "7", + "Cn # screen fail": "4", + "Cn # early term": "2", + "Cn # disc treatm": "6", + "Pr-St Status": "Cancelled", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - KOL, high performance, PanoramaCD a Panorama UC", + "J&J studie": "Astro (3), Anthem, Fuzion, Reason, Galaxy, Quasar", + "EMA": "UC 2x nábor, 5x po náboru, CD 2x nábor a 3x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_sHHVj5wzqP6OdLt_b11cOvqU1TI0p3U_CGC_JwriqHMh3ZC92hz&_g_=g", + "SM": "Lenka", + "SM poznámky": "2.5.- 14h- primář na vizitě volat po 14:30 na uvedené lince nebo na konci \"00\", stále je na vizitě, volat 14:50, poslat info na mbortlik@seznam.cz, volat v 6.5. úterý 14:45. \n6.5.- ještě se nestihl podívat, slíbil, že zkoukne do konce týdne, volat v Út 13.5. mezi 14-15h (od 15h má vizitu) a případně domluvit SQV", + "Termín SQV a TYP (onsite či remote, respektive remote)": "20.5. v 14h \nzměna termínu (PI zapomněl a nemá čas) na \n21.5. v 15:30\nremote", + "SIPIQ zajímavosti": "Simplified SIPIQ", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 6 (2:4) / 8 (2:6)", + "Počet pacientů SQV": "UC: 8-10 screenovaní- 5 randomizovaní\nCD: 8-10 screenovaní- 5 randomizovaní\n(pacienti naivní / ADT v poměru 1:1)\npočty bych brala s rezervou do ATHEMU skreenoval 3 a zařadil 1 pacienta", + "Recommended Not recommended for selection argumenty podle reportu": "The SM recommends the site for participation based on potential subject population, correct staffing, space for\nconducting the study, qualification and previous experience in clinical trials (including UC a CD) and interest in\nthe proposed trial. Zkušenosti s Anthem, osvedceny, SC má, vybavení má.\nAdditional comments: Site would like to participate in IUS sub-study.\nPI confirmed that most patients will be able to use BYOD. He would like to receive a few handhelds on the site,\nfor those who don't have suitable phones.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Nemá zájem o JNJ4804", + "FINAL DECISION PRO ICONIC IBD": "ANO", + "Adolescenti": "Ne", + "Stav CDA": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "17APR2025 SIPIQ odeslán", + "Illumninator status UC": "17APR2025 SIPIQ odeslán", + "Comment": "29AP2025 reminder k vyplěnní dotazníku\n07APR2025 ještě nemám odpověď, ale nastavil jsem Illuminator, že approved for feasibility\n04APR2025 email a tel, navíc je to IBD centrum pro děti, takže nabídnuto i UC adolescentů\n01APR2025 email jestli zájem", + "Společnost na CDA": "Nemocnice České Budějovice", + "PI Last Name": "Bortlik", + "PI First Name": "Martin", + "PI Email Address": "mbortlik@seznam.cz", + "PI Phone Number": "+42 023 477 0231", + "PI Full Address": "B. Nemcove 585/54,,Gastroenterologické odd.,Ceske Budejovice,", + "Primary Institution Name": "Nemocnice Ceske Budejovice a s", + "Site Address": "B. Nemcove 585/54 Gastroenterologické odd.", + "Site Address Line 3": "Gastroenterologické odd.", + "Site City": "Ceske Budejovice", + "Site Zip/Postal Code": "37001", + "St # required subj": "1", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2022-10-17 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Konecny" + }, + "excel": { + "Protocol ID": "78934804CRD2001", + "Strategic Priority": "4 - Priority", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "4", + "Cn # sites": "3", + "Pr-Cn # Sites Open": "3", + "Cn F Site Open Exp": "2023-02-24 00:00:00", + "HA Init Appr Act": "2022-12-22 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "11", + "Cn # enrolled": "6", + "Cn # completed": "3", + "Cn # screen fail": "5", + "Cn # early term": "1", + "Cn # disc treatm": "3", + "Pr-St Status": "Cancelled", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - low performance,PanoramaCD, Panorama UC Cancelled", + "J&J studie": "Due CD a UC (?)", + "EMA": "UC 1x po náboru, CD 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano s doc Zbořilem", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_nrPn4Id1YNfdkow_b11cOvqU1TI0p3U_CGC_1w3BUAWixvkod2n&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Žaneta", + "SM poznámky": "Ozval se MUDr. Štefan Konečný, že mu doc.Dolina předal studii a dr. Konečný bude PI.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "22.5.2025 remotely", + "SIPIQ zajímavosti": "Nevychází počty, nemá zkušenost s dotazníky, s c-ssrs, nemá mrazák. Zájem o další dvě studie UC i CD", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 5 (5:5) / 10 (8:8)", + "Počet pacientů SQV": "CD 5 / UC 3", + "Recommended Not recommended for selection argumenty podle reportu": "Zkuseni, maji vybaveni. SC sikovna. Recommended 100%, he site is well experienced in clinical trial studies. They have adequate number of suitable patients. They have\nexperienced site staff and required eqipoment.\n PI is very interested in the proposed trials.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Pod Dolinou. Mají zájem oboje. Počty se mi zdají vysoké, když max 30 pacientů rocně podle SIPIQ (zadáno zvlaštně)", + "FINAL DECISION PRO ICONIC IBD": "Ano, 10 z 10", + "Adolescenti": "Ne", + "Stav CDA": "Fully executed (master agreement)", + "LTM": "Vlado", + "Illuminator status CD": "02MAR2025 SIPIQ vyplněný", + "Illumninator status UC": "02MAR2025 SIPIQ vyplněný", + "Comment": "29APR2025 reminder, aby vyplnil dotazník\n22APR2025 volal jsem mu a chce poslat feasibilitu\n01APR2025 email jestli zájem", + "Společnost na CDA": "Fakultní nemocnice Brno", + "PI Last Name": "Konecny", + "PI First Name": "Stefan", + "PI Email Address": "konecny.stefan@fnbrno.cz", + "PI Phone Number": "+420 53 223 3500", + "PI Full Address": "Jihlavska 20,,,BRNO,", + "Primary Institution Name": "Fakultni nemocnice Brno", + "Primary Institution Phone Number": "+420532232265000 0 000 000 000", + "Site Address": "Jihlavska 20", + "Site City": "BRNO", + "Site Zip/Postal Code": "625 00", + "St # required subj": "3", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2022-03-02 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Tichy" + }, + "excel": { + "Protocol ID": "78934804CRD2001", + "Strategic Priority": "4 - Priority", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "4", + "Cn # sites": "3", + "Pr-Cn # Sites Open": "3", + "Cn F Site Open Exp": "2023-02-24 00:00:00", + "HA Init Appr Act": "2022-12-22 00:00:00", + "Cn # expected subj": "12", + "Cn # screened": "11", + "Cn # enrolled": "6", + "Cn # completed": "3", + "Cn # screen fail": "5", + "Cn # early term": "1", + "Cn # disc treatm": "3", + "Pr-St Status": "Closed", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Zuzka - drop - no active study, no plan to include in the future, Panorama", + "J&J studie": "Due CD", + "EMA": "UC 1 po náboru, CD 1 po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano s dr Stehlíkem", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_2okJD2ie1iJwuSo_b11cOvqU1TI0p3U_CGC_HaqJssz4XfIqpOT&_g_=g", + "SM": "Ivetka", + "SM poznámky": "zastihla jsem ho v autě, přislíbil že se na dotazník podívá. Již při vyplňování dotazníku dosti negativistický, vše špatně. Potenciálně zájem o CD, ale ne 2b studii-PK nepokryje", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 začal vyplńovat, moc daleko se nedostal, poslal jsem mu reminder\n01APR2025 mají zájem, poslat SIPIQ\n01APR2025 email jestli zájem", + "Společnost na CDA": "Krajská nemocnice Ústí nad Labem", + "PI Last Name": "Tichy", + "PI First Name": "Michal", + "PI Email Address": "michal.tichy@kzcr.eu", + "PI Phone Number": "+42 047 711 2450", + "PI Full Address": "Secialni Pece 3316/12a,,,Usti nad Labem,", + "Primary Institution Name": "Detska klinika Masarykovy nemocnice v Usti nad Labem", + "Site Address": "Secialni Pece 3316/12a", + "Site City": "Usti nad Labem", + "Site Zip/Postal Code": "401 11", + "St # required subj": "4", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2022-01-19 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Volfova" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3005", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-07-03 00:00:00", + "HA Init Appr Act": "2018-05-03 00:00:00", + "Cn # expected subj": "20", + "Cn # screened": "28", + "Cn # enrolled": "24", + "Cn # completed": "19", + "Cn # screen fail": "4", + "Cn # early term": "5", + "Cn # disc treatm": "13", + "Pr-St Status": "Closed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Zuzka - good performance, Panorama CD a Panorama UC (9 z 5)", + "J&J studie": "Reason, Galaxy", + "EMA": "UC3x nábor a 1x po náboru, CD 2x v naboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano s dr Vaňáskem", + "LTM": "Helena", + "Comment": "toto centrum ne, je to Vaňásek", + "PI Last Name": "Volfova", + "PI First Name": "Miroslava", + "PI Email Address": "miroslava.volfova@hepato-gastro.com", + "PI Phone Number": "+42 49 521 8475", + "PI Full Address": "Edvarda Benese 1549/34,,,Hradec Kralove,Hradec Kralove", + "Primary Institution Name": "Hepato-gastroenterologie HK, s.r.o.", + "Primary Institution Phone Number": "420495218475", + "Site Address": "Edvarda Benese 1549/34", + "Site City": "Hradec Kralove", + "Site Zip/Postal Code": "500 12", + "St # required subj": "5", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2018-01-29 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Suchanek" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3005", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-07-03 00:00:00", + "HA Init Appr Act": "2018-05-03 00:00:00", + "Cn # expected subj": "20", + "Cn # screened": "28", + "Cn # enrolled": "24", + "Cn # completed": "19", + "Cn # screen fail": "4", + "Cn # early term": "5", + "Cn # disc treatm": "13", + "Pr-St Status": "Closed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Panorama - low performance 1x", + "EMA": "UC 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_KitXpnqi5tlpMJi_b11cOvqU1TI0p3U_CGC_qIp0SB3UZWwJ2Jk&_g_=g", + "SM": "Dan", + "SM poznámky": "PI nedostupny, \ntelefonicky s SC Hana Kubů,\npředá info PI, ale s velkou \npravděpodobností nebudou \nshopni z kapacitních důvodů", + "SIPIQ zajímavosti": "Podle Dana když 13 May nevyplněno, nemají zájem", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 připomínka, aby vyplnil SIPIQ\nNevím jestli má zájem, ale SIPIQ jsem mu poslal\n01APR2025 email jestli zájem", + "Společnost na CDA": "Mediendo", + "PI Last Name": "Suchanek", + "PI First Name": "Stepan", + "PI Email Address": "stepan.suchanek@mediendo.cz", + "PI Phone Number": "+420 273 139 861", + "PI Full Address": "Thámova 183/13,,,Prague,", + "Primary Institution Name": "MEDIENDO s.r.o.", + "Site Address": "Thámova 183/13", + "Site City": "Prague", + "Site Zip/Postal Code": "186 00", + "St # required subj": "8", + "St # screened": "1", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "1", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2018-01-29 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Jungwirthova" + }, + "excel": { + "Protocol ID": "CNTO1275CRD3005", + "Strategic Priority": "Not Applicable", + "Pr Status CTMS": "Closed", + "Pr-Cn Status": "Closed", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-07-03 00:00:00", + "HA Init Appr Act": "2018-05-03 00:00:00", + "Cn # expected subj": "20", + "Cn # screened": "28", + "Cn # enrolled": "24", + "Cn # completed": "19", + "Cn # screen fail": "4", + "Cn # early term": "5", + "Cn # disc treatm": "13", + "Pr-St Status": "Closed", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama - low performance 1x", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_avdLbAcIjJpXowp_b11cOvqU1TI0p3U_CGC_c4R7v1tpBcuwRwg&_g_=g", + "SM": "Ivetka", + "SM poznámky": "Dr. Junqwirtová telefonicky slíbila 5.5. vyplnit SIPIQ asap, zájem má velký, poté CDA a předběžně stanoven již termín SQV. Opet upomenuta 7.5.25", + "Termín SQV a TYP (onsite či remote, respektive remote)": "20. 5. v 10:00 on-site", + "SIPIQ zajímavosti": "nemá inkubátor, igra, rtg hrudníku", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 3 (3:0) / 2 (2:0)", + "Počet pacientů SQV": "2 na UC a 2 na CD", + "Recommended Not recommended for selection argumenty podle reportu": "Hlavne naivni pacienty. Nemaji extra velkou zkusenost se studiemi, posledni pred COVIDEM, SI jeji syn - licenci na endoskopii. Jen 1 famaceut. Reseni - najit jinou lekarnu s 2 farmaceuty. Nemaji zadne kalibrace, validace, ochotni si nakoupit pristroje. The study team has experience with a few clinical trials, the site has space for conducting the study, hopefully\nsufficient equipment (instead of Stadiometer for measuring height, Incubator for -TBC test) but without valid\ncertificates-site is willing to buy new ones or order to safety BTK check in order to met study equipment additional comments: During SQV was present other JJ SM-Agnessa Ruz Kajtarova.\nDuring SQV was also present SC-Milan Hanuska and SI-Jiri Jungwirt.\nThe site interested in performing IUS sub-study; both PI and SI are performing endoscopy. The site does not\nhave adolescent patients for ulcerative colitis study; the site addresses only for adult patients with\ngastrointestinal diseases.\nThe site prefers patient travel reimbursement via direct payment on bank account.\nPI has not CV on EUCTR template.\nSC was informed that all validation/calibration certificates for study equipment needs to be available before SIV.\nrequirements.\nThe following items for consideration detected:\n • Only one pharmacist -Dr. Mariana Fary is present in pharmacy-so there no back pharmacist.\n • Only one SC -Milan Hanuska is present at the site and also only in pharmacist-so there no back for SC and\npharmacist.\n • Missing calibration validation certificates related to thermometer for fridge, freezer and for min/max\nthermometer for IP temperature monitoring, for body thermometer, scale, for Sphygmamometer for measuring\nBP, centrifuge etc.\n • Site has not Stadiometer for measuring height, Incubator for -TB test\n • Patient population limited to patients with intolerance or inadequate response to ADT-naive only\n • The other point of view for consideration is licensure: SI Dr. Jungwirt is qualified by education and have 4\nyears experience with surgery certification and endoscopy specialization.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o oboje ale není biol centrum, jen 5 CD ročně a 20 UC rocně. jen naivni pacienti takye nic", + "FINAL DECISION PRO ICONIC IBD": "Spise Ne - kvuli omezenym zkusenostem se studiemi i SI, ktery by fakticky provadel", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "22APR2025 SIPIQ odeslán", + "Illumninator status UC": "22APR2025 SIPIQ odeslán", + "Comment": "29APR2025 připomínka, aby vyplnila SIPIQ\n01APR2025 email jestli zájem 9APR2025 Svetlana se zepta 10APR má zájem, volat na 603 195 640", + "Společnost na CDA": "EGK s.r.o. - Sanatorium sv. Anny", + "PI Last Name": "Jungwirthova", + "PI First Name": "Anna", + "PI Email Address": "a.jungwirthova@egk.cz", + "PI Phone Number": "+42 060 319 5640", + "PI Full Address": "Lucni 7a,,,Prague,", + "Primary Institution Name": "EGK s.r.o. - Sanatorium sv. Anny", + "Site Address": "Lucni 7a", + "Site City": "Prague", + "Site Zip/Postal Code": "13000", + "St # required subj": "3", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2018-11-30 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Stehlik" + }, + "excel": { + "Protocol ID": "64304500CRD2001", + "Strategic Priority": "2 - Core", + "Pr Status CTMS": "Completed", + "Pr-Cn Status": "Not Selected", + "Cn # sites": "0", + "Pr-Cn # Sites Open": "0", + "Cn # screened": "0", + "Cn # enrolled": "0", + "Cn # completed": "0", + "Cn # screen fail": "0", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Not Selected", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Panorama CD, Zuzka high performance 1x and low performance 1x", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano - máme dr Tichého", + "LTM": "Helena", + "PI Last Name": "Stehlik", + "PI First Name": "Jiri", + "PI Email Address": "stehlikJ@mnul.cz - nefunguje; jiri.stehlik@kzcr.eu", + "PI Phone Number": "+42 47 711 2430", + "PI Full Address": "Socialni pece 3316/12A,,,Usti nad Labem,Usti nad Labem", + "Primary Institution Name": "Masarykova nemocnice v Usti nad Labem", + "Primary Institution Phone Number": "+00420477111111000 000 000 000 000", + "Site Address": "Socialni pece 3316/12A", + "Site City": "Usti nad Labem", + "Site Zip/Postal Code": "401 13", + "St # required subj": "0", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Papik" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3001", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-09-25 00:00:00", + "HA Init Appr Act": "2018-06-20 00:00:00", + "Cn # expected subj": "13", + "Cn # screened": "24", + "Cn # enrolled": "16", + "Cn # completed": "10", + "Cn # screen fail": "8", + "Cn # early term": "1", + "Cn # disc treatm": "8", + "Pr-St Status": "Not Selected", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama CD", + "EMA": "CD 1x po náboru ale v Nachodě", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "LTM": "Helena", + "Illuminator status CD": "09MAY2025 nastaveno nemá zájem", + "Illumninator status UC": "09MAY2025 nastaveno nemá zájem", + "PI Last Name": "Papik", + "PI First Name": "Zdenek", + "PI Email Address": "papik.zdenek@nemocnicenachod.cz", + "PI Phone Number": "+420 491 601 577", + "PI Full Address": "Na Obinách 1809,,Gastroenterology and Hepatology,Hradec Králové,", + "Primary Institution Name": "Zdenk Papik", + "Site Address": "Na Obinách 1809 Gastroenterology and Hepatology", + "Site Address Line 3": "Gastroenterology and Hepatology", + "Site City": "Hradec Králové", + "Site Zip/Postal Code": "547 01", + "St # required subj": "5", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Voska" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3001", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-09-25 00:00:00", + "HA Init Appr Act": "2018-06-20 00:00:00", + "Cn # expected subj": "13", + "Cn # screened": "24", + "Cn # enrolled": "16", + "Cn # completed": "10", + "Cn # screen fail": "8", + "Cn # early term": "1", + "Cn # disc treatm": "8", + "Pr-St Status": "Execution", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama CD - good performance 1x, Panorama UC pod Serclovou v Budinova 2 ktera asi odesla", + "EMA": "CD 1 po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "LTM": "Helena", + "PI Last Name": "Voska", + "PI First Name": "Michal", + "PI Email Address": "voska@nemocnice-horovice.cz; michal.voska@uvn.cz; michal.voska@gmail.com", + "PI Phone Number": "+420 77 320 0360", + "PI Full Address": "K Nemocnici 1106,Chirurgicke oddeleni,,Horovice,", + "Primary Institution Name": "NH Hospital, a.s.", + "Site Address": "K Nemocnici 1106 Chirurgicke oddeleni", + "Site Address Line 2": "Chirurgicke oddeleni", + "Site City": "Horovice", + "Site Zip/Postal Code": "268 31", + "St # required subj": "3", + "St # screened": "6", + "St # enrolled": "3", + "St # completed": "2", + "St # screen fail": "3", + "St # early term": "0", + "St # disc treatm": "1", + "St Qualified Act": "2017-12-29 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Drastich" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3001", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-09-25 00:00:00", + "HA Init Appr Act": "2018-06-20 00:00:00", + "Cn # expected subj": "13", + "Cn # screened": "24", + "Cn # enrolled": "16", + "Cn # completed": "10", + "Cn # screen fail": "8", + "Cn # early term": "1", + "Cn # disc treatm": "8", + "Pr-St Status": "Cancelled", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama CD - low performance 1x, Panorama UC s Benesem 0 z 15", + "EMA": "UC 3x nábor, CD 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano s prof. Huclem", + "LTM": "Helena - namisto Drasticha prof. Hucl", + "Comment": "Preposlal na Dr. Drasticha", + "PI Last Name": "Drastich", + "PI First Name": "Pavel", + "PI Email Address": "drastich@hotmail.com", + "PI Phone Number": "+420 26 136 2696", + "PI Full Address": "Videnska 1958/9,,Klinika hepatogastrologie,Praha,", + "Primary Institution Name": "IKEM", + "Site Address": "Videnska 1958/9 Klinika hepatogastrologie", + "Site Address Line 3": "Klinika hepatogastrologie", + "Site City": "Praha", + "Site Zip/Postal Code": "140 21", + "St # required subj": "3", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2022-03-15 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Zadorova" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3001", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-09-25 00:00:00", + "HA Init Appr Act": "2018-06-20 00:00:00", + "Cn # expected subj": "13", + "Cn # screened": "24", + "Cn # enrolled": "16", + "Cn # completed": "10", + "Cn # screen fail": "8", + "Cn # early term": "1", + "Cn # disc treatm": "8", + "Pr-St Status": "Closed", + "Repeat PI": "Yes", + "Světlana, Zuzka, Panorama": "Panorama - good performance 1x, low performance1x", + "EMA": "UC 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s dr Matoušem - máme dr Šerclovou", + "LTM": "Helena", + "PI Last Name": "Zadorova", + "PI First Name": "Zdena", + "PI Email Address": "zadorova@fnkv.cz; zadorova@endogastro.cz", + "PI Phone Number": "+42 026 716 2719", + "PI Full Address": "Srobarova 50,II. Interni klinika,,Praha 10,", + "Primary Institution Name": "Fakultni nemocnice Kralovske Vinohrady", + "Primary Institution Phone Number": "+420267163531", + "Site Address": "Srobarova 50 II. Interni klinika", + "Site Address Line 2": "II. Interni klinika", + "Site City": "Praha 10", + "Site Zip/Postal Code": "100 34", + "St # required subj": "1", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2017-12-22 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Svoboda" + }, + "excel": { + "Protocol ID": "CNTO1959CRD3001", + "Strategic Priority": "5 - Priority File", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Execution", + "Cn # Sites Exp": "6", + "Cn # sites": "6", + "Pr-Cn # Sites Open": "6", + "Cn F Site Open Exp": "2018-09-25 00:00:00", + "HA Init Appr Act": "2018-06-20 00:00:00", + "Cn # expected subj": "13", + "Cn # screened": "24", + "Cn # enrolled": "16", + "Cn # completed": "10", + "Cn # screen fail": "8", + "Cn # early term": "1", + "Cn # disc treatm": "8", + "Pr-St Status": "Cancelled", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama - low performancec 1x", + "EMA": "UC 3x nábor a 2x po náboru, CD 1x v náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_BvQDtsmZY7NyQei_b11cOvqU1TI0p3U_CGC_t1XM5HEI4J6HpEz&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Dan", + "SM poznámky": "5.5. kontaktovano centrum, \nPI na dovolene do konce tydne, zavolat v Po 12.5. okolo 7:30, 12.5.7:30 centrum kontaktovano, PI opakovaně nezveda v prubehu dne, volat na cislo s poslednimi 4cislim 4061, 13.5 neni pritomen, volat 14.5 od 7:00 dal", + "Termín SQV a TYP (onsite či remote, respektive remote)": "Remote 23.5 v 12:00", + "SIPIQ zajímavosti": "nemá zkušenost s c-ssrs", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. 3 (1:2) / 3 (1:2)", + "Počet pacientů SQV": "2 rand. UC a 2-3 rand. CD", + "Recommended Not recommended for selection argumenty podle reportu": "3 studie běžící, smlouva až půl roku (ale v AML nejrychlejsi mezi fakultkama), vedeli, znali, nabirali by tezsi pacienty, co selhali na biol lecbe, nechteji podstudii.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o oboje 50:130 CD a 40:110 UC.", + "FINAL DECISION PRO ICONIC IBD": "ANO 9/10 ale fakultka, tezsi pacienti", + "Adolescenti": "Ne", + "Stav CDA": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "17APR2025 SIPIQ odeslán", + "Illumninator status UC": "17APR2025 SIPIQ odeslán", + "Comment": "01APR2025 má zájem, poslat SIPIQ\n01APR2025 email jestli zájem", + "Společnost na CDA": "Fakultní nemocnice Ostrava", + "PI Last Name": "Svoboda", + "PI First Name": "Pavel", + "PI Email Address": "pavel.svoboda@fno.cz", + "PI Phone Number": "+420 59 737 4191", + "PI Full Address": "17. listopadu 1790,Interni klinika,,Ostrava - Poruba,město", + "Primary Institution Name": "Fakultni Nemocnice Ostrava", + "Primary Institution Phone Number": "420597372240", + "Site Address": "17. listopadu 1790 Interni klinika", + "Site Address Line 2": "Interni klinika", + "Site City": "Ostrava - Poruba", + "Site Zip/Postal Code": "70852", + "St # required subj": "8", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0", + "St Qualified Act": "2017-12-29 00:00:00" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Bronsky" + }, + "excel": { + "Protocol ID": "CNTO1959PBCRD3007", + "Strategic Priority": "2 - Core", + "Pr Status CTMS": "Execution", + "Pr-Cn Status": "Cancelled", + "Cn # Sites Exp": "1", + "Cn # sites": "0", + "Pr-Cn # Sites Open": "0", + "Cn # expected subj": "4", + "Cn # screened": "0", + "Cn # enrolled": "0", + "Cn # completed": "0", + "Cn # screen fail": "0", + "Cn # early term": "0", + "Cn # disc treatm": "0", + "Pr-St Status": "Cancelled", + "Repeat PI": "No", + "Světlana, Zuzka, Panorama": "Panorama uC a CD zrušeny. Druhý lékař Keil a Hradsky.", + "EMA": "CD 1x v naboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano s doc Hradským", + "Adolescenti": "Ano", + "LTM": "Vlado", + "Comment": "04APR2025 nemá zájem\n01APR2025 email jestli zájem 9APR2025 má zájem o inhibitor IL-23. Znovu oslovit!!!!", + "PI Last Name": "Bronsky", + "PI First Name": "Jiri", + "PI Email Address": "jiri.bronsky@gmail.com", + "PI Phone Number": "+420 22 443 1111", + "PI Full Address": "Interni klinika V Uvalu 84,,Dept of Kardiologicka klinika 2.LF UK a FN Motol,Praha 5,", + "Primary Institution Name": "Fakultni nemocnice v Motole", + "Primary Institution Phone Number": "+4202244340010000 000 000 000", + "Site Address": "Interni klinika V Uvalu 84 Dept of Kardiologicka klinika 2.LF UK a FN Motol", + "Site Address Line 3": "Dept of Kardiologicka klinika 2.LF UK a FN Motol", + "Site City": "Praha 5", + "Site Zip/Postal Code": "150 06", + "St # screened": "0", + "St # enrolled": "0", + "St # completed": "0", + "St # screen fail": "0", + "St # early term": "0", + "St # disc treatm": "0" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Horny" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Zuzka - no new studies, performance, Panorama UC dobrý nábor 2 ze 2", + "EMA": "UC 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Illuminator status CD": "09MAY2025 nastaveno nemá zájem", + "Illumninator status UC": "NA", + "Comment": "VB: oslovilas ho Helčo? Ano opakovane emailem, na obe adresy, 18.4. - zatim bez odpovedi", + "PI Last Name": "Horny", + "PI First Name": "Ivo", + "PI Email Address": "interna@nemst.cz; ivo.horny@post.cz", + "PI Phone Number": "420 383 314 240", + "Primary Institution Name": "Hospital Strakonice", + "Site Address": "Radomyslska 336, Strakonice I," + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hrdlicka" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Zuzka - drop - currently site not interested in the studies, focused on commercial treatment, development, Panorama UC ok nábor 1 ye 2 pacientu, doporuceni vladky", + "EMA": "CD 1 po naboru u dr Stovicka jan.stovicek@restrial.com a +420730893972", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano dr Hrdlička", + "LTM": "Vlado", + "Illuminator status CD": "není ani v Iluminatoru, žádná akce tam", + "Illumninator status UC": "není ani v Iluminatoru, žádná akce tam", + "Comment": "01APR2025 Restrial je saturovaný nemají zájem\n01APR2025 email jestli zájem", + "PI Last Name": "Hrdlicka", + "PI First Name": "Ludek", + "PI Email Address": "gastroendoP8@restrial.com", + "Primary Institution Name": "ResTrial GastroEndo, s.r.o., Praha" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Machytka" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Zuzka - development, Panorama UC a splněno", + "J&J studie": "Quasar", + "EMA": "UC 1x nábor pending a 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Illuminator status CD": "09MAY2025 nastaveno nemá zájem", + "Illumninator status UC": "NA", + "Comment": "VB: oslovilas ho Helčo? Ano opakovane emailem, na obe adresy, 18.4. - zatim bez odpovedi", + "PI Last Name": "Machytka", + "PI First Name": "Tomas", + "PI Email Address": "machytka@endohope.cz", + "PI Phone Number": "420 620 603 388", + "Primary Institution Name": "Asclepiades, Havirov" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Siroky" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Zuzka - good performance, Panorama UC high performance", + "J&J studie": "Astro (7), Anthem, Quasar", + "EMA": "UC1x nábor a 3x po náboru, CD1x ukončen", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale dr Široký Pardubice!!!", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "Comment": "01APR2025 bohužel nemá zájem, má nasmlouvané další studie a nemá prostor pro další\n01APR2025 email jestli zájem", + "PI Last Name": "Siroky", + "PI First Name": "Milan", + "PI Email Address": "m.sirokydr@gmail.com", + "Primary Institution Name": "Gastroenterologie, s.r.o., HK" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Smajstrla" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Zuzka - development, Panorama UC 0 ze 2 pacientu 2x", + "J&J studie": "Astro (0), Quasar", + "EMA": "UC 2x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "Comment": "01APR2025 nemájí dost pacientů, referalové neposílají, nechce, podobně jako Anthem\n01APR2025 email jestli zájem", + "PI Last Name": "Smajstrla", + "PI First Name": "Vit", + "PI Email Address": "bormed1@volny.cz, vit.smajstrla@bormed.cz", + "PI Phone Number": "420 733 374 388", + "Primary Institution Name": "ATROSCAN, Ostrava" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Komarek" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Panorama UC 2 z 5", + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano přes Restrial s dr Hrdličkou", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Comment": "01APR2025 email jestli zájem 9APR2025 odmítnutí přes Restrial dr Hrdličku, nemají kapacitu na další studie", + "PI Last Name": "Komarek", + "PI First Name": "Viktor", + "PI Email Address": "viktor.komarek@volny.cz", + "Primary Institution Name": "Medicon Praha" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Janu" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "EMA": "UC 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "N/A", + "LTM": "Vlado", + "Comment": "Janů je a vždy byl psychiatr :-)", + "PI Last Name": "Janu", + "PI First Name": "Lubos", + "PI Email Address": "lubos.janu@seznam.cz", + "PI Phone Number": "00420 777 242 101", + "Primary Institution Name": "nebo dr Kozeluhová ve FN Plzen (Panorama UC) a Hejda ve FN Plzen, kter7 v Panorama UC 0 ze 34 pacientu", + "Site City": "Plzen" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Koželuhová" + }, + "excel": { + "HA Init Appr Act": "fa", + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "LTM": "Vlado", + "Comment": "01APR2025 nemají personál, nemohou\n01APR2025 email jestli zájem", + "PI Last Name": "Koželuhová", + "PI First Name": "Jana", + "PI Email Address": "kozeluhova@fnplzen.cz", + "Site City": "Znojmo" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hejda" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale Bouchner pokud Edvarda beneše, Plzen (Kozehulová alej Svobody)", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_Yug1jK54C2nI4dh_b11cOvqU1TI0p3U_CGC_XsqnmDJIYEecVNZ&_g_=g", + "SM": "Lenka", + "SM poznámky": "5.5.- 377 403 322 (spojovatelka) , Dr.Hejda (Lochotín) 377103322 - obsazeno (nebo 3234)\n6.5.- dopoledne opakovaně voláno na linka 3322, buď nebere nebo je obsazeno", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "LTM": "Vlado", + "Illuminator status CD": "25APR2025 SIPIQ odeslán", + "Illumninator status UC": "25APR2025 SIPIQ odeslán", + "Comment": "29APR2025 připomínka, ať vyplní feasibility dotazník\n25APR2025 má zájem o feasibilitu\n01APR2025 email jestli zájem", + "Společnost na CDA": "Fakultní nemocnice Plzeň", + "PI Last Name": "Hejda", + "PI First Name": "Václav", + "PI Email Address": "hejdav@fnplzen.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vitek" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "ano ale s dr Pospíšilovou", + "Adolescenti": "Ne", + "LTM": "Vlado", + "Comment": "04APR2025 nemá zájem\n01APR2025 email jestli zájem", + "PI Last Name": "Vitek", + "PI First Name": "Petr", + "PI Email Address": "vitekp@nemfm.cz", + "Site City": "Frydek Mistek" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Krížová" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "ano ale dr Mareš", + "LTM": "Vlado", + "Comment": "25APR2025 opakování emailu\n22APR2025 opakování emailu\n01APR2025 email jestli zájem", + "Společnost na CDA": "Homolka", + "PI Last Name": "Krížová", + "PI First Name": "Viera", + "PI Email Address": "viera.krizova@homolka.cz", + "Site City": "Homolka" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Tomsová" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Vlado", + "Comment": "25APR2025 opakování emailu\n22APR2025 opakování emailu\n01APR2025 email jestli zájem", + "Společnost na CDA": "Nemocnice Bladá Boleslav", + "PI Last Name": "Tomsová", + "PI First Name": "Eva", + "PI Email Address": "eva.tomsova@onmb.cz", + "Site City": "Mlada Boleslav" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Nedbalová" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ne", + "Stav CDA": "NA", + "LTM": "Vlado", + "Illuminator status CD": "není ani v Iluminatoru, žádná akce tam", + "Illumninator status UC": "není ani v Iluminatoru, žádná akce tam", + "Comment": "09APR2025 nemá zájem (odpověděla)\n01APR2025 email jestli zájem 9APR2025 Svetlana se zepta 2MAy, je dulezita pro JnJ", + "Společnost na CDA": "Nemocnice LIberec", + "PI Last Name": "Nedbalová", + "PI First Name": "Lenka", + "PI Email Address": "lenka.nedbalova@nemlib.cz", + "Site City": "Liberec" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Matuska" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Vlado", + "Comment": "Matuška je a vždy byl angiolog", + "PI Last Name": "Matuska", + "PI First Name": "Jiri", + "Site City": "Hodnonín" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hadraba" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne Teplice s Hadrabou, Ano Ústí se Stehlíkem", + "LTM": "Vlado", + "Comment": "25APR2025 oslovil jsem MUDr. Michal Tichý, který měl zájem, tedy toto centrum dávám červeně\n01APR2025 email jestli zájem", + "Společnost na CDA": "Nemocnice Ústí nad Labem", + "PI Last Name": "Hadraba", + "PI First Name": "Ladislav", + "PI Email Address": "ladislav.hadraba@kzcr.eu", + "Site City": "Teplice" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Gabalec" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL UC", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Vlado", + "Comment": "25APR2025 nemá zájem, nemá kapacitu\n01APR2025 email jestli zájem", + "Společnost na CDA": "internista - gastroenterolog", + "PI Last Name": "Gabalec", + "PI First Name": "Libor", + "PI Email Address": "libor.gabalec@seznam.cz", + "Site City": "Ústí nad Orlicí" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Machkova" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL CD", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Je diabetolog", + "PI Last Name": "Machkova", + "PI First Name": "Martina", + "Site City": "Praha" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hala" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL CD", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Uz nepracuje v CCBR Padubice", + "PI Last Name": "Hala", + "PI First Name": "Tomas", + "Primary Institution Name": "CCR", + "Site City": "Pardubice" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Gregar" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Panorama UC a nenabral", + "Illuminator when no site in the city or interesting": "ILL CD", + "EMA": "UC 1x po náboru, CD 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_2ak5fxi84tGaQgP_b11cOvqU1TI0p3U_CGC_iXWGhg4Mn5YDBCv&_g_=g", + "SM": "Lenka", + "SM poznámky": "5.5. 12:45- nikdo nezvedá\n13:0- Dr.Gregar má dnes dovolenou, bude k dispozici zítra 6.5. cca 11-12h (ráno má kolonoskopii a ambulance)- linka 588 445 3026.5.- ve FNO je dr.Gregar slíbil, že se koukne a budu mu volat zítra 7.5. na 583 211 542- soukromá ordinace Gregar s.r.o. (https://www.mudr-gregar.cz/), adresa Čajkovského 14, 779 00 Olomouc 9- PI je tam st, čt, pá\n7.5. zanechán vzkaz, neozval se zpět\n9.5. nikdo nezvedá ne recepci", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ne", + "Stav CDA": "20.4. vyžádáno Zuzka , 2.5 zaslána upomínka s návodem, aby CDA podepsal", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "VB: odsouhlasil mi to včera po telefonu (08APR2025)", + "Společnost na CDA": "někde kolem Olomouce", + "PI Last Name": "Gregar", + "PI First Name": "Jan", + "PI Email Address": "jan.gregar@fnol.cz; info@mudr-gregar.cz", + "PI Phone Number": "585 428 910, 588445302", + "PI Full Address": "adresa Čajkovského 14, 779 00 Olomouc 9", + "Primary Institution Name": "MUDr. GREGAR s.r.o.", + "Site Address": "Cajkovskeho 67/14, Nova Ulice, Czechia", + "Site City": "Olomouc" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Woznica" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL CD", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_hIH02NdzdfgQlK7_b11cOvqU1TI0p3U_CGC_6iI0r72PUfNrhii&_g_=g", + "SM": "Ivetka", + "SM poznámky": "Dr. Woznica kontaktován telefonicky 6.5. vyplnit SIPIQ", + "Termín SQV a TYP (onsite či remote, respektive remote)": "Nemá zájem dle SIPIQ", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ne", + "Stav CDA": "CDA fully signed - PI varianta", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "Ano chteji se na studii podivat, ale obavaji se slozitosti studie. Pokud bude hodne pristupu do systemu, hodne koloskopii do studie nechteji.", + "Společnost na CDA": "Most", + "PI Last Name": "Woznica", + "PI First Name": "Vlastimil", + "PI Email Address": "gastroambulanceVW@seznam.cz", + "PI Phone Number": "42041763324", + "Primary Institution Name": "Vítěslava Nezvala 2678/37, 43401 Most 1", + "Site City": "Most" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Závada" + }, + "excel": { + "Illuminator when no site in the city or interesting": "ILL CD", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Illuminator status CD": "09MAY2025 nastaveno nemá zájem", + "Illumninator status UC": "09MAY2025 nastaveno nemá zájem", + "PI Last Name": "Závada", + "PI First Name": "Filip", + "PI Email Address": "filip.zavada@onp.cz", + "Site City": "Příbram" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Schwarz" + }, + "excel": { + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ano", + "LTM": "Helena", + "Comment": "Nemá aktuálně zájem", + "PI Last Name": "Schwarz", + "PI First Name": "Jan", + "PI Email Address": "schwarzj@fnplzen.cz", + "PI Phone Number": "420 377 104 679" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Študent" + }, + "excel": { + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "PI Last Name": "Študent", + "PI First Name": "Vladimír", + "PI Email Address": "studentnempt@seznam.cz", + "PI Phone Number": "420 775 063 924", + "Primary Institution Name": "Nemocnice Prachatice a.s.", + "Site Address": "Nebahovska 1015, Prachatice, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vyhnálek" + }, + "excel": { + "EMA": "UC 1x po náboru, CD 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Už je viz výše řádek 15, Ano s dr Leksou", + "LTM": "Helena", + "Comment": "Pardubice takže jako Kubát. Vyhnálek na starosti biologika.", + "PI Last Name": "Vyhnálek", + "PI First Name": "Petr", + "PI Email Address": "petr.vyhnalek@nempk.cz", + "PI Phone Number": "+420 466 014 201", + "Primary Institution Name": "Nemocnice Pardubickeho kraje a.s.", + "Site Address": "Kyjevska 44 Pardubicky, Pardubice, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Pumprla" + }, + "excel": { + "EMA": "UC 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_RDG7qO4m0cuSyBo_b11cOvqU1TI0p3U_CGC_OK2auPx5ULHTDRY&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Vlaďka", + "SM poznámky": "14.05. jsem volala, mel SIV. Zkusim znovu zitra", + "Termín SQV a TYP (onsite či remote, respektive remote)": "21.5. v 14:00 on-site", + "SIPIQ zajímavosti": "Nemá chest radiograph", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 5 (5:0) / 4 (4:0)", + "Počet pacientů SQV": "UC (5 screen / 4 random)\nCD (4 screen / 3 random)", + "Recommended Not recommended for selection argumenty podle reportu": "PI is interested in both ICONIC-IBD studies (UC and CD) and confirms that the site has sufficient time to conduct the study. The study team has experience with clinical trials, the site has sufficient equipment and space for conducting the study. PI is experienced in clinical trials, has conducted around 37 studies. All other team members are also qualified by experience and appropriate certifications. Collaboration with several SIs in the area facilitates a large database of prospective study participants. Additional comment: The site is not interested in participating in the IUS sub-study, since intestinal ultrasounds are not regularly\nperformed at the site. \nThe site does not have an adolescent patient population to include in the UC study.\nThe site prefers cash payments for patient reimbursement, invoices will be generated after the payment. Zkusene centrum, PI vse zna, 8 SC na centrum, ve studii 3 SC, PI gastroenterolog není ale SI jsou a jezdí na kolonoskopie k 5 jiným SI (az do ZLina) - oni doporucuji pacienty, vse u Pumrply na centru, ale kolonoskopie jinde a SC jezdí s laptopem. vse maji, rtg na poliklinice, lekarna je u nej.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o oboje 10:90 UC a 5:35 CD ročně (ale ty hlavne nerefuje). Spise naivni pacienti, tkaze otazka, jak u dalsich studiich.", + "FINAL DECISION PRO ICONIC IBD": "ANO (8 z 10)", + "Adolescenti": "Ne", + "Stav CDA": "CDA fully signed - Instution PREVENTAMED", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "Ano, chtějí do feasky a podívat se na design", + "Společnost na CDA": "PreventaMed s.r.o. (Olomouc)", + "PI Last Name": "Pumprla", + "PI First Name": "Jiří", + "PI Email Address": "research@vilazdravi.cz", + "PI Phone Number": "+420 602 708 148", + "Primary Institution Name": "Privatni gastroenterologicka ambulance s.r.o., MUDr. Zdenek Vlk", + "Site Address": "Winklerova 23, Prostejov, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Matejovska Kubesova" + }, + "excel": { + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ozval se Jan Hudec z Efertus - doporucil oslovit 2 pracoviste Nemocnice Břeclav, prim. MUDr. Ryšavý vladan.rysavy@gmail.com - ten nema kapacitu a Vsetín, MUDr. Vaculín - endovsetin@seznam.cz a Mudr. Matej Falc https://www.gastrohepacentrum.cz/", + "PI Last Name": "Matejovska Kubesova", + "PI First Name": "Hana prof", + "PI Email Address": "hana.matejovska@efertusclinical.com", + "PI Phone Number": "420 606 417 244", + "Primary Institution Name": "EFERTUS clinical s.r.o.", + "Site Address": "Smetanova 902, Vsetin, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Brtníkova" + }, + "excel": { + "EMA": "UC 3x v náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ne, mají konkurenční studie", + "PI Last Name": "Brtníkova", + "PI First Name": "Sylva", + "PI Email Address": "sylva.brtnikova@ccrostrava.com", + "PI Phone Number": "420 734 522 986", + "Primary Institution Name": "CCR Ostrava" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Košková" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Panorama UC Not selected", + "EMA": "UC 1x nábor, CD 1x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "PI Last Name": "Košková", + "PI First Name": "Radka", + "PI Email Address": "mudr.koskova@seznam.cz", + "PI Phone Number": "420 602 110 107", + "Primary Institution Name": "EndoArt s.r.o.", + "Site Address": "Hladnovska 1255/23, Slezska Ostrava, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Maceček" + }, + "excel": { + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ne, nema zajem. Maji 3 konkurencni studie", + "PI Last Name": "Maceček", + "PI First Name": "Jaroslav", + "PI Email Address": "jaroslav.macecek@smn.agel.cz", + "PI Phone Number": "420 724 924 653", + "Primary Institution Name": "AGE Centrum s.r.o.", + "Site Address": "Na Sibeniku 914/1 Nova Ulice, Olomouc, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Martínek" + }, + "excel": { + "EMA": "UC1x po nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano ale s prof Kianičkou", + "LTM": "Helena", + "Comment": "Ne, v jednání s jinými zadavateli, stejná cílová skupina - ještě potvrdí barbora.kudrnovska@fnusa.cz - potvrdila, ze zajem nemaji", + "PI Last Name": "Martínek", + "PI First Name": "Jan prof", + "PI Email Address": "jan.martinek@fnusa.cz", + "PI Phone Number": "+420 543 182 253", + "Primary Institution Name": "FNUSA Taky 1x po náboru u dr Kláry Slapalové UC a CD 3 ukonceny" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Čechová" + }, + "excel": { + "EMA": "UC 5x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_AwAvCXtrVvzP7Dj_b11cOvqU1TI0p3U_CGC_fAosimA1L3PjsLo&_g_=g", + "SM": "???", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "Ne", + "Stav CDA": "3.5. vyžádáno Zuzka", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "MOžná ano, potřebují vědět o co přesně jde", + "Společnost na CDA": "Urazova nem. Brno", + "PI Last Name": "Čechová", + "PI First Name": "Ivana", + "PI Email Address": "ivanacechova@ccrbrno.cz; i.cechova@unbr.cz", + "PI Phone Number": "+420 734 574 598", + "Primary Institution Name": "Urazova nemocnice Brno" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hradský" + }, + "excel": { + "Světlana, Zuzka, Panorama": "Panorama UC Keil 0 ze 34 a Bronsky kde zruseno", + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ano", + "LTM": "Helena", + "Comment": "Ne, nemají kapacitu na další studii", + "PI Last Name": "Hradský", + "PI First Name": "Ondřej", + "PI Email Address": "ondrej.hradsky@lfmotol.cuni.cz", + "PI Phone Number": "420 224 432 098", + "Primary Institution Name": "Fakultni Nemocnice V Motole", + "Site Address": "V Uvalu 84/1, Prague, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Psottová" + }, + "excel": { + "EMA": "UC1x nábor a 2x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ozval se Jan Hudec z Efertus - doporucil oslovit 2 pracoviste Nemocnice Břeclav, prim. MUDr. Ryšavý vladan.rysavy@gmail.com - ten nema kapacitu a Vsetín, MUDr. Vaculín - endovsetin@seznam.cz a Mudr. Matej Falc https://www.gastrohepacentrum.cz/", + "PI Last Name": "Psottová", + "PI First Name": "Jana", + "PI Email Address": "jana.psottova@gmail.com", + "PI Phone Number": "420 274 771 534", + "Primary Institution Name": "EFERTUS clinical s.r.o.", + "Site Address": "Stroupeznickeho 529/6, Prague, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Mudr" + }, + "excel": { + "EMA": "UC 1x nabor pending", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_VgT6PLnFqrDvz2g_b11cOvqU1TI0p3U_CGC_VtwMtuf67lrXila&_g_=g", + "SM": "Lenka", + "SM poznámky": "5.5.- Dr. Mudr -linka 397, 257 197 306 Dr. Pěkný- studijní koordinátor, temín selekce domluvit s ním- zatím nedostupný. Dnes má ambulanci do 16h - ozve se sám dnes a nebo zítra, úterky má volnější. Dr.Pekny volala. Slíbil, že PI vyplní feasibilitu a domluvili jsme osoobní termín selekce", + "Termín SQV a TYP (onsite či remote, respektive remote)": "13.5. v 12:00 on-site", + "SIPIQ zajímavosti": "Nemá mrazák -70, jinak nic co by vybocovalo", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "7 (3:4) / 7 (3:4)", + "Počet pacientů SQV": "potvrdil data ze SipIQ cca 4-5 randomizovaných pacientů CD i UC", + "Recommended Not recommended for selection argumenty podle reportu": "SM recommends the site.\nThe SM recommends the site for participation based on potential subject population, correct staffing, space for\nconducting the study, qualification and previous experience in clinical trials (including UC a CD) and interest in\nthe proposed trial. Additional comments:SI/SC will clarify whether the site will participate in the IUS sub-study - check with the radiologist for availability.\nSI/SC confirmed that most patients will be able to use BYOD. He would like to receive a few handhelds on the\nsite, for those who don't have suitable phones. Centrum zkušené, PI vytížený, ale komunikuje Potřebují inkubátor.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o oboje. v UC i CD udává 500 ale pak v obojím 200:150. 500 pacientu ma. Neberou studií více, ale další studie se muze zeptat.", + "FINAL DECISION PRO ICONIC IBD": "ANO", + "Adolescenti": "ne", + "Stav CDA": "18.4. vyžádáno Zuzka , 2.5. upomínka podepsat CDA zasláno PI", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "Ano, mají zájem o feasku", + "Společnost na CDA": "Boromejky, Praha", + "PI Last Name": "Mudr", + "PI First Name": "Robert", + "PI Email Address": "robert.mudr@nmskb.cz, kontaktovat tez SI petr.pekny@nmskb.cz", + "PI Phone Number": "257 197 305; Dr.Pěkný Petr (SI/SC) 603 399 032", + "Primary Institution Name": "Nemocnice Milosrdnych Sester Sv. Karla Boromejskeho V Praze", + "Site Address": "Vlasska 336/36, Prague, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Král" + }, + "excel": { + "EMA": "UC 1x nábor", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_Url91ryMx67ipE5_b11cOvqU1TI0p3U_CGC_WN42Op2yK6RQk0C&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Iveta", + "SM poznámky": "2.5 a 5.5. jsem několikrát zkoušela na mobil bez odezvy- napsán e-mail stran stanovení termínu selekční návštěvy/PI-je v Sam Diegu/zavolat 12.5.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "19:5. v 11:30 zájem o lék má, ale avizoval, zda je možné eventuelně zrušit participaci v případě výběru centra během srpna? Což je trochu nestandartní", + "SIPIQ zajímavosti": "Potřeboval by pomoct s SC? Ale staff má. Nemá zkušenost s UC ediaries Mayo?, dotazníky, C-SSRS, nemá inkubátor, IGRA,", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol?? 3 (1:2) / NA", + "Počet pacientů SQV": "3 pacienti UC", + "Recommended Not recommended for selection argumenty podle reportu": "Ma zkusenosti 6-12 studiemii. 3-4 pacienti UC. Selhane na biol lecbe z Motola. Nema dostatek personalu. Bude to vedet az v srpnu jestli personalne zvaldne. Hlavne nadseny, ze je PO. All team members are qualified by certificates and experience for this study.\nThe SM recommends the site for participation based on potential subject population, and equipment, previous\nexperience in clinical trials and interest in the proposed trial but only with the condition of enough staff for\nconducting of study which will be known in Aug25 as was confirmed by PI during SQV.\nThe other point of view for consideration is licencure: SI Dr. Svet and SI Dr. Turcanova are qualified by education\nand have 5 years experience without any certification. Additonal comments: The site is not interested in performing IUS sub-study; both PI and SI are performing endoscopy.\n The site does not have adolescent patients for ulcerative colitis study; the site addresses only for adult patients\nwith gastrointestinal diseases.\nThe adolescents (patients under 18 years old) are presenting to the pediatrician for this type of diseases.\nThe site prefers patient travel reimbursement via direct payment on bank account.\nPI has not CV on EUCTR template.\nPI was informed that all validation/calibration certificates for study equipment needs to be\navailable before SIV", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Má zájem jen o UC. udává jen 5 pacientu rocně. Navíc nebiol centrum?? selhane pacienty si referuje z Motola", + "FINAL DECISION PRO ICONIC IBD": "Spise Ne - jelikoz nevi jak to bude mit personalne.", + "Adolescenti": "ne", + "Stav CDA": "13MAY25 VB vyžádal zaslání CDA pro nového PI MUDr. Petr Hrabák\nCDA fully signed - institution varianta(Macásek)", + "LTM": "Helena", + "Illuminator status CD": "approved for feasibility", + "Illumninator status UC": "approved for feasibility", + "Comment": "Spíš ne, ale feasku mame poslat - chce znát inclusion/exclusion", + "Společnost na CDA": "MUDr. Jan Král", + "PI Last Name": "Král", + "PI First Name": "Jan", + "PI Email Address": "medic.kral@centrum.cz", + "PI Phone Number": "420 605 273 008", + "Primary Institution Name": "MEDIC KRAL s.r.o.", + "Site Address": "Lovosicka 440/40, Prague, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Hrabák" + }, + "excel": { + "EMA": "UC 1x po náboru, CD 1x v náboru u dr Hrabáka Petr.Hrabak@vfn.cz a +420224962476", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_GJ0A5K2arjVrMLO_b11cOvqU1TI0p3U_CGC_u2vKcBmZVLT23Rf&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Dan", + "SM poznámky": "12.5. po telefonické domluvě znovu zaslán odkaz na SIPIQ, dnes vyplní, Změna PI na Petr Hrabák", + "Termín SQV a TYP (onsite či remote, respektive remote)": "On-site 29.5. v 16:00", + "SIPIQ zajímavosti": "Není na seznamu biol center, ale asi málo IR pacientů má. Zkrácený SIPIQ.", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol?? 5 (4:1) / 4 (3:1)", + "Počet pacientů SQV": "2 CD + 2 UC pacienty", + "Recommended Not recommended for selection argumenty podle reportu": "Bohate zkusenosti. Primarne naivni pacienti, na Mediconu - endoskopie (nemaji jeste dojednane s Mediconem az po selekci), kompetitivni studie: 2UC + 1CD, vybaveni vse, vendory znaji krome drug dev a safety portalu, 2 SC, SI - Paulen, lekarna dole", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Má zájem o oboje, vyplněno pod Macaskem, zkrácený SIPIQ, počty apcientů nejsou", + "FINAL DECISION PRO ICONIC IBD": "7-8 z 10 Ano", + "Adolescenti": "ne", + "Stav CDA": "CDA fully signed - PI varianta", + "LTM": "Helena", + "Illuminator status CD": "RECOMMENDED FOR SQV (upravený hlavní zkoušející na Petr HRABAK)", + "Illumninator status UC": "RECOMMENDED FOR SQV (upravený hlavní zkoušející na Petr HRABAK)", + "Comment": "Ano, chteji do feasky", + "Společnost na CDA": "CLINOXUS s.r.o.", + "PI Last Name": "Hrabák", + "PI First Name": "Petr", + "PI Email Address": "jmacasek@seznam.cz", + "PI Phone Number": "00420 608 677 551", + "Primary Institution Name": "Clinoxus s.r.o.", + "Site Address": "Antala Staska 1670/80, Prague, Czechia" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Nabil" + }, + "excel": { + "EMA": "CD 1x v náboru- spis dát do Synexu na Karláku", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_ghpIzjlXrPPTAao_b11cOvqU1TI0p3U_CGC_mf5rlJSOn41Zp2c&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Iveta", + "SM poznámky": "Dr. kontaktován telefoniky 5.5. (604 701 738)", + "Termín SQV a TYP (onsite či remote, respektive remote)": "26.5. ve 14h-on site", + "SIPIQ zajímavosti": "Nemá zkušenost s UC ediaries Mayo?, dotazníky, C-SSRS, nevychází počty 15 z 8 pacientů na advanced therapy,", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Biol. dospívající 2 (1:1) /NA", + "Počet pacientů SQV": "1 az 2 pacienti (1:1}", + "Recommended Not recommended for selection argumenty podle reportu": "Ma omezene zkusenosti. 1-2 pacienty slibil, Site is very interested to be selected for conducting ICONIC IBD-UC (Adolescent):\nThe study team has experience with 2 clinical trials, the site has sufficient equipment and space for conducting\nthe study. All team members are qualified by certificates and experience for this study. The SM recommends\nthe site for participation based on potential subject population, correct staffing and equipment, previous\nexperience in clinical trials and interest in the proposed trial", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Adolescenti", + "FINAL DECISION PRO ICONIC IBD": "Ano", + "Adolescenti": "Ano", + "Stav CDA": "Master CDA hotové", + "LTM": "Helena", + "Illuminator status CD": "approved for feasibility", + "Illumninator status UC": "approved for feasibility", + "Comment": "Ano, chtějí do feasky", + "Společnost na CDA": "MUDr. Nabil El-Lababidi", + "PI Last Name": "Nabil", + "PI First Name": "El-Lababidi", + "PI Email Address": "nabil.el-lababidi@vfn.cz", + "PI Phone Number": "420 224 967 792 mobil 604 701 738", + "Primary Institution Name": "VFN" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Kohout" + }, + "excel": { + "EMA": "CD 2x po náboru", + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "LTM": "Helena", + "Comment": "máme prof. Tomáš Hucl", + "PI Last Name": "Kohout", + "PI First Name": "Pavel", + "PI Email Address": "pavel.kohout@ftn.cz", + "PI Phone Number": "420 261 082 295", + "Primary Institution Name": "FTN" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Veberova" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_3zF6TQ5R8qTZkXG_b11cOvqU1TI0p3U_CGC_uPztEy4SjGNIdBT&_g_=g", + "Feasibility dotaznik vyplnen": "Nakonec feasku odmitla email 11.5.", + "SM": "Vlaďka", + "SM poznámky": "MUDr. Veberová kontaktována přes mobil (704 604 068) 6.5. Slibila že SIPIQ a CDA vyplní zítra", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "N/A", + "Adolescenti": "ne", + "Stav CDA": "20.4. vyžádáno Zuzka , 2.5 zaslána upomínka s návodem, aby CDA podepsala", + "LTM": "Helena", + "Illuminator status CD": "SIPIQ odeslán", + "Illumninator status UC": "SIPIQ odeslán", + "Comment": "Ano, chteji do feasky", + "Společnost na CDA": "MUDr. Lucie Veberová", + "PI Last Name": "Veberova", + "PI First Name": "Lucie", + "PI Email Address": "lucie.veberova@synexus.com; lucie.veberova@globalaes.com", + "PI Phone Number": "mobil (704 604 068) tel (225 666 111)" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Repak" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Illuminator status CD": "rejected for feasibility", + "Illumninator status UC": "rejected for feasibility", + "PI Last Name": "Repak", + "PI First Name": "Rudolf", + "PI Email Address": "rrepak@seznam.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Janu" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ne jsou vytizeni", + "PI Last Name": "Janu", + "PI First Name": "Lubos", + "PI Email Address": "Lubos.Janu@seznam.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Mináriková" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_SVeZ00mugBfmF2n_b11cOvqU1TI0p3U_CGC_hJh0MEIITJTwJ9Q&_g_=g", + "Feasibility dotaznik vyplnen": "ano", + "SM": "Ivetka", + "SM poznámky": "email ohledně připomenutí vyplnění dotazníku odeslán 7.5.25 a znovu 12.5. na uvn -email adresu. telefonicky neni k zastiženi, sestricka mu předa vzkaz. PI bude Dr. Petra Minarikova-cekám na termín SQV", + "Termín SQV a TYP (onsite či remote, respektive remote)": "26. 5.", + "SIPIQ zajímavosti": "Nesedí vůbec počty, není na seznamu biol center, ale asi pacienty mají podle dotrazníku, plus až 1000 pacientu lecenych, ale to nemají ani v pze, Nemá zkusenost s cdai, mayo, csssrs, iata", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 60 (58:60) / 80 (60:75)", + "Počet pacientů SQV": "2 pacienti UC a 2 pacienti CD", + "Recommended Not recommended for selection argumenty podle reportu": "The PI has experience with 1 clinical trials, the site has space for conducting the study, hopefully sufficient\nequipment (instead of Stadiometer for measuring height, Incubator for -TBC test) but valid certificates are\nneeded before SIV.\nThe following items for consideration of selection detected:\n • PI has only previous experience with 1 study /12 patients)\n • no previous experience with JJ study and systems\n • contract negotiation and processes can be prolonged 3-5 month\n • There is only 1 SC without back up Additonal comments: The site does not have adolescent patients for ulcerative colitis study; the site addresses only for adult patients\nwith gastrointestinal diseases.\nThe site prefers patient travel reimbursement via direct payment on bank account.\nPI has not CV on EUCTR template.\n PI was also informed about importance sign the following Form before initial study submission incase of\nselection: Conflict of Interest and Centre Suitability.\nSC was informed that all validation/calibration certificates for study equipment needs to be available before SIV", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem oboje, vyplněno pod Gregou, zadáno i 600 a 200 pacientů a pak 800 naivních CD, 200 biol lecba UC a CD", + "FINAL DECISION PRO ICONIC IBD": "Ne - nema zastup v ambulanci (1PI, 1 SN)", + "Adolescenti": "Ne", + "Stav CDA": "PI CDA podepsane", + "LTM": "Helena", + "Illuminator status CD": "RECOMMENDED FOR SQV (upravený hlavní zkoušející na Petra MINARIKOVA)", + "Illumninator status UC": "RECOMMENDED FOR SQV (upravený hlavní zkoušející na Petra MINARIKOVA)", + "Comment": "Ano, chteji do feasky", + "Společnost na CDA": "Ústřední vojenská nemocnice Praha", + "PI Last Name": "Mináriková", + "PI First Name": "Petra", + "PI Email Address": "togrega@gmail.com; petra.minarikova@uvn.cz - poslat feasku v kopii. tomas.grega@uvn.cz", + "PI Full Address": "973 203 128", + "Primary Institution Name": "UVN" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Dobesova" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Neni lekar, lekarnice ve fnol", + "PI Last Name": "Dobesova", + "PI First Name": "Jarmila", + "PI Email Address": "jarmila.dobesova@fnol.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Jabandziev" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ano", + "Adolescenti": "Ano", + "LTM": "Helena", + "PI Last Name": "Jabandziev", + "PI First Name": "Petr", + "PI Email Address": "jabandziev.petr@fnbrno.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Koskova" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "LTM": "Helena", + "Comment": "Ne z časových důvodů.", + "PI Last Name": "Koskova", + "PI First Name": "Radka", + "PI Email Address": "studie.endo@seznam.cz'" + }, + "zdroj_sheet": "IBD LIST OF SITES" + }, + { + "filter": { + "prijmeni": "Vaculin" + }, + "excel": { + "Centrum BIOLOGICKÉ léčby 52 center (z toho 10 dětských) https://credit.registry": "Ne", + "Feasibility link. kde je tmavě zelená, je překopírováno do Start up OneNote.": "https://janssenfeasibility.iad1.qualtrics.com/jfe/form/SV_b11cOvqU1TI0p3U?Q_CHL=gl&Q_DL=EMD_NLDs24bHQ6HIhn9_b11cOvqU1TI0p3U_CGC_0fkLHPcQggr14cR&_g_=g", + "Feasibility dotaznik vyplnen": "Ano", + "SM": "Žaneta", + "SM poznámky": "6.5.2025 nepodařilo se mi dovolat,zkoušela jsem x krát. Poslala jsem upomínku emailem. 26.5.2025 ozval se pan Matějovský z Efertusu, dal mi termín SQV.", + "Termín SQV a TYP (onsite či remote, respektive remote)": "28. 5. 2025 remotely", + "SIPIQ zajímavosti": "nevyhcází počty, navíc jako nebiol centrum. Zkrácený SIPIQ ok???", + "Počet pacientů SIPIQ UC/CD (naive:IR)": "Nebiol. 15 (8:12) / 10 (7:8)", + "Počet pacientů SQV": "CD 3 / UC 3", + "Recommended Not recommended for selection argumenty podle reportu": "Vaculin nikdy nebyl PI, ale vzdy SI. Vic mluvil Efertus SC. Nemaji mrazak a lednici. Vybaveni maji. Recommended, ale figuruje tam Efertus-nevím zda nebude problém se smlouvou, chtějí 4 strannou (Janssen/GastroNell/Efertus/PI) Koordinátor z Efertus bude hodně akční,komunikace bude dobrá. PI je poprvé PI, dříve vždy SI. PI je tišší povahy, během SQV mluvil spíše koordinátor. Po SQV PI rychle reagoval na emaily-snad bude komunikace dobrá.", + "Zájem o Jnj4804 podle SIPIQ a jejich rozložení pacientů podle SIPIQ pro další ro": "Mají zájem o oboje. Počty pacientů nejsou, je zkrácený SIPIQ.", + "FINAL DECISION PRO ICONIC IBD": "Spis ne kvuli smlouve, 6-7 z 10", + "Adolescenti": "ne", + "Stav CDA": "CDA fully signed - PI varianta", + "LTM": "Helena", + "Illuminator status CD": "máme SIPIQ", + "Illumninator status UC": "máme SIPIQ", + "Comment": "Ano, chteji do feasky", + "Společnost na CDA": "Vsetín", + "PI Last Name": "Vaculin", + "PI First Name": "Vladimir", + "PI Email Address": "endovsetin@seznam.cz" + }, + "zdroj_sheet": "IBD LIST OF SITES" + } +] + +FIXES = { + 'Šuláková': 'Sulakova', + 'Hucl/Drastich': 'Drastich', + 'Vyhnálek': 'Vyhnalek', + 'Šerclová': 'Serclova', + 'Pumprla jr.': 'Pumprla', + 'Koželuhová': 'Kozeluhova', + 'Košková': 'Koskova', + 'Král': 'Kral', + 'Hrabák': 'Hrabak', + 'Nabil': 'El Lababidi', + 'Mináriková': 'Minarikova', +} + +ok = 0 +skip = 0 +for u in updates: + p = u["filter"]["prijmeni"] + if p in FIXES: + u["filter"]["prijmeni"] = FIXES[p] + result = col.update_one(u["filter"], {"$set": {"excel": u["excel"]}}) + if result.matched_count: + ok += 1 + else: + skip += 1 + print(f" Nenalezen: {u['filter']}") + +print(f"Aktualizováno: {ok}, nenalezeno: {skip}") +client.close() diff --git a/Feasibility/77242113UCO2001/update_zdroj.py b/Feasibility/77242113UCO2001/update_zdroj.py new file mode 100644 index 0000000..1b7e56a --- /dev/null +++ b/Feasibility/77242113UCO2001/update_zdroj.py @@ -0,0 +1,14 @@ +""" +Přidá pole "Zdroj": "Iluminátor" ke všem dokumentům v feasibility.investigators. + +Spustit: python update_zdroj.py +""" + +from pymongo import MongoClient + +client = MongoClient("mongodb://192.168.1.76:27017/") +col = client["feasibility"]["investigators"] + +result = col.update_many({}, {"$set": {"Zdroj": "Iluminátor"}}) +print(f"Upraveno dokumentů: {result.modified_count}") +client.close() diff --git a/IWRS/Drugs/Working/_create_tables.py b/IWRS/Drugs/Working/_create_tables.py new file mode 100644 index 0000000..c364929 --- /dev/null +++ b/IWRS/Drugs/Working/_create_tables.py @@ -0,0 +1,139 @@ +import mysql.connector +import db_config + +conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME +) +c = conn.cursor() + +# Přidat report_type do iwrs_import (pokud ještě neexistuje) +try: + c.execute("""ALTER TABLE iwrs_import + ADD COLUMN report_type VARCHAR(20) NOT NULL DEFAULT 'patients' + AFTER source_file""") + print("ALTER TABLE iwrs_import OK — report_type přidán") +except mysql.connector.errors.DatabaseError as e: + if "Duplicate column" in str(e): + print("report_type již existuje — přeskočeno") + else: + raise + +stmts = [ + ( + "iwrs_shipments", + """CREATE TABLE IF NOT EXISTS iwrs_shipments ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + shipment_id VARCHAR(20) NOT NULL, + status VARCHAR(50), + type VARCHAR(30), + ship_from VARCHAR(50), + ship_to_site VARCHAR(50), + location VARCHAR(50), + request_date DATE, + shipped_date DATE, + received_date DATE, + received_by VARCHAR(100), + delivered_date_utc DATE, + delivery_recipient VARCHAR(100), + delivery_details VARCHAR(200), + cancelled_date DATE, + total_medication_ids SMALLINT, + tracking_no VARCHAR(100), + shipping_category VARCHAR(50), + expected_arrival DATE, + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_study_shipment (study, shipment_id) +)""" + ), + ( + "iwrs_shipment_items", + """CREATE TABLE IF NOT EXISTS iwrs_shipment_items ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + shipment_id VARCHAR(20) NOT NULL, + destination_location VARCHAR(50), + shipment_status VARCHAR(50), + shipment_type VARCHAR(30), + destination_site VARCHAR(50), + investigator VARCHAR(100), + medication_description VARCHAR(200), + medication_type VARCHAR(50), + medication_id VARCHAR(20), + packaged_lot_no VARCHAR(50), + packaged_lot_description VARCHAR(100), + container_id VARCHAR(50), + quantity SMALLINT, + expiration_date DATE, + item_status VARCHAR(50), + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_med_id (medication_id) +)""" + ), + ( + "iwrs_inventory", + """CREATE TABLE IF NOT EXISTS iwrs_inventory ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + site VARCHAR(50), + investigator VARCHAR(100), + location VARCHAR(50), + medication_id VARCHAR(20), + packaged_lot_no VARCHAR(50), + original_expiration_date DATE, + expiration_date DATE, + received_date DATE, + receipt_user VARCHAR(100), + subject_identifier VARCHAR(20), + quantity_assigned SMALLINT, + irt_transaction VARCHAR(100), + date_assigned DATE, + assignment_user VARCHAR(100), + dispensation_status VARCHAR(50), + dispensing_date DATE, + quantity_dispensed SMALLINT, + dispensing_user VARCHAR(100), + quantity_returned SMALLINT, + date_returned DATE, + return_user VARCHAR(100), + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_site (study, site) +)""" + ), + ( + "iwrs_destruction", + """CREATE TABLE IF NOT EXISTS iwrs_destruction ( + id INT AUTO_INCREMENT PRIMARY KEY, + study VARCHAR(20) NOT NULL, + site_id VARCHAR(50), + investigator VARCHAR(100), + location VARCHAR(50), + basket_id VARCHAR(20) NOT NULL, + destruction_date DATE, + medication_description VARCHAR(200), + medication_id VARCHAR(20), + packaged_lot_description VARCHAR(100), + comments VARCHAR(500), + imported_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + UNIQUE KEY uq_destruction (study, basket_id, medication_id), + INDEX idx_study_basket (study, basket_id) +)""" + ), +] + +for name, sql in stmts: + c.execute(sql) + print(f"OK: {name}") + +conn.commit() +c.close() +conn.close() +print("\nVšechny tabulky připraveny.") diff --git a/IWRS/Drugs/Working/create_accountability_report.py b/IWRS/Drugs/Working/create_accountability_report.py new file mode 100644 index 0000000..5bb5196 --- /dev/null +++ b/IWRS/Drugs/Working/create_accountability_report.py @@ -0,0 +1,364 @@ +import sys +import os +import mysql.connector +import pandas as pd +from datetime import date +from pathlib import Path +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) +import db_config + +STUDY = "42847922MDD3003" +# STUDY = "77242113UCO3001" + +BASE_DIR = Path(os.path.dirname(os.path.abspath(__file__))) +OUTPUT_DIR = BASE_DIR / "output" +OUTPUT_FILE = OUTPUT_DIR / f"{date.today().strftime('%Y-%m-%d')} {STUDY} CZ IWRS overview.xlsx" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", "Max Visit Date", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, + "Max Visit Date": 16, +} + +# shipments sheet: kolík kde začínají detail sloupce (1-based, pro format_shipment_sheet) +N_SHIP_COLS = 9 + + +# ── DB ──────────────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def get_latest_import_id(cursor, study): + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='drugs'", + (study,), + ) + row = cursor.fetchone() + mid = row["mid"] + if mid is None: + raise RuntimeError(f"Žádná data v MySQL pro studii {study}") + return mid + + +# ── Načítání dat z MySQL ────────────────────────────────────────────────────── + +def load_inventory(cursor, study, import_id): + """ + Vrátí DataFrame s inventory + destruction join. + Sloupce jsou rovnou přejmenované pro downstream funkce. + """ + sql = """ + SELECT + i.site AS Site, + i.medication_id AS `Med ID`, + i.packaged_lot_no AS `Lot No.`, + i.original_expiration_date AS `Orig Exp Date`, + i.expiration_date AS `Exp Date`, + i.received_date AS `Rcv Date`, + i.receipt_user AS `Rcpt User`, + i.subject_identifier AS `Subject ID`, + i.quantity_assigned AS `Qty Asgn`, + i.irt_transaction AS `IRT Tx`, + i.date_assigned AS `Date Asgn`, + i.assignment_user AS `Asgn User`, + i.dispensation_status AS `Disp Status`, + i.dispensing_date AS `Disp Date`, + i.quantity_dispensed AS `Qty Disp`, + i.dispensing_user AS `Disp User`, + i.quantity_returned AS `Qty Ret`, + i.date_returned AS `Date Ret`, + i.return_user AS `Ret User`, + d.destruction_date AS Destroyed, + d.basket_id AS `Basket No.` + FROM iwrs_inventory i + LEFT JOIN ( + SELECT medication_id, + ANY_VALUE(basket_id) AS basket_id, + ANY_VALUE(destruction_date) AS destruction_date + FROM iwrs_destruction + WHERE study = %s + GROUP BY medication_id + ) d ON d.medication_id = i.medication_id + WHERE i.import_id = %s + AND i.study = %s + ORDER BY i.site, i.received_date, i.medication_id + """ + cursor.execute(sql, (study, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + print(f" Inventory: {len(df)} kitu") + return df + + +def load_shipments(cursor, study, import_id): + """ + Vrátí DataFrame se spojenými shipments + items. + """ + sql = """ + SELECT + s.shipment_id AS `Shipment ID`, + s.status AS `IRT Shipment Status`, + s.type AS Type, + s.ship_from AS `Shipment From`, + s.ship_to_site AS `Ship To:`, + s.request_date AS `Request Date`, + s.received_date AS `Received Date`, + s.received_by AS `Received by`, + s.expected_arrival AS `Expected Arrival`, + i.investigator AS Investigator, + i.medication_description AS `Medication Description`, + i.medication_id AS `Medication ID`, + i.packaged_lot_no AS `Packaged Lot number`, + i.expiration_date AS `Expiration Date`, + i.item_status AS Status + FROM iwrs_shipments s + JOIN iwrs_shipment_items i + ON i.study = s.study + AND i.shipment_id = s.shipment_id + AND i.import_id = %s + WHERE s.import_id = %s + AND s.study = %s + ORDER BY s.ship_to_site, s.shipment_id, i.medication_id + """ + cursor.execute(sql, (import_id, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in ("Request Date", "Received Date", "Expiration Date", "Expected Arrival"): + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + print(f" Shipments: {df['Shipment ID'].nunique() if len(df) else 0} zásilek, {len(df)} kitu") + return df + + +# ── Odvozené sheety ─────────────────────────────────────────────────────────── + +def build_site_summary(shipments_df): + STATUS_COLS = ["Available", "Assigned", "Dispensed", "Returned by Subject"] + pivot = shipments_df.groupby("Ship To:")["Status"].value_counts().unstack(fill_value=0) + for s in STATUS_COLS: + if s not in pivot.columns: + pivot[s] = 0 + pivot = ( + pivot[STATUS_COLS] + .reset_index() + .rename(columns={"Ship To:": "Site", "Returned by Subject": "Returned"}) + .sort_values("Site") + .reset_index(drop=True) + ) + pivot["Total"] = pivot[["Available", "Assigned", "Dispensed", "Returned"]].sum(axis=1) + print(f" Site Summary: {len(pivot)} center") + return pivot + + +def build_expired(df): + today = date.today() + mask = ( + df["Basket No."].isna() & + df["Subject ID"].isna() & + (df["Exp Date"] < pd.Timestamp(today)) + ) + filtered = df[mask].copy().reset_index(drop=True) + sheet_name = f"Expired as of {today.strftime('%d-%b-%Y')}" + print(f" Expired: {len(filtered)}") + return filtered, sheet_name + + +def build_assigned_not_dispensed(df): + mask = df["Subject ID"].notna() & df["Disp Date"].isna() + filtered = df[mask].copy().reset_index(drop=True) + print(f" Assigned not dispensed: {len(filtered)}") + return filtered + + +def build_not_returned(df): + no_ret = df[ + df["Date Ret"].isna() & + df["Subject ID"].notna() & + (df["Disp Status"].fillna("").str.upper() != "NOT DISPENSED") + ].copy() + max_asgn = df.groupby("Subject ID")["Date Asgn"].max().rename("Max Visit Date") + no_ret = no_ret.join(max_asgn, on="Subject ID") + filtered = no_ret[no_ret["Date Asgn"] < no_ret["Max Visit Date"]].copy() + filtered = filtered.drop(columns=["Qty Ret", "Date Ret", "Ret User", "Destroyed", "Basket No."]) + filtered = filtered.reset_index(drop=True) + print(f" Not returned: {len(filtered)}") + return filtered + + +def build_kits_for_destruction(df): + mask = ( + df["Basket No."].isna() & + (df["Date Ret"].notna() | (df["Disp Status"].fillna("").str.upper() == "NOT DISPENSED")) + ) + filtered = ( + df[mask] + .copy() + .sort_values(["Site", "Date Ret"], ascending=[True, True]) + .drop(columns=["Destroyed", "Basket No."]) + .reset_index(drop=True) + ) + print(f" Kits for destruction: {len(filtered)}") + return filtered + + +# ── Formátování ─────────────────────────────────────────────────────────────── + +def format_sheet(ws, header_color, highlight_col=None, highlight_color=None): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + header_fill = PatternFill("solid", start_color=header_color) + header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) + row_font = Font(name="Arial", size=10) + hi_fill = PatternFill("solid", start_color=highlight_color) if highlight_color else None + + headers = [cell.value for cell in ws[1]] + + for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if hi_fill and col_name == highlight_col: + cell.fill = hi_fill + + for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +def format_shipment_sheet(ws, header_color_ship, header_color_detail, n_ship_cols): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + hfont = Font(bold=True, color="FFFFFF", name="Arial", size=10) + dfont = Font(name="Arial", size=10) + fill_ship = PatternFill("solid", start_color=header_color_ship) + fill_detail = PatternFill("solid", start_color=header_color_detail) + + for cell in ws[1]: + cell.fill = fill_ship if cell.column <= n_ship_cols else fill_detail + cell.font = hfont + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + cell.border = border + ws.column_dimensions[get_column_letter(cell.column)].width = min( + len(str(cell.value or "")) + 4, 35 + ) + ws.row_dimensions[1].height = 30 + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + cell.font = dfont + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center") + if cell.value.__class__.__name__ in ("datetime", "date", "Timestamp"): + cell.number_format = "DD-MMM-YYYY" + + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +# ── Main ────────────────────────────────────────────────────────────────────── + +def main(): + OUTPUT_DIR.mkdir(exist_ok=True) + + print(f"\nNačítám data z MySQL pro {STUDY}...") + conn = get_conn() + cursor = conn.cursor(dictionary=True) + import_id = get_latest_import_id(cursor, STUDY) + print(f" import_id = {import_id}") + + df = load_inventory(cursor, STUDY, import_id) + shipments_df = load_shipments(cursor, STUDY, import_id) + + cursor.close() + conn.close() + + expired_df, expired_sheet = build_expired(df) + assigned_df = build_assigned_not_dispensed(df) + not_returned_df = build_not_returned(df) + destruction_df = build_kits_for_destruction(df) + site_summary_df = build_site_summary(shipments_df) + + with pd.ExcelWriter(OUTPUT_FILE, engine="openpyxl") as writer: + df.to_excel( writer, index=False, sheet_name="CountryMedicationOverview") + expired_df.to_excel( writer, index=False, sheet_name=expired_sheet) + assigned_df.to_excel( writer, index=False, sheet_name="Assigned not dispensed") + not_returned_df.to_excel( writer, index=False, sheet_name="Not returned") + destruction_df.to_excel( writer, index=False, sheet_name="Kits for destruction") + shipments_df.to_excel( writer, index=False, sheet_name="Shipments") + site_summary_df.to_excel( writer, index=False, sheet_name="Site Summary") + + wb = load_workbook(OUTPUT_FILE) + + ws_main = wb["CountryMedicationOverview"] + format_sheet(ws_main, header_color="1F4E79") + new_col_fill = PatternFill("solid", start_color="E2EFDA") + headers_main = [c.value for c in ws_main[1]] + for row in ws_main.iter_rows(min_row=2, max_row=ws_main.max_row): + for cell in row: + col_name = headers_main[cell.column - 1] if cell.column <= len(headers_main) else None + if col_name in ("Destroyed", "Basket No."): + cell.fill = new_col_fill + + format_sheet(wb[expired_sheet], header_color="C00000", highlight_col="Exp Date", highlight_color="FFE0E0") + format_sheet(wb["Assigned not dispensed"], header_color="833C00", highlight_col="Subject ID", highlight_color="FFF2CC") + format_sheet(wb["Not returned"], header_color="375623", highlight_col="Max Visit Date", highlight_color="E2EFDA") + format_sheet(wb["Kits for destruction"], header_color="595959") + format_shipment_sheet(wb["Shipments"], "1F4E79", "375623", N_SHIP_COLS) + format_sheet(wb["Site Summary"], header_color="1F4E79") + + wb.save(OUTPUT_FILE) + print(f"\nUloženo: {OUTPUT_FILE} ({len(df)} řádků, sheety: {wb.sheetnames})") + + +if __name__ == "__main__": + main() diff --git a/IWRS/Drugs/Working/create_shipment_report.py b/IWRS/Drugs/Working/create_shipment_report.py new file mode 100644 index 0000000..3ac66c8 --- /dev/null +++ b/IWRS/Drugs/Working/create_shipment_report.py @@ -0,0 +1,205 @@ +import sys +import os +import mysql.connector +import openpyxl +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter +from datetime import date +import pandas as pd + +# db_config.py je v nadřazeném adresáři (Drugs/) +sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) +import db_config + +STUDY = "77242113UCO3001" +OUTPUT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "output") + +os.makedirs(OUTPUT_DIR, exist_ok=True) + + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def load_data(study): + conn = get_conn() + cursor = conn.cursor(dictionary=True) + + # nejnovější import_id pro danou studii + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='drugs'", + (study,), + ) + row = cursor.fetchone() + import_id = row["mid"] + if import_id is None: + raise RuntimeError(f"Žádná data v MySQL pro studii {study}") + print(f" import_id = {import_id}") + + sql = """ + SELECT + s.shipment_id, + s.status AS irt_shipment_status, + s.type, + s.ship_from AS shipment_from, + s.ship_to_site AS ship_to, + s.request_date, + s.received_date, + s.received_by, + s.expected_arrival, + i.investigator, + i.medication_description, + i.medication_id, + i.packaged_lot_no, + i.expiration_date, + i.item_status AS status + FROM iwrs_shipments s + JOIN iwrs_shipment_items i + ON i.study = s.study + AND i.shipment_id = s.shipment_id + AND i.import_id = %s + WHERE s.import_id = %s + AND s.study = %s + ORDER BY s.ship_to_site, s.shipment_id, i.medication_id + """ + cursor.execute(sql, (import_id, import_id, study)) + rows = cursor.fetchall() + cursor.close() + conn.close() + print(f" Načteno řádků: {len(rows)}") + return rows + + +# shipment sloupce (modrý header) / detail sloupce (zelený header) +SHIP_COLS = [ + ("shipment_id", "Shipment ID"), + ("irt_shipment_status","IRT Shipment Status"), + ("type", "Type"), + ("shipment_from", "Shipment From"), + ("ship_to", "Ship To:"), + ("request_date", "Request Date"), + ("received_date", "Received Date"), + ("received_by", "Received by"), + ("expected_arrival", "Expected Arrival"), +] + +DETAIL_COLS = [ + ("investigator", "Investigator"), + ("medication_description", "Medication Description"), + ("medication_id", "Medication ID"), + ("packaged_lot_no", "Packaged Lot number"), + ("expiration_date", "Expiration Date"), + ("status", "Status"), +] + +ALL_COLS = SHIP_COLS + DETAIL_COLS +N_SHIP_COLS = len(SHIP_COLS) + +HEADER_FILL_SHIP = PatternFill("solid", fgColor="1F4E79") +HEADER_FILL_DETAIL = PatternFill("solid", fgColor="375623") +HEADER_FONT = Font(name="Arial", bold=True, color="FFFFFF", size=10) +DATA_FONT = Font(name="Arial", size=10) +THIN_BORDER = Border( + left=Side(style="thin", color="BFBFBF"), + right=Side(style="thin", color="BFBFBF"), + bottom=Side(style="thin", color="BFBFBF"), +) + + +def write_shipments_sheet(wb, rows): + ws = wb.active + ws.title = "Shipments" + + # záhlaví + for ci, (_, label) in enumerate(ALL_COLS, 1): + cell = ws.cell(row=1, column=ci, value=label) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL_SHIP if ci <= N_SHIP_COLS else HEADER_FILL_DETAIL + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + cell.border = THIN_BORDER + ws.row_dimensions[1].height = 30 + + # data + for ri, row in enumerate(rows, 2): + for ci, (key, _) in enumerate(ALL_COLS, 1): + val = row[key] + cell = ws.cell(row=ri, column=ci, value=val) + cell.font = DATA_FONT + cell.border = THIN_BORDER + cell.alignment = Alignment(horizontal="center", vertical="center") + if isinstance(val, date): + cell.number_format = "DD-MMM-YYYY" + + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + # šířky sloupců + for ci, (key, label) in enumerate(ALL_COLS, 1): + vals = [label] + [str(r[key]) for r in rows if r[key] is not None] + ws.column_dimensions[get_column_letter(ci)].width = min( + max((len(v) for v in vals), default=10) + 2, 35 + ) + + +def write_summary_sheet(wb, rows): + STATUS_COLS = ["Available", "Assigned", "Dispensed", "Returned by Subject"] + + df = pd.DataFrame(rows) + pivot = df.groupby("ship_to")["status"].value_counts().unstack(fill_value=0) + for s in STATUS_COLS: + if s not in pivot.columns: + pivot[s] = 0 + pivot = ( + pivot[STATUS_COLS] + .reset_index() + .rename(columns={"ship_to": "Site", "Returned by Subject": "Returned"}) + .sort_values("Site") + .reset_index(drop=True) + ) + pivot["Total"] = pivot[["Available", "Assigned", "Dispensed", "Returned"]].sum(axis=1) + + ws = wb.create_sheet("Site Summary") + s_cols = ["Site", "Available", "Assigned", "Dispensed", "Returned", "Total"] + + for ci, col in enumerate(s_cols, 1): + cell = ws.cell(row=1, column=ci, value=col) + cell.font = HEADER_FONT + cell.fill = PatternFill("solid", fgColor="1F4E79") + cell.alignment = Alignment(horizontal="center", vertical="center") + cell.border = THIN_BORDER + ws.row_dimensions[1].height = 25 + + for ri, (_, row) in enumerate(pivot.iterrows(), 2): + for ci, col in enumerate(s_cols, 1): + cell = ws.cell(row=ri, column=ci, value=row[col]) + cell.font = DATA_FONT + cell.border = THIN_BORDER + cell.alignment = Alignment(horizontal="center", vertical="center") + + for ci, col in enumerate(s_cols, 1): + vals = [col] + [str(pivot.iloc[r][col]) for r in range(len(pivot))] + ws.column_dimensions[get_column_letter(ci)].width = min( + max(len(v) for v in vals) + 4, 35 + ) + + ws.freeze_panes = "A2" + + +def build_report(): + print(f"\nNačítám data z MySQL pro {STUDY}...") + rows = load_data(STUDY) + + wb = openpyxl.Workbook() + write_shipments_sheet(wb, rows) + write_summary_sheet(wb, rows) + + outfile = os.path.join(OUTPUT_DIR, f"{date.today()} {STUDY} CZ Shipments.xlsx") + wb.save(outfile) + print(f"\nUloženo -> {outfile}") + + +build_report() diff --git a/IWRS/Drugs/Working/create_studie_report.py b/IWRS/Drugs/Working/create_studie_report.py new file mode 100644 index 0000000..dfbba66 --- /dev/null +++ b/IWRS/Drugs/Working/create_studie_report.py @@ -0,0 +1,393 @@ +import sys +import os +import mysql.connector +import pandas as pd +from datetime import date +from pathlib import Path +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) +import db_config + +STUDIES = [ + ("77242113UCO3001", "UCO"), + ("42847922MDD3003", "MDD"), +] + +BASE_DIR = Path(os.path.dirname(os.path.abspath(__file__))) +OUTPUT_DIR = BASE_DIR / "output" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", "Max Visit Date", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, + "Max Visit Date": 16, +} + +N_SHIP_COLS = 9 # počet shipment sloupců (modrý header v Shipments sheetu) + + +# ── DB ──────────────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def get_latest_import_id(cursor, study): + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='drugs'", + (study,), + ) + row = cursor.fetchone() + mid = row["mid"] + if mid is None: + raise RuntimeError(f"Žádná data v MySQL pro studii {study}") + return mid + + +# ── Načítání dat ────────────────────────────────────────────────────────────── + +def load_inventory(cursor, study, import_id): + sql = """ + SELECT + i.site AS Site, + i.medication_id AS `Med ID`, + i.packaged_lot_no AS `Lot No.`, + i.original_expiration_date AS `Orig Exp Date`, + i.expiration_date AS `Exp Date`, + i.received_date AS `Rcv Date`, + i.receipt_user AS `Rcpt User`, + i.subject_identifier AS `Subject ID`, + i.quantity_assigned AS `Qty Asgn`, + i.irt_transaction AS `IRT Tx`, + i.date_assigned AS `Date Asgn`, + i.assignment_user AS `Asgn User`, + i.dispensation_status AS `Disp Status`, + i.dispensing_date AS `Disp Date`, + i.quantity_dispensed AS `Qty Disp`, + i.dispensing_user AS `Disp User`, + i.quantity_returned AS `Qty Ret`, + i.date_returned AS `Date Ret`, + i.return_user AS `Ret User`, + d.destruction_date AS Destroyed, + d.basket_id AS `Basket No.` + FROM iwrs_inventory i + LEFT JOIN ( + SELECT medication_id, + ANY_VALUE(basket_id) AS basket_id, + ANY_VALUE(destruction_date) AS destruction_date + FROM iwrs_destruction + WHERE study = %s + GROUP BY medication_id + ) d ON d.medication_id = i.medication_id + WHERE i.import_id = %s + AND i.study = %s + ORDER BY i.site, i.received_date, i.medication_id + """ + cursor.execute(sql, (study, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + print(f" Inventory: {len(df)} kitu") + return df + + +def load_shipments(cursor, study, import_id): + sql = """ + SELECT + s.shipment_id AS `Shipment ID`, + s.status AS `IRT Shipment Status`, + s.type AS Type, + s.ship_from AS `Shipment From`, + s.ship_to_site AS `Ship To:`, + s.request_date AS `Request Date`, + s.received_date AS `Received Date`, + s.received_by AS `Received by`, + s.expected_arrival AS `Expected Arrival`, + i.investigator AS Investigator, + i.medication_description AS `Medication Description`, + i.medication_id AS `Medication ID`, + i.packaged_lot_no AS `Packaged Lot number`, + i.expiration_date AS `Expiration Date`, + i.item_status AS Status + FROM iwrs_shipments s + JOIN iwrs_shipment_items i + ON i.study = s.study + AND i.shipment_id = s.shipment_id + AND i.import_id = %s + WHERE s.import_id = %s + AND s.study = %s + ORDER BY s.ship_to_site, s.shipment_id, i.medication_id + """ + cursor.execute(sql, (import_id, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in ("Request Date", "Received Date", "Expiration Date", "Expected Arrival"): + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + n_ship = df["Shipment ID"].nunique() if len(df) else 0 + print(f" Shipments: {n_ship} zásilek, {len(df)} kitu") + return df + + +# ── Odvozené sheety ─────────────────────────────────────────────────────────── + +def build_site_summary(shipments_df): + STATUS_COLS = ["Available", "Assigned", "Dispensed", "Returned by Subject"] + pivot = shipments_df.groupby("Ship To:")["Status"].value_counts().unstack(fill_value=0) + for s in STATUS_COLS: + if s not in pivot.columns: + pivot[s] = 0 + pivot = ( + pivot[STATUS_COLS] + .reset_index() + .rename(columns={"Ship To:": "Site", "Returned by Subject": "Returned"}) + .sort_values("Site") + .reset_index(drop=True) + ) + pivot["Total"] = pivot[["Available", "Assigned", "Dispensed", "Returned"]].sum(axis=1) + print(f" Site Summary: {len(pivot)} center") + return pivot + + +def build_expired(df): + today = date.today() + mask = ( + df["Basket No."].isna() & + df["Subject ID"].isna() & + (df["Exp Date"] < pd.Timestamp(today)) + ) + filtered = df[mask].copy().reset_index(drop=True) + print(f" Expired: {len(filtered)}") + return filtered + + +def build_assigned_not_dispensed(df): + mask = df["Subject ID"].notna() & df["Disp Date"].isna() + filtered = df[mask].copy().reset_index(drop=True) + print(f" Assigned not dispensed: {len(filtered)}") + return filtered + + +def build_not_returned(df): + no_ret = df[ + df["Date Ret"].isna() & + df["Subject ID"].notna() & + (df["Disp Status"].fillna("").str.upper() != "NOT DISPENSED") + ].copy() + max_asgn = df.groupby("Subject ID")["Date Asgn"].max().rename("Max Visit Date") + no_ret = no_ret.join(max_asgn, on="Subject ID") + filtered = no_ret[no_ret["Date Asgn"] < no_ret["Max Visit Date"]].copy() + filtered = filtered.drop(columns=["Qty Ret", "Date Ret", "Ret User", "Destroyed", "Basket No."]) + filtered = filtered.reset_index(drop=True) + print(f" Not returned: {len(filtered)}") + return filtered + + +def build_kits_for_destruction(df): + mask = ( + df["Basket No."].isna() & + (df["Date Ret"].notna() | (df["Disp Status"].fillna("").str.upper() == "NOT DISPENSED")) + ) + filtered = ( + df[mask] + .copy() + .sort_values(["Site", "Date Ret"], ascending=[True, True]) + .drop(columns=["Destroyed", "Basket No."]) + .reset_index(drop=True) + ) + print(f" Kits for destruction: {len(filtered)}") + return filtered + + +# ── Formátování ─────────────────────────────────────────────────────────────── + +def format_sheet(ws, header_color, highlight_col=None, highlight_color=None): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + header_fill = PatternFill("solid", start_color=header_color) + header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) + row_font = Font(name="Arial", size=10) + hi_fill = PatternFill("solid", start_color=highlight_color) if highlight_color else None + + headers = [cell.value for cell in ws[1]] + + for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if hi_fill and col_name == highlight_col: + cell.fill = hi_fill + + for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +def format_overview_sheet(ws): + format_sheet(ws, header_color="1F4E79") + new_col_fill = PatternFill("solid", start_color="E2EFDA") + headers = [c.value for c in ws[1]] + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + if col_name in ("Destroyed", "Basket No."): + cell.fill = new_col_fill + + +def format_shipment_sheet(ws): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + hfont = Font(bold=True, color="FFFFFF", name="Arial", size=10) + dfont = Font(name="Arial", size=10) + fill_ship = PatternFill("solid", start_color="1F4E79") + fill_detail = PatternFill("solid", start_color="375623") + + for cell in ws[1]: + cell.fill = fill_ship if cell.column <= N_SHIP_COLS else fill_detail + cell.font = hfont + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + cell.border = border + ws.column_dimensions[get_column_letter(cell.column)].width = min( + len(str(cell.value or "")) + 4, 35 + ) + ws.row_dimensions[1].height = 30 + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + cell.font = dfont + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center") + if cell.value.__class__.__name__ in ("datetime", "date", "Timestamp"): + cell.number_format = "DD-MMM-YYYY" + + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +# ── Main ────────────────────────────────────────────────────────────────────── + +SHEETS_DEF = [ + ("CountryMedicationOverview", "overview"), + ("Expired", "expired"), + ("Assigned not dispensed", "assigned"), + ("Not returned", "not_returned"), + ("Kits for destruction", "destruction"), + ("Shipments", "shipments"), + ("Site Summary", "site_summary"), +] + +FORMAT_MAP = { + "overview": lambda ws: format_overview_sheet(ws), + "expired": lambda ws: format_sheet(ws, "C00000", "Exp Date", "FFE0E0"), + "assigned": lambda ws: format_sheet(ws, "833C00", "Subject ID", "FFF2CC"), + "not_returned": lambda ws: format_sheet(ws, "375623", "Max Visit Date", "E2EFDA"), + "destruction": lambda ws: format_sheet(ws, "595959"), + "shipments": lambda ws: format_shipment_sheet(ws), + "site_summary": lambda ws: format_sheet(ws, "1F4E79"), +} + + +def process_study(cursor, study): + today = date.today().strftime("%d-%b-%Y") + import_id = get_latest_import_id(cursor, study) + print(f" import_id = {import_id}") + + df = load_inventory(cursor, study, import_id) + shipments_df = load_shipments(cursor, study, import_id) + + expired_df = build_expired(df) + assigned_df = build_assigned_not_dispensed(df) + not_returned_df = build_not_returned(df) + destruction_df = build_kits_for_destruction(df) + site_summ_df = build_site_summary(shipments_df) + + return [ + df, expired_df, assigned_df, not_returned_df, + destruction_df, shipments_df, site_summ_df, + ] + + +def save_study_report(study, data_frames): + output_file = OUTPUT_DIR / f"{date.today().strftime('%Y-%m-%d')} {study} report.xlsx" + + with pd.ExcelWriter(output_file, engine="openpyxl") as writer: + for (sheet_name, _), df_sheet in zip(SHEETS_DEF, data_frames): + df_sheet.to_excel(writer, index=False, sheet_name=sheet_name) + + wb = load_workbook(output_file) + for (sheet_name, fmt_key) in SHEETS_DEF: + FORMAT_MAP[fmt_key](wb[sheet_name]) + wb.save(output_file) + print(f" Uloženo: {output_file}") + + +def main(): + OUTPUT_DIR.mkdir(exist_ok=True) + + conn = get_conn() + cursor = conn.cursor(dictionary=True) + + for study, _ in STUDIES: + print(f"\n{'='*55}") + print(f"[{study}]") + print(f"{'='*55}") + try: + data_frames = process_study(cursor, study) + save_study_report(study, data_frames) + except Exception as e: + import traceback + print(f" CHYBA: {e}") + traceback.print_exc() + + cursor.close() + conn.close() + print(f"\nHotovo.") + + +if __name__ == "__main__": + main() diff --git a/IWRS/Drugs/Working/download_ip_destruction.py b/IWRS/Drugs/Working/download_ip_destruction.py new file mode 100644 index 0000000..d139bd2 --- /dev/null +++ b/IWRS/Drugs/Working/download_ip_destruction.py @@ -0,0 +1,76 @@ +from playwright.sync_api import sync_playwright +import os + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +# STUDY = "42847922MDD3003" +STUDY = "77242113UCO3001" + +OUTPUT_DIR = f"xls_ip_destruction_{STUDY}" +# ──────────────────────────────────────────────────────────────────────────── + +def run(page, study): + output_dir = f"xls_ip_destruction_{study}" + os.makedirs(output_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/ip_destruction_form") + page.wait_for_load_state("networkidle", timeout=120000) + + page.locator('input[placeholder="search"], input[type="text"]').first.click() + page.wait_for_timeout(1000) + baskets = [b.strip() for b in page.locator('mat-option').all_inner_texts() + if b.strip() and b.strip() != "No results found"] + print(f" Nalezeno {len(baskets)} kosiku: {baskets}") + page.keyboard.press("Escape") + page.wait_for_timeout(500) + + if not baskets: + print(" Zadne destruction kosite — preskakuji.") + return + + for basket in baskets: + filename = os.path.join(output_dir, f"ip_destruction_basket_{basket}.xlsx") + if os.path.exists(filename): + print(f" [{basket}] Preskakuji — existuje.") + continue + print(f" [{basket}] Stahuji...") + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(basket) + page.wait_for_timeout(500) + page.locator('mat-option').first.dispatch_event('click') + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{basket}] OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(" Destruction hotovo.") + + +if __name__ == "__main__": + from playwright.sync_api import sync_playwright + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=STUDY).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + run(page, STUDY) + browser.close() diff --git a/IWRS/Drugs/Working/download_reports.py b/IWRS/Drugs/Working/download_reports.py new file mode 100644 index 0000000..e67955a --- /dev/null +++ b/IWRS/Drugs/Working/download_reports.py @@ -0,0 +1,83 @@ +from playwright.sync_api import sync_playwright +import os + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +# STUDY = "42847922MDD3003" +STUDY = "77242113UCO3001" + +SITES = { + "42847922MDD3003": [ + "S10-CZ10002", + "S10-CZ10004", + "S10-CZ10005", + "S10-CZ10008", + "S10-CZ10011", + "S10-CZ10012", + ], + "77242113UCO3001": [ + "DD5-CZ10001", + "DD5-CZ10003", + "DD5-CZ10006", + "DD5-CZ10009", + "DD5-CZ10010", + "DD5-CZ10012", + "DD5-CZ10013", + "DD5-CZ10015", + "DD5-CZ10016", + "DD5-CZ10020", + "DD5-CZ10021", + "DD5-CZ10022", + ], +} + +OUTPUT_DIR = f"xls_reports_{STUDY}" +# ──────────────────────────────────────────────────────────────────────────── + +def run(page, study): + output_dir = f"xls_reports_{study}" + os.makedirs(output_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/onsite_inventory_detail") + page.wait_for_load_state("networkidle", timeout=120000) + + for site_id in SITES[study]: + print(f" [{site_id}] Stahuji...") + page.locator('input[placeholder="search"], input[type="text"]').first.click() + page.get_by_role("option", name=site_id).click() + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + + dl.value.save_as(os.path.join(output_dir, f"onsite_inventory_detail_{site_id}.xlsx")) + print(f" [{site_id}] OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(" Inventory hotovo.") + + +if __name__ == "__main__": + from playwright.sync_api import sync_playwright + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=STUDY).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + run(page, STUDY) + browser.close() diff --git a/IWRS/Drugs/Working/download_shipment_details.py b/IWRS/Drugs/Working/download_shipment_details.py new file mode 100644 index 0000000..d024bb5 --- /dev/null +++ b/IWRS/Drugs/Working/download_shipment_details.py @@ -0,0 +1,95 @@ +from playwright.sync_api import sync_playwright +import os +import pandas as pd + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDY = "42847922MDD3003" +#STUDY = "77242113UCO3001" + +OUTPUT_DIR = f"xls_shipment_details_{STUDY}" +# ──────────────────────────────────────────────────────────────────────────── + +def get_cz_shipment_ids(study): + path = f"xls_shipments_{study}/shipments_report_{study}.xlsx" + if not os.path.exists(path): + return None + df = pd.read_excel(path, header=5) + df.columns = df.columns.str.strip() + df = df.dropna(how="all") + df["Shipment ID"] = df["Shipment ID"].astype(str).str.strip() + cz = df[df["Location"].str.contains("Czech", na=False, case=False)] + return cz["Shipment ID"].tolist() + + +def run(page, study): + output_dir = f"xls_shipment_details_{study}" + os.makedirs(output_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/shipment_details_report") + page.wait_for_load_state("networkidle", timeout=120000) + + cz_ids = get_cz_shipment_ids(study) + if cz_ids is not None: + shipments = cz_ids + print(f" Filtrovano ze shipments reportu: {len(shipments)} CZ shipmentu") + else: + page.locator('input[placeholder="search"], input[type="text"]').first.click() + page.wait_for_timeout(1000) + shipments = [s.strip() for s in page.locator('mat-option').all_inner_texts() + if s.strip() and s.strip() != "No results found"] + print(f" Nalezeno {len(shipments)} shipmentu z dropdownu") + page.keyboard.press("Escape") + page.wait_for_timeout(500) + + if not shipments: + print(" Zadne shipments — preskakuji.") + return + + for shipment in shipments: + filename = os.path.join(output_dir, f"shipment_details_{shipment}.xlsx") + if os.path.exists(filename): + print(f" [{shipment}] Preskakuji — existuje.") + continue + print(f" [{shipment}] Stahuji...") + + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(shipment) + page.wait_for_timeout(500) + page.locator('mat-option').first.dispatch_event('click') + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{shipment}] OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(" Shipment details hotovo.") + + +if __name__ == "__main__": + from playwright.sync_api import sync_playwright + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=STUDY).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + run(page, STUDY) + browser.close() diff --git a/IWRS/Drugs/Working/download_shipments_report.py b/IWRS/Drugs/Working/download_shipments_report.py new file mode 100644 index 0000000..5644e97 --- /dev/null +++ b/IWRS/Drugs/Working/download_shipments_report.py @@ -0,0 +1,47 @@ +from playwright.sync_api import sync_playwright +import os + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +# STUDY = "42847922MDD3003" +STUDY = "77242113UCO3001" + +OUTPUT_DIR = f"xls_shipments_{STUDY}" +# ──────────────────────────────────────────────────────────────────────────── + +def run(page, study): + output_dir = f"xls_shipments_{study}" + os.makedirs(output_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/shipments_report") + page.wait_for_load_state("networkidle", timeout=120000) + + filename = os.path.join(output_dir, f"shipments_report_{study}.xlsx") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" Shipments report OK -> {filename}") + + +if __name__ == "__main__": + from playwright.sync_api import sync_playwright + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=STUDY).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + run(page, STUDY) + browser.close() diff --git a/IWRS/Drugs/Working/import_drugs_to_mysql.py b/IWRS/Drugs/Working/import_drugs_to_mysql.py new file mode 100644 index 0000000..3ae3ccd --- /dev/null +++ b/IWRS/Drugs/Working/import_drugs_to_mysql.py @@ -0,0 +1,441 @@ +""" +Importuje drugs data z IWRS Excel reportů do MySQL. + +Tabulky: + iwrs_shipments — zásilky (jen CZ, verzováno import_id) + iwrs_shipment_items — obsah zásilek (verzováno import_id) + iwrs_inventory — lékový sklad na centrech (verzováno import_id) + iwrs_destruction — destrukce (bez verzování, přeskočí již importované košíky) + +Spustit po stažení souborů (nebo přes run_all.py). +""" + +import os +import glob +import re +import datetime + +import numpy as np +import pandas as pd +import mysql.connector + +import db_config + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +SITES = { + "77242113UCO3001": [ + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", + ], + "42847922MDD3003": [ + "S10-CZ10002", "S10-CZ10004", "S10-CZ10005", + "S10-CZ10008", "S10-CZ10011", "S10-CZ10012", + ], +} + + +# ── type converters ────────────────────────────────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + +def to_date(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%Y-%m-%d", "%d-%b-%Y", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + + +# ── DB helpers ─────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + +def insert_import(cursor, study, source_label): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file, report_type) VALUES (%s, %s, %s, %s)", + (study, datetime.datetime.now(), source_label, "drugs"), + ) + return cursor.lastrowid + +def basket_already_imported(cursor, study, basket_id): + cursor.execute( + "SELECT 1 FROM iwrs_destruction WHERE study=%s AND basket_id=%s LIMIT 1", + (study, str(basket_id)), + ) + return cursor.fetchone() is not None + + +# ── parsers ────────────────────────────────────────────────────────────────── + +def parse_shipments_report(study): + path = os.path.join(BASE_DIR, f"xls_shipments_{study}", f"shipments_report_{study}.xlsx") + if not os.path.exists(path): + print(f" CHYBÍ: {path}") + return [] + + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Shipment ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + + df = pd.read_excel(path, header=header_row) + df = df.dropna(how="all") + # pouze CZ zásilky + df = df[df["Location"].astype(str).str.contains("Czech", na=False, case=False)] + col = df.columns.tolist() + + rows = [] + for _, r in df.iterrows(): + rows.append({ + "shipment_id": to_str(r["Shipment ID"]), + "status": to_str(r["IRT Shipment Status"]), + "type": to_str(r["Type"]), + "ship_from": to_str(r["Shipment From"]), + "ship_to_site": to_str(r["Ship To:"]), + "location": to_str(r["Location"]), + "request_date": to_date(r["Request Date"]), + "shipped_date": to_date(r["Shipped Date"]), + "received_date": to_date(r["Received Date"]) if "Received Date" in col else None, + "received_by": to_str(r["Received by"]) if "Received by" in col else None, + "delivered_date_utc": to_date(r["Delivered Date [UTC]"]) if "Delivered Date [UTC]" in col else None, + "delivery_recipient": to_str(r["Delivery Recipient"]) if "Delivery Recipient" in col else None, + "delivery_details": to_str(r["Delivery Details"]) if "Delivery Details" in col else None, + "cancelled_date": to_date(r["Cancelled Date"]) if "Cancelled Date" in col else None, + "total_medication_ids": to_int(r["Total Medication IDs"]) if "Total Medication IDs" in col else None, + "tracking_no": to_str(r["Tracking #"]) if "Tracking #" in col else None, + "shipping_category": to_str(r["Shipping Category"]) if "Shipping Category" in col else None, + "expected_arrival": to_date(r["Expected Arrival"]) if "Expected Arrival" in col else None, + }) + return rows + + +def parse_shipment_details(study): + detail_dir = os.path.join(BASE_DIR, f"xls_shipment_details_{study}") + files = sorted(glob.glob(os.path.join(detail_dir, "shipment_details_*.xlsx"))) + rows = [] + for path in files: + # shipment ID z názvu souboru + m = re.search(r"shipment_details_(.+)\.xlsx", os.path.basename(path)) + shipment_id = m.group(1) if m else "UNKNOWN" + + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Medication ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + continue + + df = pd.read_excel(path, header=header_row) + df = df.dropna(how="all") + col = df.columns.tolist() + + for _, r in df.iterrows(): + # normalizace názvů sloupců lišících se mezi studiemi + med_desc = (to_str(r.get("Medication Description")) + or to_str(r.get("Medication ID Description"))) + med_type = (to_str(r.get("Medication type")) + or to_str(r.get("Medication ID type"))) + rows.append({ + "shipment_id": shipment_id, + "destination_location": to_str(r.get("Destination Location")), + "shipment_status": to_str(r.get("IRT Shipment Status")), + "shipment_type": to_str(r.get("Type")), + "destination_site": to_str(r.get("Destination Site")), + "investigator": to_str(r.get("Investigator")), + "medication_description": med_desc, + "medication_type": med_type, + "medication_id": to_str(r.get("Medication ID")), + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "container_id": to_str(r.get("Container ID")), + "quantity": to_int(r.get("Quantity of Medication IDs")), + "expiration_date": to_date(r.get("Expiration Date")), + "item_status": to_str(r.get("Status")), + }) + return rows + + +def parse_inventory(study): + inv_dir = os.path.join(BASE_DIR, f"xls_reports_{study}") + files = sorted(glob.glob(os.path.join(inv_dir, "onsite_inventory_detail_*.xlsx"))) + rows = [] + for path in files: + raw = pd.read_excel(path, header=None) + + # extrahuj metadata ze záhlaví + site = investigator = location = None + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + if first.startswith("Site:"): + site = first.replace("Site:", "").strip() + elif first.startswith("Investigator:"): + investigator = first.replace("Investigator:", "").strip() + elif first.startswith("Location:"): + location = first.replace("Location:", "").strip() + # hlavička dat — první sloupec je "Medication" nebo "Medication ID" + if first in ("Medication", "Medication ID") and header_row is None: + header_row = i + if header_row is None: + continue + + df = pd.read_excel(path, header=header_row) + df = df.dropna(how="all") + # normalizuj první sloupec na "medication_id" + df = df.rename(columns={df.columns[0]: "medication_id"}) + col = df.columns.tolist() + + for _, r in df.iterrows(): + rows.append({ + "site": site, + "investigator": investigator, + "location": location, + "medication_id": to_str(r["medication_id"]), + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "original_expiration_date": to_date(r.get("Original Expiration Date when Packaged Lot was Added")), + "expiration_date": to_date(r.get("Expiration date")), + "received_date": to_date(r.get("Received Date")), + "receipt_user": to_str(r.get("Shipment Receipt User")), + "subject_identifier": to_str(r.get("Subject Identifier")), + "quantity_assigned": to_int(r.get("Quantity Assigned")), + "irt_transaction": to_str(r.get("IRT Transaction")), + "date_assigned": to_date(r.get("Date Assigned")), + "assignment_user": to_str(r.get("Assignment User")), + "dispensation_status": to_str(r.get("Dispensation Status")), + "dispensing_date": to_date(r.get("Dispensing date") or r.get("Dispensing Date")), + "quantity_dispensed": to_int(r.get("Quantity Dispensed")), + "dispensing_user": to_str(r.get("Dispensing User")), + "quantity_returned": to_int(r.get("Quantity Returned")), + "date_returned": to_date(r.get("Date Returned")), + "return_user": to_str(r.get("Return User")), + }) + return rows + + +def parse_destruction_files(study): + dest_dir = os.path.join(BASE_DIR, f"xls_ip_destruction_{study}") + files = sorted(glob.glob(os.path.join(dest_dir, "ip_destruction_basket_*.xlsx"))) + baskets = [] + for path in files: + raw = pd.read_excel(path, header=None) + + # metadata z záhlaví + meta = {} + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + for key, attr in [ + ("Investigator Name:", "investigator"), + ("Site ID:", "site_id"), + ("Location:", "location"), + ("Basket ID:", "basket_id"), + ("Drug Destruction Created Date:", "destruction_date"), + ]: + if first.startswith(key): + meta[attr] = first.replace(key, "").strip() + if first == "Medication ID Description" and header_row is None: + header_row = i + + if header_row is None: + continue + + df = pd.read_excel(path, header=header_row) + df = df.dropna(how="all") + + items = [] + for _, r in df.iterrows(): + items.append({ + "medication_description": to_str(r.get("Medication ID Description")), + "medication_id": to_str(r.get("Medication ID")), + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "comments": to_str(r.get("Comments")), + }) + + baskets.append({ + "site_id": meta.get("site_id"), + "investigator": meta.get("investigator"), + "location": meta.get("location"), + "basket_id": meta.get("basket_id"), + "destruction_date": to_date(meta.get("destruction_date")), + "items": items, + }) + return baskets + + +# ── inserters ──────────────────────────────────────────────────────────────── + +def insert_shipments(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_shipments + (import_id, study, shipment_id, status, type, ship_from, ship_to_site, + location, request_date, shipped_date, received_date, received_by, + delivered_date_utc, delivery_recipient, delivery_details, cancelled_date, + total_medication_ids, tracking_no, shipping_category, expected_arrival) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["shipment_id"], r["status"], r["type"], + r["ship_from"], r["ship_to_site"], r["location"], + r["request_date"], r["shipped_date"], r["received_date"], + r["received_by"], r["delivered_date_utc"], r["delivery_recipient"], + r["delivery_details"], r["cancelled_date"], r["total_medication_ids"], + r["tracking_no"], r["shipping_category"], r["expected_arrival"], + )) + + +def insert_shipment_items(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_shipment_items + (import_id, study, shipment_id, destination_location, shipment_status, + shipment_type, destination_site, investigator, medication_description, + medication_type, medication_id, packaged_lot_no, packaged_lot_description, + container_id, quantity, expiration_date, item_status) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["shipment_id"], r["destination_location"], + r["shipment_status"], r["shipment_type"], r["destination_site"], + r["investigator"], r["medication_description"], r["medication_type"], + r["medication_id"], r["packaged_lot_no"], r["packaged_lot_description"], + r["container_id"], r["quantity"], r["expiration_date"], r["item_status"], + )) + + +def insert_inventory(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_inventory + (import_id, study, site, investigator, location, medication_id, + packaged_lot_no, original_expiration_date, expiration_date, received_date, + receipt_user, subject_identifier, quantity_assigned, irt_transaction, + date_assigned, assignment_user, dispensation_status, dispensing_date, + quantity_dispensed, dispensing_user, quantity_returned, date_returned, return_user) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["site"], r["investigator"], r["location"], + r["medication_id"], r["packaged_lot_no"], r["original_expiration_date"], + r["expiration_date"], r["received_date"], r["receipt_user"], + r["subject_identifier"], r["quantity_assigned"], r["irt_transaction"], + r["date_assigned"], r["assignment_user"], r["dispensation_status"], + r["dispensing_date"], r["quantity_dispensed"], r["dispensing_user"], + r["quantity_returned"], r["date_returned"], r["return_user"], + )) + + +def insert_destruction(cursor, study, baskets): + sql = """INSERT IGNORE INTO iwrs_destruction + (study, site_id, investigator, location, basket_id, destruction_date, + medication_description, medication_id, packaged_lot_description, comments) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + skipped = 0 + imported = 0 + for b in baskets: + if basket_already_imported(cursor, study, b["basket_id"]): + skipped += 1 + continue + for item in b["items"]: + cursor.execute(sql, ( + study, b["site_id"], b["investigator"], b["location"], + b["basket_id"], b["destruction_date"], + item["medication_description"], item["medication_id"], + item["packaged_lot_description"], item["comments"], + )) + imported += 1 + return imported, skipped + + +# ── main ───────────────────────────────────────────────────────────────────── + +def import_study(study): + print(f"\n Parsování dat pro {study}...") + shipments = parse_shipments_report(study) + items = parse_shipment_details(study) + inventory = parse_inventory(study) + baskets = parse_destruction_files(study) + + print(f" Zásilky: {len(shipments)} | Položky zásilek: {len(items)} | Sklad: {len(inventory)} | Destrukční košíky: {len(baskets)}") + + conn = get_conn() + cursor = conn.cursor() + + import_id = insert_import(cursor, study, f"drugs_{study}") + print(f" import_id = {import_id}") + + insert_shipments(cursor, import_id, study, shipments) + insert_shipment_items(cursor, import_id, study, items) + insert_inventory(cursor, import_id, study, inventory) + dest_imported, dest_skipped = insert_destruction(cursor, study, baskets) + + conn.commit() + cursor.close() + conn.close() + print(f" Destrukce: {dest_imported} nových | {dest_skipped} košíků přeskočeno (již importováno)") + + +def main(): + for study in STUDIES: + print(f"\n{'='*60}") + print(f"[{study}]") + print(f"{'='*60}") + try: + import_study(study) + print(f" OK") + except Exception as e: + import traceback + print(f" CHYBA: {e}") + traceback.print_exc() + print("\nHotovo.") + + +main() diff --git a/IWRS/Drugs/Working/output/2026-05-05 42847922MDD3003 report.xlsx b/IWRS/Drugs/Working/output/2026-05-05 42847922MDD3003 report.xlsx new file mode 100644 index 0000000..1b185f9 Binary files /dev/null and b/IWRS/Drugs/Working/output/2026-05-05 42847922MDD3003 report.xlsx differ diff --git a/IWRS/Drugs/Working/output/2026-05-05 77242113UCO3001 report.xlsx b/IWRS/Drugs/Working/output/2026-05-05 77242113UCO3001 report.xlsx new file mode 100644 index 0000000..e2d221b Binary files /dev/null and b/IWRS/Drugs/Working/output/2026-05-05 77242113UCO3001 report.xlsx differ diff --git a/IWRS/Drugs/Working/run.py b/IWRS/Drugs/Working/run.py new file mode 100644 index 0000000..945444c --- /dev/null +++ b/IWRS/Drugs/Working/run.py @@ -0,0 +1,85 @@ +import sys +import os +from playwright.sync_api import sync_playwright + +import download_reports +import download_ip_destruction +import download_shipments_report +import download_shipment_details +import create_accountability_report + +BASE_URL = "https://janssen.4gclinical.com" +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDIES = { + "1": "77242113UCO3001", + "2": "42847922MDD3003", +} + + +def pick_study(): + print("Vyber studii:") + for k, v in STUDIES.items(): + print(f" {k}) {v}") + while True: + choice = input("Volba (1/2): ").strip() + if choice in STUDIES: + return STUDIES[choice] + print(" Neplatna volba, zkus znovu.") + + +def login_and_select_study(page, study): + print(f"\n[1/5] Prihlaseni a vyber studie {study}...") + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=study).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + print(" OK") + + +def main(): + os.chdir(os.path.dirname(os.path.abspath(__file__))) + + study = pick_study() + + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + login_and_select_study(page, study) + + print(f"\n[2/5] Stahuji inventory reporty...") + download_reports.run(page, study) + + print(f"\n[3/5] Stahuji IP destruction reporty...") + download_ip_destruction.run(page, study) + + print(f"\n[4/5] Stahuji shipments report...") + download_shipments_report.run(page, study) + + print(f"\n[5/5] Stahuji shipment details...") + download_shipment_details.run(page, study) + + browser.close() + + print(f"\n[6/6] Generuji accountability report...") + create_accountability_report.STUDY = study + create_accountability_report.INVENTORY_DIR = __import__("pathlib").Path(f"xls_reports_{study}") + create_accountability_report.DESTRUCTION_DIR= __import__("pathlib").Path(f"xls_ip_destruction_{study}") + create_accountability_report.SHIPMENTS_FILE = __import__("pathlib").Path(f"xls_shipments_{study}/shipments_report_{study}.xlsx") + create_accountability_report.DETAILS_DIR = __import__("pathlib").Path(f"xls_shipment_details_{study}") + create_accountability_report.OUTPUT_FILE = create_accountability_report.OUTPUT_DIR / f"{__import__('datetime').date.today().strftime('%Y-%m-%d')} {study} CZ IWRS overview.xlsx" + create_accountability_report.main() + + print("\nVse hotovo!") + + +main() diff --git a/IWRS/Drugs/create_report.py b/IWRS/Drugs/create_report.py new file mode 100644 index 0000000..9f3f68e --- /dev/null +++ b/IWRS/Drugs/create_report.py @@ -0,0 +1,652 @@ +import os +import mysql.connector +import pandas as pd +from datetime import date +from pathlib import Path +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +import db_config + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +BASE_DIR = Path(os.path.dirname(os.path.abspath(__file__))) +OUTPUT_DIR = BASE_DIR / "output" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", "Max Visit Date", + "Visit Date", "Scheduled Date", +} + +N_SHIP_COLS = 9 # počet shipment sloupců před detail sloupci + + +# ── DB ──────────────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def get_latest_import_id(cursor, study): + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='drugs'", + (study,), + ) + row = cursor.fetchone() + mid = row["mid"] + if mid is None: + raise RuntimeError(f"Žádná data v MySQL pro studii {study}") + return mid + + +# ── Načítání dat ────────────────────────────────────────────────────────────── + +def load_inventory(cursor, study, import_id): + sql = """ + SELECT + i.site AS Site, + i.medication_id AS `Med ID`, + i.packaged_lot_no AS `Lot No.`, + i.original_expiration_date AS `Orig Exp Date`, + i.expiration_date AS `Exp Date`, + i.received_date AS `Rcv Date`, + i.receipt_user AS `Rcpt User`, + i.subject_identifier AS `Subject ID`, + i.quantity_assigned AS `Qty Asgn`, + i.irt_transaction AS `IRT Tx`, + i.date_assigned AS `Date Asgn`, + i.assignment_user AS `Asgn User`, + i.dispensation_status AS `Disp Status`, + i.dispensing_date AS `Disp Date`, + i.quantity_dispensed AS `Qty Disp`, + i.dispensing_user AS `Disp User`, + i.quantity_returned AS `Qty Ret`, + i.date_returned AS `Date Ret`, + i.return_user AS `Ret User`, + d.destruction_date AS Destroyed, + d.basket_id AS `Basket No.` + FROM iwrs_inventory i + LEFT JOIN ( + SELECT medication_id, + ANY_VALUE(basket_id) AS basket_id, + ANY_VALUE(destruction_date) AS destruction_date + FROM iwrs_destruction + WHERE study = %s + GROUP BY medication_id + ) d ON d.medication_id = i.medication_id + WHERE i.import_id = %s + AND i.study = %s + ORDER BY i.site, i.received_date, i.medication_id + """ + cursor.execute(sql, (study, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + print(f" Inventory: {len(df)} kitu") + return df + + +def load_shipments(cursor, study, import_id): + sql = """ + SELECT + s.shipment_id AS `Shipment ID`, + s.status AS `IRT Shipment Status`, + s.type AS Type, + s.ship_from AS `Shipment From`, + s.ship_to_site AS `Ship To:`, + s.request_date AS `Request Date`, + s.received_date AS `Received Date`, + s.received_by AS `Received by`, + s.expected_arrival AS `Expected Arrival`, + i.investigator AS Investigator, + i.medication_description AS `Medication Description`, + i.medication_id AS `Medication ID`, + i.packaged_lot_no AS `Packaged Lot number`, + i.expiration_date AS `Expiration Date`, + i.item_status AS Status + FROM iwrs_shipments s + JOIN iwrs_shipment_items i + ON i.study = s.study + AND i.shipment_id = s.shipment_id + AND i.import_id = %s + WHERE s.import_id = %s + AND s.study = %s + ORDER BY s.ship_to_site, s.shipment_id, i.medication_id + """ + cursor.execute(sql, (import_id, import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in ("Request Date", "Received Date", "Expiration Date", "Expected Arrival"): + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + n_ship = df["Shipment ID"].nunique() if len(df) else 0 + print(f" Shipments: {n_ship} zásilek, {len(df)} kitu") + return df + + +def load_visits(cursor, study, import_id): + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='patients'", + (study,), + ) + patients_import_id = cursor.fetchone()["mid"] or import_id + import_id = patients_import_id + sql = """ + SELECT + v.subject AS Subject, + COALESCE(v.actual_date, v.scheduled_date) AS `Visit Date`, + v.scheduled_date AS `Scheduled Date`, + v.irt_transaction_no AS `IRT Tx No`, + v.irt_transaction_description AS `Visit`, + v.medication_assignment AS `Medication`, + GROUP_CONCAT(v.medication_id ORDER BY v.medication_id SEPARATOR ', ') AS `Med IDs`, + SUM(v.quantity_assigned) AS `Qty` + FROM iwrs_subject_visits v + WHERE v.import_id = %s AND v.study = %s AND v.visit_type = 'Past' + AND v.irt_transaction_no IS NOT NULL + GROUP BY v.subject, v.actual_date, v.scheduled_date, + v.irt_transaction_no, v.irt_transaction_description, v.medication_assignment + ORDER BY v.subject, COALESCE(v.actual_date, v.scheduled_date) + """ + cursor.execute(sql, (import_id, study)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + for col in ("Visit Date", "Scheduled Date"): + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + if study == "77242113UCO3001" and "Visit" in df.columns: + df["Visit"] = df["Visit"].replace("Subject Number Creation", "Screening") + print(f" Visits: {len(df)} řádků") + return df + + +# ── Odvozené sheety ─────────────────────────────────────────────────────────── + +def build_site_summary(shipments_df): + STATUS_COLS = ["Available", "Assigned", "Dispensed", "Returned by Subject"] + pivot = shipments_df.groupby("Ship To:")["Status"].value_counts().unstack(fill_value=0) + for s in STATUS_COLS: + if s not in pivot.columns: + pivot[s] = 0 + pivot = ( + pivot[STATUS_COLS] + .reset_index() + .rename(columns={"Ship To:": "Site", "Returned by Subject": "Returned"}) + .sort_values("Site") + .reset_index(drop=True) + ) + pivot["Total"] = pivot[["Available", "Assigned", "Dispensed", "Returned"]].sum(axis=1) + print(f" Site Summary: {len(pivot)} center") + return pivot + + +def build_expired(df): + today = date.today() + mask = ( + df["Basket No."].isna() & + df["Subject ID"].isna() & + (df["Exp Date"] < pd.Timestamp(today)) + ) + filtered = df[mask].copy().reset_index(drop=True) + sheet_name = f"Expired as of {today.strftime('%d-%b-%Y')}" + print(f" Expired: {len(filtered)}") + return filtered, sheet_name + + +def build_assigned_not_dispensed(df): + mask = df["Subject ID"].notna() & df["Disp Date"].isna() + filtered = df[mask].copy().reset_index(drop=True) + print(f" Assigned not dispensed: {len(filtered)}") + return filtered + + +def build_not_returned(df): + no_ret = df[ + df["Date Ret"].isna() & + df["Subject ID"].notna() & + (df["Disp Status"].fillna("").str.upper() != "NOT DISPENSED") + ].copy() + max_asgn = df.groupby("Subject ID")["Date Asgn"].max().rename("Max Visit Date") + no_ret = no_ret.join(max_asgn, on="Subject ID") + filtered = no_ret[no_ret["Date Asgn"] < no_ret["Max Visit Date"]].copy() + filtered = filtered.drop(columns=["Qty Ret", "Date Ret", "Ret User", "Destroyed", "Basket No."]) + filtered = filtered.reset_index(drop=True) + print(f" Not returned: {len(filtered)}") + return filtered + + +def build_kits_for_destruction(df): + mask = ( + df["Basket No."].isna() & + (df["Date Ret"].notna() | (df["Disp Status"].fillna("").str.upper() == "NOT DISPENSED")) + ) + filtered = ( + df[mask] + .copy() + .sort_values(["Site", "Date Ret"], ascending=[True, True]) + .drop(columns=["Destroyed", "Basket No."]) + .reset_index(drop=True) + ) + print(f" Kits for destruction: {len(filtered)}") + return filtered + + +# ── Formátování ─────────────────────────────────────────────────────────────── + +STRIPE_GRAY = PatternFill("solid", start_color="F2F2F2") +STRIPE_WHITE = PatternFill("solid", start_color="FFFFFF") + +# pacienti — styly zachovány z create_subject_report.py +_PAT_HEADER_FILL = PatternFill("solid", start_color="1F4E79") +_PAT_HEADER_FONT = Font(name="Arial", bold=True, color="FFFFFF", size=10) +_PAT_NORMAL_FONT = Font(name="Arial", size=10) +_PAT_BOLD_FONT = Font(name="Arial", bold=True, size=10) +_PAT_STRIKE_FONT = Font(name="Arial", size=10, strike=True, color="999999") +_PAT_ADOLESC_FONT = Font(name="Arial", bold=True, size=10) +_PAT_THIN = Side(style="thin", color="CCCCCC") +_PAT_BORDER = Border(left=_PAT_THIN, right=_PAT_THIN, top=_PAT_THIN, bottom=_PAT_THIN) +_PAT_EVEN_FILL = PatternFill("solid", start_color="EBF3FB") +_PAT_ODD_FILL = PatternFill("solid", start_color="FFFFFF") +_PAT_CENTER = Alignment(horizontal="center", vertical="center") +_PAT_LEFT = Alignment(horizontal="left", vertical="center") + + +def _autofit(ws): + for col_cells in ws.columns: + max_len = 0 + col_letter = get_column_letter(col_cells[0].column) + for cell in col_cells: + if cell.value is None: + continue + # datum se zobrazí jako DD-MMM-YYYY = 11 znaků + if hasattr(cell.value, "strftime") or cell.number_format == "DD-MMM-YYYY": + length = 11 + else: + length = len(str(cell.value)) + if length > max_len: + max_len = length + ws.column_dimensions[col_letter].width = min(max_len + 3, 50) + + +def format_sheet(ws, header_color, highlight_col=None, highlight_color=None): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + header_fill = PatternFill("solid", start_color=header_color) + header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) + row_font = Font(name="Arial", size=10) + hi_fill = PatternFill("solid", start_color=highlight_color) if highlight_color else None + + headers = [cell.value for cell in ws[1]] + + for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + stripe = STRIPE_GRAY if row[0].row % 2 == 0 else STRIPE_WHITE + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if hi_fill and col_name == highlight_col: + cell.fill = hi_fill + else: + cell.fill = stripe + + _autofit(ws) + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +def format_shipment_sheet(ws, header_color_ship, header_color_detail, n_ship_cols): + thin = Side(style="thin", color="000000") + border = Border(left=thin, right=thin, top=thin, bottom=thin) + hfont = Font(bold=True, color="FFFFFF", name="Arial", size=10) + dfont = Font(name="Arial", size=10) + fill_ship = PatternFill("solid", start_color=header_color_ship) + fill_detail = PatternFill("solid", start_color=header_color_detail) + + for cell in ws[1]: + cell.fill = fill_ship if cell.column <= n_ship_cols else fill_detail + cell.font = hfont + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + cell.border = border + ws.row_dimensions[1].height = 30 + + for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + stripe = STRIPE_GRAY if row[0].row % 2 == 0 else STRIPE_WHITE + for cell in row: + cell.font = dfont + cell.border = border + cell.alignment = Alignment(horizontal="center", vertical="center") + cell.fill = stripe + if cell.value.__class__.__name__ in ("datetime", "date", "Timestamp"): + cell.number_format = "DD-MMM-YYYY" + + _autofit(ws) + ws.auto_filter.ref = ws.dimensions + ws.freeze_panes = "A2" + + +# ── Pacienti ───────────────────────────────────────────────────────────────── + +PATIENT_TABLE = { + "77242113UCO3001": "iwrs_uco3001_subject_summary", + "42847922MDD3003": "iwrs_mdd3003_subject_summary", +} + + +def load_patients(cursor, study): + table = PATIENT_TABLE[study] + cursor.execute(f"SELECT MAX(import_id) AS mid FROM {table}") + mid = cursor.fetchone()["mid"] + if mid is None: + raise RuntimeError(f"Žádná data v MySQL pro pacienty {study}") + extra_cols = "" + if study == "77242113UCO3001": + extra_cols = """ + rescreened_subject AS `Rescreened Subject`, + adt_ir AS `ADT-IR`, + three_or_more_advanced_therapies AS `3+ Adv. Therapies`, + only_oral_5asa_compounds AS `Only 5-ASA`, + ustekinumab AS `Ustekinumab`, + isolated_proctitis AS `Isolated Proctitis`,""" + sql = f""" + SELECT + subject AS `Subject`, + investigator AS `Investigator`, + age AS `Subject's age collection`, + cohort_per_irt AS `Cohort per IRT`,{extra_cols} + irt_subject_status AS `IRT Subject Status`, + last_irt_transaction AS `Last Recorded IRT Transaction`, + next_irt_transaction AS `Next Expected IRT Transaction`, + next_irt_transaction_date_local AS `Next Expected IRT Transaction Date [Local]` + FROM {table} + WHERE import_id = %s + ORDER BY subject + """ + cursor.execute(sql, (mid,)) + rows = cursor.fetchall() + df = pd.DataFrame(rows) + if "Next Expected IRT Transaction Date [Local]" in df.columns: + df["Next Expected IRT Transaction Date [Local]"] = pd.to_datetime( + df["Next Expected IRT Transaction Date [Local]"], errors="coerce" + ) + print(f" Pacienti: {len(df)} subjektů (import_id={mid})") + return df + + +def _simplify_cohort(val): + if pd.isna(val): + return "" + val = str(val) + if "dolescent" in val: + return "Adolescent" + if val.startswith("Adult"): + return "Adult" + return val + + +def _fmt_date(val): + if pd.isna(val): + return "" + if hasattr(val, "strftime"): + return val.strftime("%Y-%m-%d") + return str(val)[:10] + + +def _write_prehled(wb, df_raw, study): + ws = wb.create_sheet("Přehled", 0) + ws.sheet_view.showGridLines = False + + is_uco = (study == "77242113UCO3001") + + if is_uco: + display_headers = ["Subject", "Investigator", "Věk", "Cohort", + "Rescreened", "ADT-IR", "≥3 Adv.Th.", "5-ASA only", + "Uste.", "Isol.Proct.", + "Status", "Last IRT", "Next Visit", "Next Date"] + col_widths = [14, 22, 6, 12, 11, 8, 11, 10, 8, 12, 14, 12, 12, 13] + status_col = 11 + flag_cols = set(range(5, 11)) # 1-indexed sloupce s Yes/No hodnotami + else: + display_headers = ["Subject", "Investigator", "Věk", "Cohort", "Status", "Last IRT", "Next Visit", "Next Date"] + col_widths = [14, 22, 6, 12, 14, 12, 12, 13] + status_col = 5 + flag_cols = set() + + last_col = get_column_letter(len(display_headers)) + ws.merge_cells(f"A1:{last_col}1") + title = ws["A1"] + title.value = f"Subject Summary — {study} ({date.today().strftime('%d-%b-%Y')})" + title.font = Font(name="Arial", bold=True, size=12, color="1F4E79") + title.alignment = Alignment(horizontal="left", vertical="center") + ws.row_dimensions[1].height = 22 + + for c, (h, w) in enumerate(zip(display_headers, col_widths), 1): + cell = ws.cell(row=2, column=c, value=h) + cell.font = _PAT_HEADER_FONT + cell.fill = _PAT_HEADER_FILL + cell.alignment = _PAT_CENTER + cell.border = _PAT_BORDER + ws.column_dimensions[get_column_letter(c)].width = w + ws.row_dimensions[2].height = 18 + + base = { + "Subject": df_raw["Subject"].fillna(""), + "Investigator": df_raw["Investigator"].fillna(""), + "Věk": df_raw["Subject's age collection"].apply(lambda v: "" if pd.isna(v) else int(v)), + "Cohort": df_raw["Cohort per IRT"].apply(_simplify_cohort), + } + if is_uco: + base.update({ + "Rescreened": df_raw["Rescreened Subject"].fillna(""), + "ADT-IR": df_raw["ADT-IR"].fillna(""), + "≥3 Adv.Th.": df_raw["3+ Adv. Therapies"].fillna(""), + "5-ASA only": df_raw["Only 5-ASA"].fillna(""), + "Uste.": df_raw["Ustekinumab"].fillna(""), + "Isol.Proct.": df_raw["Isolated Proctitis"].fillna(""), + }) + base.update({ + "Status": df_raw["IRT Subject Status"].fillna(""), + "Last IRT": df_raw["Last Recorded IRT Transaction"].fillna("—"), + "Next Visit": df_raw["Next Expected IRT Transaction"].fillna("—"), + "Next Date": df_raw["Next Expected IRT Transaction Date [Local]"].apply(_fmt_date), + }) + display = pd.DataFrame(base).sort_values("Subject").reset_index(drop=True) + + for r_idx, row in display.iterrows(): + excel_row = r_idx + 3 + status = str(row["Status"]) + is_failed = "Screen Failed" in status or "Discontinued" in status + is_randomized = "Randomized" in status + is_adolescent = row["Cohort"] == "Adolescent" + fill = _PAT_EVEN_FILL if r_idx % 2 == 0 else _PAT_ODD_FILL + + for c_idx, val in enumerate(row, 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val if val != "" else None) + cell.fill = fill + cell.border = _PAT_BORDER + cell.alignment = _PAT_CENTER if (c_idx == 3 or c_idx in flag_cols) else _PAT_LEFT + if is_failed: + cell.font = _PAT_STRIKE_FONT + elif c_idx == status_col and is_randomized: + cell.font = _PAT_BOLD_FONT + elif c_idx == 4 and is_adolescent: + cell.font = _PAT_ADOLESC_FONT + else: + cell.font = _PAT_NORMAL_FONT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + ws.auto_filter.ref = f"A2:{last_col}{len(display) + 2}" + + +def _write_next_visits(wb, df_raw, study, visits_df=None): + ws = wb.create_sheet("Next Visits", 1) + ws.sheet_view.showGridLines = False + + ws.merge_cells("A1:D1") + title = ws["A1"] + title.value = f"Next Expected Visits — {study} ({date.today().strftime('%d-%b-%Y')})" + title.font = Font(name="Arial", bold=True, size=12, color="1F4E79") + title.alignment = Alignment(horizontal="left", vertical="center") + ws.row_dimensions[1].height = 22 + + nv_headers = ["Subject", "Investigator", "Next Visit", "Datum"] + nv_widths = [14, 22, 26, 13] + for c, (h, w) in enumerate(zip(nv_headers, nv_widths), 1): + cell = ws.cell(row=2, column=c, value=h) + cell.font = _PAT_HEADER_FONT + cell.fill = _PAT_HEADER_FILL + cell.alignment = _PAT_CENTER + cell.border = _PAT_BORDER + ws.column_dimensions[get_column_letter(c)].width = w + ws.row_dimensions[2].height = 18 + + df = pd.DataFrame({ + "Subject": df_raw["Subject"].fillna(""), + "Investigator": df_raw["Investigator"].fillna(""), + "Next Visit": df_raw["Next Expected IRT Transaction"].fillna(""), + "Datum": df_raw["Next Expected IRT Transaction Date [Local]"], + "Status": df_raw["IRT Subject Status"].fillna(""), + }) + + # I-0: datum = screening date + 42 dní + if visits_df is not None and not visits_df.empty: + screen = ( + visits_df[visits_df["Visit"].str.contains("Screen", case=False, na=False)] + .groupby("Subject")["Visit Date"].min() + .rename("Screening Date") + ) + df = df.join(screen, on="Subject") + mask_i0 = df["Next Visit"].str.contains("I-0", na=False) + df.loc[mask_i0, "Datum"] = df.loc[mask_i0, "Screening Date"] + pd.Timedelta(days=42) + df = df.drop(columns=["Screening Date"]) + + df = df[df["Datum"].notna()] + df = df[~df["Status"].str.contains("Screen Failed|Discontinued", na=False)] + df = df.sort_values("Datum").reset_index(drop=True) + + for r_idx, row in df.iterrows(): + excel_row = r_idx + 3 + fill = _PAT_EVEN_FILL if r_idx % 2 == 0 else _PAT_ODD_FILL + datum_val = row["Datum"] + datum_str = datum_val.strftime("%Y-%m-%d") if hasattr(datum_val, "strftime") else str(datum_val)[:10] + for c_idx, val in enumerate([row["Subject"], row["Investigator"], row["Next Visit"], datum_str], 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val if val != "" else None) + cell.fill = fill + cell.border = _PAT_BORDER + cell.font = _PAT_NORMAL_FONT + cell.alignment = _PAT_LEFT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + ws.auto_filter.ref = f"A2:D{len(df) + 2}" + + +# ── Jeden report pro jednu studii ───────────────────────────────────────────── + +def create_study_report(study): + today = date.today() + + # číslování: najdi nejvyšší existující verzi pro dnešní datum + existing = sorted(OUTPUT_DIR.glob(f"{today} {study} CZ IWRS overview v*.xlsx")) + if existing: + last = existing[-1].stem # např. "2026-05-12 42847922MDD3003 CZ IWRS overview v3" + last_ver = int(last.rsplit("v", 1)[-1]) + version = last_ver + 1 + else: + version = 1 + + output_file = OUTPUT_DIR / f"{today} {study} CZ IWRS overview v{version}.xlsx" + + print(f"\n[{study}] Načítám z MySQL...") + conn = get_conn() + cursor = conn.cursor(dictionary=True) + import_id = get_latest_import_id(cursor, study) + print(f" import_id = {import_id}") + + df = load_inventory(cursor, study, import_id) + shipments_df = load_shipments(cursor, study, import_id) + df_patients = load_patients(cursor, study) + visits_df = load_visits(cursor, study, import_id) + cursor.close() + conn.close() + + expired_df, expired_sheet = build_expired(df) + assigned_df = build_assigned_not_dispensed(df) + not_returned_df = build_not_returned(df) + destruction_df = build_kits_for_destruction(df) + site_summary_df = build_site_summary(shipments_df) + + with pd.ExcelWriter(output_file, engine="openpyxl") as writer: + df.to_excel( writer, index=False, sheet_name="CountryMedicationOverview") + expired_df.to_excel( writer, index=False, sheet_name=expired_sheet) + assigned_df.to_excel( writer, index=False, sheet_name="Assigned not dispensed") + not_returned_df.to_excel( writer, index=False, sheet_name="Not returned") + destruction_df.to_excel( writer, index=False, sheet_name="Kits for destruction") + shipments_df.to_excel( writer, index=False, sheet_name="Shipments") + site_summary_df.to_excel( writer, index=False, sheet_name="Site Summary") + visits_df.to_excel( writer, index=False, sheet_name="Patient Visits") + + wb = load_workbook(output_file) + + ws_main = wb["CountryMedicationOverview"] + format_sheet(ws_main, header_color="1F4E79") + green_fill = PatternFill("solid", start_color="E2EFDA") + headers_main = [c.value for c in ws_main[1]] + for row in ws_main.iter_rows(min_row=2, max_row=ws_main.max_row): + for cell in row: + col_name = headers_main[cell.column - 1] if cell.column <= len(headers_main) else None + if col_name in ("Destroyed", "Basket No."): + cell.fill = green_fill + + format_sheet(wb[expired_sheet], header_color="C00000", highlight_col="Exp Date", highlight_color="FFE0E0") + format_sheet(wb["Assigned not dispensed"], header_color="833C00", highlight_col="Subject ID", highlight_color="FFF2CC") + format_sheet(wb["Not returned"], header_color="375623", highlight_col="Max Visit Date", highlight_color="E2EFDA") + format_sheet(wb["Kits for destruction"], header_color="595959") + format_shipment_sheet(wb["Shipments"], "1F4E79", "375623", N_SHIP_COLS) + format_sheet(wb["Site Summary"], header_color="1F4E79") + format_sheet(wb["Patient Visits"], header_color="1F4E79") + + # ── pacienti (Přehled + Next Visits) na začátek ────────────────────────── + _write_prehled(wb, df_patients, study) + _write_next_visits(wb, df_patients, study, visits_df) + + # ── pořadí listů: Patient Visits jako první ────────────────────────────── + names = wb.sheetnames + wb._sheets = [wb["Patient Visits"]] + [wb[s] for s in names if s != "Patient Visits"] + + wb.save(output_file) + print(f" Uloženo: {output_file.name} ({len(df)} řádků)") + + +# ── Main ────────────────────────────────────────────────────────────────────── + +def main(): + OUTPUT_DIR.mkdir(exist_ok=True) + for study in STUDIES: + try: + create_study_report(study) + except Exception as e: + import traceback + print(f"\n[{study}] CHYBA: {e}") + traceback.print_exc() + print("\nHotovo.") + + +main() diff --git a/IWRS/Drugs/db_config.py b/IWRS/Drugs/db_config.py new file mode 100644 index 0000000..bfa5959 --- /dev/null +++ b/IWRS/Drugs/db_config.py @@ -0,0 +1,5 @@ +DB_HOST = "192.168.1.76" +DB_PORT = 3306 +DB_USER = "root" +DB_PASSWORD = "Vlado9674+" +DB_NAME = "studie" diff --git a/IWRS/Drugs/output/2026-04-21 42847922MDD3003 CZ IWRS overview.xlsx b/IWRS/Drugs/output/2026-04-21 42847922MDD3003 CZ IWRS overview.xlsx new file mode 100644 index 0000000..a9515da Binary files /dev/null and b/IWRS/Drugs/output/2026-04-21 42847922MDD3003 CZ IWRS overview.xlsx differ diff --git a/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments.xlsx b/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments.xlsx new file mode 100644 index 0000000..cc31dc5 Binary files /dev/null and b/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments.xlsx differ diff --git a/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments_100177.xlsx b/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments_100177.xlsx new file mode 100644 index 0000000..cfd1874 Binary files /dev/null and b/IWRS/Drugs/output/2026-04-21 77242113UCO3001 CZ Shipments_100177.xlsx differ diff --git a/IWRS/Drugs/output/2026-04-27 77242113UCO3001 CZ IWRS overview.xlsx b/IWRS/Drugs/output/2026-04-27 77242113UCO3001 CZ IWRS overview.xlsx new file mode 100644 index 0000000..91f0461 Binary files /dev/null and b/IWRS/Drugs/output/2026-04-27 77242113UCO3001 CZ IWRS overview.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..993c7da Binary files /dev/null and b/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..92607f3 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-12 42847922MDD3003 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..ed4ecad Binary files /dev/null and b/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..a8a616b Binary files /dev/null and b/IWRS/Drugs/output/2026-05-12 77242113UCO3001 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-13 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-13 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..30a7849 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-13 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-13 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-13 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..a8dd09b Binary files /dev/null and b/IWRS/Drugs/output/2026-05-13 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..e5dedb7 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..8d65305 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v3.xlsx b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v3.xlsx new file mode 100644 index 0000000..bf8628a Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v3.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v4.xlsx b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v4.xlsx new file mode 100644 index 0000000..16d0130 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v4.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v5.xlsx b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v5.xlsx new file mode 100644 index 0000000..5c1a8c4 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 42847922MDD3003 CZ IWRS overview v5.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..87cebc1 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..8ac7c7d Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v3.xlsx b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v3.xlsx new file mode 100644 index 0000000..2d2afa4 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v3.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v4.xlsx b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v4.xlsx new file mode 100644 index 0000000..30f62cd Binary files /dev/null and b/IWRS/Drugs/output/2026-05-15 77242113UCO3001 CZ IWRS overview v4.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-19 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-19 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..548968d Binary files /dev/null and b/IWRS/Drugs/output/2026-05-19 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-19 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-19 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..ec01f02 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-19 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-20 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-20 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..b2ceeaf Binary files /dev/null and b/IWRS/Drugs/output/2026-05-20 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-20 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-20 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..c257c0b Binary files /dev/null and b/IWRS/Drugs/output/2026-05-20 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-21 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-21 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..3d2ed0d Binary files /dev/null and b/IWRS/Drugs/output/2026-05-21 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-21 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-21 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..f620180 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-21 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..668d48b Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..1ef233d Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v3.xlsx b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v3.xlsx new file mode 100644 index 0000000..0910f2c Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 42847922MDD3003 CZ IWRS overview v3.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..4833832 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v2.xlsx b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v2.xlsx new file mode 100644 index 0000000..1430f62 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v2.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v3.xlsx b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v3.xlsx new file mode 100644 index 0000000..9b86d08 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-25 77242113UCO3001 CZ IWRS overview v3.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-26 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-26 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..c145e10 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-26 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-26 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-26 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..82ba4d0 Binary files /dev/null and b/IWRS/Drugs/output/2026-05-26 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-27 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-27 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..ad1b0bc Binary files /dev/null and b/IWRS/Drugs/output/2026-05-27 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-05-27 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-05-27 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..148526a Binary files /dev/null and b/IWRS/Drugs/output/2026-05-27 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-06-01 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-06-01 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..29c9241 Binary files /dev/null and b/IWRS/Drugs/output/2026-06-01 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-06-01 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-06-01 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..50fb7e8 Binary files /dev/null and b/IWRS/Drugs/output/2026-06-01 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/preview_visits.py b/IWRS/Drugs/preview_visits.py new file mode 100644 index 0000000..979f425 --- /dev/null +++ b/IWRS/Drugs/preview_visits.py @@ -0,0 +1,52 @@ +import mysql.connector +import pandas as pd +import db_config + +conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, +) +cursor = conn.cursor(dictionary=True) + +# Vezmi nejnovější import_id pro každou studii +for study in ["77242113UCO3001", "42847922MDD3003"]: + cursor.execute( + "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='patients'", + (study,), + ) + row = cursor.fetchone() + mid = row["mid"] + print(f"\n=== {study} (import_id={mid}) ===") + + cursor.execute(""" + SELECT + v.subject, + v.actual_date, + v.scheduled_date, + v.irt_transaction_no, + v.irt_transaction_description, + v.medication_assignment, + GROUP_CONCAT(v.medication_id ORDER BY v.medication_id SEPARATOR ', ') AS medication_ids, + SUM(v.quantity_assigned) AS quantity_assigned + FROM iwrs_subject_visits v + WHERE v.import_id = %s AND v.study = %s AND v.visit_type = 'Past' + AND v.irt_transaction_no IS NOT NULL + GROUP BY v.subject, v.actual_date, v.scheduled_date, v.irt_transaction_no, + v.irt_transaction_description, v.medication_assignment + ORDER BY v.subject, v.actual_date + LIMIT 20 + """, (mid, study)) + + rows = cursor.fetchall() + df = pd.DataFrame(rows) + if df.empty: + print(" Žádná data.") + else: + pd.set_option("display.max_columns", None) + pd.set_option("display.width", 200) + pd.set_option("display.max_colwidth", 30) + print(df.to_string(index=False)) + +cursor.close() +conn.close() diff --git a/IWRS/Drugs/run_all.py b/IWRS/Drugs/run_all.py new file mode 100644 index 0000000..f50fec9 --- /dev/null +++ b/IWRS/Drugs/run_all.py @@ -0,0 +1,599 @@ +""" +Kompletní pipeline pro Drugs: + 1. Onsite inventory detail (per site, vždy přepisuje) + 2. IP destruction (per košík, přeskočí již existující soubory) + 3. Shipments report (jeden soubor na studii, přepisuje) + 4. Shipment details (per zásilka CZ, vždy přepisuje) + 5. Import do MySQL + +Spusť tento skript — zpracuje obě studie automaticky. +""" + +import os +import glob +import re +import datetime + +import numpy as np +import pandas as pd +from playwright.sync_api import sync_playwright +import mysql.connector + +import db_config + +BASE_URL = "https://janssen.4gclinical.com" +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +SITES = { + "77242113UCO3001": [ + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", + ], + "42847922MDD3003": [ + "S10-CZ10002", "S10-CZ10004", "S10-CZ10005", + "S10-CZ10008", "S10-CZ10011", "S10-CZ10012", + ], +} + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + + +# ── type converters ────────────────────────────────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + +def to_date(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%Y-%m-%d", "%d-%b-%Y", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + + +# ── DB helpers ─────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + +def insert_import(cursor, study, source_label): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file, report_type) VALUES (%s, %s, %s, %s)", + (study, datetime.datetime.now(), source_label, "drugs"), + ) + return cursor.lastrowid + +def basket_already_imported(cursor, study, basket_id): + cursor.execute( + "SELECT 1 FROM iwrs_destruction WHERE study=%s AND basket_id=%s LIMIT 1", + (study, str(basket_id)), + ) + return cursor.fetchone() is not None + + +# ── parsery ────────────────────────────────────────────────────────────────── + +def parse_shipments_report(study): + path = os.path.join(BASE_DIR, f"xls_shipments_{study}", f"shipments_report_{study}.xlsx") + if not os.path.exists(path): + print(f" CHYBÍ: {path}") + return [] + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Shipment ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + df = pd.read_excel(path, header=header_row).dropna(how="all") + df = df[df["Location"].astype(str).str.contains("Czech", na=False, case=False)] + col = df.columns.tolist() + rows = [] + for _, r in df.iterrows(): + rows.append({ + "shipment_id": to_str(r["Shipment ID"]), + "status": to_str(r["IRT Shipment Status"]), + "type": to_str(r["Type"]), + "ship_from": to_str(r["Shipment From"]), + "ship_to_site": to_str(r["Ship To:"]), + "location": to_str(r["Location"]), + "request_date": to_date(r["Request Date"]), + "shipped_date": to_date(r["Shipped Date"]), + "received_date": to_date(r["Received Date"]) if "Received Date" in col else None, + "received_by": to_str(r["Received by"]) if "Received by" in col else None, + "delivered_date_utc": to_date(r["Delivered Date [UTC]"]) if "Delivered Date [UTC]" in col else None, + "delivery_recipient": to_str(r["Delivery Recipient"]) if "Delivery Recipient" in col else None, + "delivery_details": to_str(r["Delivery Details"]) if "Delivery Details" in col else None, + "cancelled_date": to_date(r["Cancelled Date"]) if "Cancelled Date" in col else None, + "total_medication_ids": to_int(r["Total Medication IDs"]) if "Total Medication IDs" in col else None, + "tracking_no": to_str(r["Tracking #"]) if "Tracking #" in col else None, + "shipping_category": to_str(r["Shipping Category"]) if "Shipping Category" in col else None, + "expected_arrival": to_date(r["Expected Arrival"]) if "Expected Arrival" in col else None, + }) + return rows + + +def parse_shipment_details(study): + detail_dir = os.path.join(BASE_DIR, f"xls_shipment_details_{study}") + files = sorted(glob.glob(os.path.join(detail_dir, "shipment_details_*.xlsx"))) + rows = [] + for path in files: + m = re.search(r"shipment_details_(.+)\.xlsx", os.path.basename(path)) + shipment_id = m.group(1) if m else "UNKNOWN" + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Medication ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + for _, r in df.iterrows(): + med_desc = (to_str(r.get("Medication Description")) + or to_str(r.get("Medication ID Description"))) + med_type = (to_str(r.get("Medication type")) + or to_str(r.get("Medication ID type"))) + rows.append({ + "shipment_id": shipment_id, + "destination_location": to_str(r.get("Destination Location")), + "shipment_status": to_str(r.get("IRT Shipment Status")), + "shipment_type": to_str(r.get("Type")), + "destination_site": to_str(r.get("Destination Site")), + "investigator": to_str(r.get("Investigator")), + "medication_description": med_desc, + "medication_type": med_type, + "medication_id": to_str(r.get("Medication ID")), + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "container_id": to_str(r.get("Container ID")), + "quantity": to_int(r.get("Quantity of Medication IDs")), + "expiration_date": to_date(r.get("Expiration Date")), + "item_status": to_str(r.get("Status")), + }) + return rows + + +def parse_inventory(study): + inv_dir = os.path.join(BASE_DIR, f"xls_reports_{study}") + files = sorted(glob.glob(os.path.join(inv_dir, "onsite_inventory_detail_*.xlsx"))) + rows = [] + for path in files: + raw = pd.read_excel(path, header=None) + site = investigator = location = None + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + if first.startswith("Site:"): + site = first.replace("Site:", "").strip() + elif first.startswith("Investigator:"): + investigator = first.replace("Investigator:", "").strip() + elif first.startswith("Location:"): + location = first.replace("Location:", "").strip() + if first in ("Medication", "Medication ID") and header_row is None: + header_row = i + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + df = df.rename(columns={df.columns[0]: "medication_id"}) + for _, r in df.iterrows(): + rows.append({ + "site": site, + "investigator": investigator, + "location": location, + "medication_id": to_str(r["medication_id"]), + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "original_expiration_date": to_date(r.get("Original Expiration Date when Packaged Lot was Added")), + "expiration_date": to_date(r.get("Expiration date")), + "received_date": to_date(r.get("Received Date")), + "receipt_user": to_str(r.get("Shipment Receipt User")), + "subject_identifier": to_str(r.get("Subject Identifier")), + "quantity_assigned": to_int(r.get("Quantity Assigned")), + "irt_transaction": to_str(r.get("IRT Transaction")), + "date_assigned": to_date(r.get("Date Assigned")), + "assignment_user": to_str(r.get("Assignment User")), + "dispensation_status": to_str(r.get("Dispensation Status")), + "dispensing_date": to_date(r.get("Dispensing date") or r.get("Dispensing Date")), + "quantity_dispensed": to_int(r.get("Quantity Dispensed")), + "dispensing_user": to_str(r.get("Dispensing User")), + "quantity_returned": to_int(r.get("Quantity Returned")), + "date_returned": to_date(r.get("Date Returned")), + "return_user": to_str(r.get("Return User")), + }) + return rows + + +def parse_destruction_files(study): + dest_dir = os.path.join(BASE_DIR, f"xls_ip_destruction_{study}") + files = sorted(glob.glob(os.path.join(dest_dir, "ip_destruction_basket_*.xlsx"))) + baskets = [] + for path in files: + raw = pd.read_excel(path, header=None) + meta = {} + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + for key, attr in [ + ("Investigator Name:", "investigator"), + ("Site ID:", "site_id"), + ("Location:", "location"), + ("Basket ID:", "basket_id"), + ("Drug Destruction Created Date:", "destruction_date"), + ]: + if first.startswith(key): + meta[attr] = first.replace(key, "").strip() + if first == "Medication ID Description" and header_row is None: + header_row = i + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + items = [] + for _, r in df.iterrows(): + items.append({ + "medication_description": to_str(r.get("Medication ID Description")), + "medication_id": to_str(r.get("Medication ID")), + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "comments": to_str(r.get("Comments")), + }) + baskets.append({ + "site_id": meta.get("site_id"), + "investigator": meta.get("investigator"), + "location": meta.get("location"), + "basket_id": meta.get("basket_id"), + "destruction_date": to_date(meta.get("destruction_date")), + "items": items, + }) + return baskets + + +# ── insertery ──────────────────────────────────────────────────────────────── + +def insert_shipments(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_shipments + (import_id, study, shipment_id, status, type, ship_from, ship_to_site, + location, request_date, shipped_date, received_date, received_by, + delivered_date_utc, delivery_recipient, delivery_details, cancelled_date, + total_medication_ids, tracking_no, shipping_category, expected_arrival) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["shipment_id"], r["status"], r["type"], + r["ship_from"], r["ship_to_site"], r["location"], + r["request_date"], r["shipped_date"], r["received_date"], + r["received_by"], r["delivered_date_utc"], r["delivery_recipient"], + r["delivery_details"], r["cancelled_date"], r["total_medication_ids"], + r["tracking_no"], r["shipping_category"], r["expected_arrival"], + )) + + +def insert_shipment_items(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_shipment_items + (import_id, study, shipment_id, destination_location, shipment_status, + shipment_type, destination_site, investigator, medication_description, + medication_type, medication_id, packaged_lot_no, packaged_lot_description, + container_id, quantity, expiration_date, item_status) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["shipment_id"], r["destination_location"], + r["shipment_status"], r["shipment_type"], r["destination_site"], + r["investigator"], r["medication_description"], r["medication_type"], + r["medication_id"], r["packaged_lot_no"], r["packaged_lot_description"], + r["container_id"], r["quantity"], r["expiration_date"], r["item_status"], + )) + + +def insert_inventory(cursor, import_id, study, rows): + sql = """INSERT INTO iwrs_inventory + (import_id, study, site, investigator, location, medication_id, + packaged_lot_no, original_expiration_date, expiration_date, received_date, + receipt_user, subject_identifier, quantity_assigned, irt_transaction, + date_assigned, assignment_user, dispensation_status, dispensing_date, + quantity_dispensed, dispensing_user, quantity_returned, date_returned, return_user) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for r in rows: + cursor.execute(sql, ( + import_id, study, r["site"], r["investigator"], r["location"], + r["medication_id"], r["packaged_lot_no"], r["original_expiration_date"], + r["expiration_date"], r["received_date"], r["receipt_user"], + r["subject_identifier"], r["quantity_assigned"], r["irt_transaction"], + r["date_assigned"], r["assignment_user"], r["dispensation_status"], + r["dispensing_date"], r["quantity_dispensed"], r["dispensing_user"], + r["quantity_returned"], r["date_returned"], r["return_user"], + )) + + +def insert_destruction(cursor, study, baskets): + sql = """INSERT IGNORE INTO iwrs_destruction + (study, site_id, investigator, location, basket_id, destruction_date, + medication_description, medication_id, packaged_lot_description, comments) + VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + skipped = imported = 0 + for b in baskets: + if basket_already_imported(cursor, study, b["basket_id"]): + skipped += 1 + continue + for item in b["items"]: + cursor.execute(sql, ( + study, b["site_id"], b["investigator"], b["location"], + b["basket_id"], b["destruction_date"], + item["medication_description"], item["medication_id"], + item["packaged_lot_description"], item["comments"], + )) + imported += 1 + return imported, skipped + + +def import_study(study): + print(f"\n Parsování dat pro {study}...") + shipments = parse_shipments_report(study) + items = parse_shipment_details(study) + inventory = parse_inventory(study) + baskets = parse_destruction_files(study) + print(f" Zásilky: {len(shipments)} | Položky: {len(items)} | Sklad: {len(inventory)} | Destrukce: {len(baskets)} košíků") + + conn = get_conn() + cursor = conn.cursor() + import_id = insert_import(cursor, study, f"drugs_{study}") + print(f" import_id = {import_id}") + insert_shipments(cursor, import_id, study, shipments) + insert_shipment_items(cursor, import_id, study, items) + insert_inventory(cursor, import_id, study, inventory) + dest_imported, dest_skipped = insert_destruction(cursor, study, baskets) + conn.commit() + cursor.close() + conn.close() + print(f" Destrukce: {dest_imported} nových | {dest_skipped} košíků přeskočeno") + + +# ── login ──────────────────────────────────────────────────────────────────── + +def login(page, study): + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator("#login__submit").click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=study).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + + +# ── download funkce ────────────────────────────────────────────────────────── + +def download_inventory(page, study): + out_dir = os.path.join(BASE_DIR, f"xls_reports_{study}") + os.makedirs(out_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/onsite_inventory_detail") + page.wait_for_load_state("networkidle", timeout=120000) + + for site_id in SITES[study]: + print(f" [{site_id}] inventory...") + page.locator('input[placeholder="search"], input[type="text"]').first.click() + page.get_by_role("option", name=site_id).click() + page.wait_for_load_state("networkidle", timeout=120000) + + filename = os.path.join(out_dir, f"onsite_inventory_detail_{site_id}.xlsx") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + print(f" Inventory OK ({len(SITES[study])} center)") + + +def download_destruction(page, study): + out_dir = os.path.join(BASE_DIR, f"xls_ip_destruction_{study}") + os.makedirs(out_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/ip_destruction_form") + page.wait_for_load_state("networkidle", timeout=120000) + + page.locator('input[placeholder="search"], input[type="text"]').first.click() + page.wait_for_timeout(1000) + baskets = [b.strip() for b in page.locator("mat-option").all_inner_texts() + if b.strip() and b.strip() != "No results found"] + page.keyboard.press("Escape") + page.wait_for_timeout(500) + + if not baskets: + print(" Žádné destruction košíky") + return + + new_count = 0 + for basket in baskets: + filename = os.path.join(out_dir, f"ip_destruction_basket_{basket}.xlsx") + if os.path.exists(filename): + continue # destrukce se nemění — přeskočit + print(f" [košík {basket}] stahování...") + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(basket) + page.wait_for_timeout(500) + page.locator("mat-option").first.dispatch_event("click") + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + new_count += 1 + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(f" Destruction OK ({new_count} nových, {len(baskets) - new_count} přeskočeno)") + + +def download_shipments_report(page, study): + out_dir = os.path.join(BASE_DIR, f"xls_shipments_{study}") + os.makedirs(out_dir, exist_ok=True) + + page.goto(f"{BASE_URL}/report/shipments_report") + page.wait_for_load_state("networkidle", timeout=120000) + + filename = os.path.join(out_dir, f"shipments_report_{study}.xlsx") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" Shipments report OK") + + +def download_shipment_details(page, study): + out_dir = os.path.join(BASE_DIR, f"xls_shipment_details_{study}") + os.makedirs(out_dir, exist_ok=True) + + # načti CZ shipment IDs z právě staženého shipments reportu + report_path = os.path.join(BASE_DIR, f"xls_shipments_{study}", f"shipments_report_{study}.xlsx") + raw = pd.read_excel(report_path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Shipment ID" in [str(v).strip() for v in row]: + header_row = i + break + df = pd.read_excel(report_path, header=header_row) + df = df.dropna(how="all") + df = df[df["Location"].astype(str).str.contains("Czech", na=False, case=False)] + cz_shipments = list(zip( + df["Shipment ID"].astype(str).str.strip(), + df["IRT Shipment Status"].astype(str).str.strip() if "IRT Shipment Status" in df.columns else [""] * len(df), + )) + print(f" CZ zásilek ke stažení: {len(cz_shipments)}") + + page.goto(f"{BASE_URL}/report/shipment_details_report") + page.wait_for_load_state("networkidle", timeout=120000) + + skipped = 0 + for shipment, status in cz_shipments: + filename = os.path.join(out_dir, f"shipment_details_{shipment}.xlsx") + if os.path.exists(filename) and status.upper() == "RECEIVED": + skipped += 1 + continue # finální stav, soubor se nemění + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(shipment) + page.wait_for_timeout(500) + page.locator("mat-option").first.dispatch_event("click") + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{shipment}] ({status}) OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(f" Přeskočeno (RECEIVED): {skipped}") + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + os.chdir(BASE_DIR) + + # ── Stahování ──────────────────────────────────────────────────────────── + with sync_playwright() as p: + for study in STUDIES: + print(f"\n{'='*60}") + print(f"[{study}] STAHOVÁNÍ") + print(f"{'='*60}") + + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + try: + print(" Přihlášení...") + login(page, study) + + print("\n [1/4] Onsite inventory...") + download_inventory(page, study) + + print("\n [2/4] IP destruction...") + download_destruction(page, study) + + print("\n [3/4] Shipments report...") + download_shipments_report(page, study) + + print("\n [4/4] Shipment details (CZ)...") + download_shipment_details(page, study) + + except Exception as e: + import traceback + print(f" CHYBA při stahování: {e}") + traceback.print_exc() + finally: + browser.close() + + # ── Import do MySQL ─────────────────────────────────────────────────────── + print(f"\n{'='*60}") + print("IMPORT DO MySQL") + print(f"{'='*60}") + + for study in STUDIES: + print(f"\n[{study}]") + try: + import_study(study) + except Exception as e: + import traceback + print(f" CHYBA při importu: {e}") + traceback.print_exc() + + print(f"\n{'='*60}") + print("Vše hotovo.") + print(f"{'='*60}") + + +main() diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_194.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_194.xlsx new file mode 100644 index 0000000..f7c1e0a Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_194.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_202.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_202.xlsx new file mode 100644 index 0000000..a890c9e Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_202.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_248.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_248.xlsx new file mode 100644 index 0000000..46fad8f Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_248.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_269.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_269.xlsx new file mode 100644 index 0000000..0e590b5 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_269.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_273.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_273.xlsx new file mode 100644 index 0000000..86ffc69 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_273.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_276.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_276.xlsx new file mode 100644 index 0000000..d193ae7 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_276.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_286.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_286.xlsx new file mode 100644 index 0000000..6e29d3a Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_286.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_289.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_289.xlsx new file mode 100644 index 0000000..ce22899 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_289.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_301.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_301.xlsx new file mode 100644 index 0000000..eb84fc5 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_301.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_313.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_313.xlsx new file mode 100644 index 0000000..a855cf2 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_313.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_326.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_326.xlsx new file mode 100644 index 0000000..3397dc6 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_326.xlsx differ diff --git a/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_343.xlsx b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_343.xlsx new file mode 100644 index 0000000..400e438 Binary files /dev/null and b/IWRS/Drugs/xls_ip_destruction_42847922MDD3003/ip_destruction_basket_343.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10002.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10002.xlsx new file mode 100644 index 0000000..b5ab1b6 Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10002.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10004.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10004.xlsx new file mode 100644 index 0000000..afb8652 Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10004.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10005.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10005.xlsx new file mode 100644 index 0000000..6503ae0 Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10005.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10008.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10008.xlsx new file mode 100644 index 0000000..d7d7e99 Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10008.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10011.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10011.xlsx new file mode 100644 index 0000000..8d5b240 Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10011.xlsx differ diff --git a/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10012.xlsx b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10012.xlsx new file mode 100644 index 0000000..0bbf9be Binary files /dev/null and b/IWRS/Drugs/xls_reports_42847922MDD3003/onsite_inventory_detail_S10-CZ10012.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10001.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10001.xlsx new file mode 100644 index 0000000..88d9093 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10001.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10003.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10003.xlsx new file mode 100644 index 0000000..c60b87e Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10003.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10006.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10006.xlsx new file mode 100644 index 0000000..a2412c0 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10006.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10009.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10009.xlsx new file mode 100644 index 0000000..60ca5fe Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10009.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10010.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10010.xlsx new file mode 100644 index 0000000..a4b281a Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10010.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10012.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10012.xlsx new file mode 100644 index 0000000..ab09276 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10012.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10013.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10013.xlsx new file mode 100644 index 0000000..21054f2 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10013.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10015.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10015.xlsx new file mode 100644 index 0000000..2620c1d Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10015.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10016.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10016.xlsx new file mode 100644 index 0000000..9912902 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10016.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10020.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10020.xlsx new file mode 100644 index 0000000..2289574 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10020.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10021.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10021.xlsx new file mode 100644 index 0000000..bf2e694 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10021.xlsx differ diff --git a/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10022.xlsx b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10022.xlsx new file mode 100644 index 0000000..2ac4434 Binary files /dev/null and b/IWRS/Drugs/xls_reports_77242113UCO3001/onsite_inventory_detail_DD5-CZ10022.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100873.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100873.xlsx new file mode 100644 index 0000000..2f7fa54 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100873.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100874.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100874.xlsx new file mode 100644 index 0000000..258c572 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100874.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100880.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100880.xlsx new file mode 100644 index 0000000..5b6ccc1 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100880.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100881.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100881.xlsx new file mode 100644 index 0000000..f02f476 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100881.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100895.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100895.xlsx new file mode 100644 index 0000000..4200081 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100895.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100905.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100905.xlsx new file mode 100644 index 0000000..ef9904d Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100905.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100946.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100946.xlsx new file mode 100644 index 0000000..72d2c9c Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100946.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100971.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100971.xlsx new file mode 100644 index 0000000..0fc1dfe Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100971.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100980.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100980.xlsx new file mode 100644 index 0000000..f18a7c0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100980.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100986.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100986.xlsx new file mode 100644 index 0000000..079ad78 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100986.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100994.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100994.xlsx new file mode 100644 index 0000000..5dfdae7 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_100994.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101085.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101085.xlsx new file mode 100644 index 0000000..8c81ed6 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101085.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101092.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101092.xlsx new file mode 100644 index 0000000..4b516c3 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101092.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101102.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101102.xlsx new file mode 100644 index 0000000..2efc8ec Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101102.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101110.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101110.xlsx new file mode 100644 index 0000000..a534d23 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101110.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101117.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101117.xlsx new file mode 100644 index 0000000..2fd361e Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101117.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101118.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101118.xlsx new file mode 100644 index 0000000..4e2e32a Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101118.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101119.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101119.xlsx new file mode 100644 index 0000000..08d8da7 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101119.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101139.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101139.xlsx new file mode 100644 index 0000000..33bd95c Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101139.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101246.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101246.xlsx new file mode 100644 index 0000000..b6818ac Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101246.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101270.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101270.xlsx new file mode 100644 index 0000000..fa69ca4 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101270.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101274.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101274.xlsx new file mode 100644 index 0000000..96769ef Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101274.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101293.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101293.xlsx new file mode 100644 index 0000000..bd3d5c9 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101293.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101300.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101300.xlsx new file mode 100644 index 0000000..b2b8248 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101300.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101322.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101322.xlsx new file mode 100644 index 0000000..e8823a8 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101322.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101327.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101327.xlsx new file mode 100644 index 0000000..0925291 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101327.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101357.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101357.xlsx new file mode 100644 index 0000000..4884854 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101357.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101378.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101378.xlsx new file mode 100644 index 0000000..94534aa Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101378.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101385.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101385.xlsx new file mode 100644 index 0000000..b16cc01 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101385.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101418.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101418.xlsx new file mode 100644 index 0000000..f67b7f5 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101418.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101444.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101444.xlsx new file mode 100644 index 0000000..8be9ff9 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101444.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101487.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101487.xlsx new file mode 100644 index 0000000..6de6ab8 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101487.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101508.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101508.xlsx new file mode 100644 index 0000000..3218104 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101508.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101524.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101524.xlsx new file mode 100644 index 0000000..90184b7 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101524.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101530.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101530.xlsx new file mode 100644 index 0000000..12f82a0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101530.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101531.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101531.xlsx new file mode 100644 index 0000000..6bda309 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101531.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101555.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101555.xlsx new file mode 100644 index 0000000..35372ba Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101555.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101589.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101589.xlsx new file mode 100644 index 0000000..6949101 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101589.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101662.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101662.xlsx new file mode 100644 index 0000000..b56e198 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101662.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101688.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101688.xlsx new file mode 100644 index 0000000..bc8adc3 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101688.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101700.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101700.xlsx new file mode 100644 index 0000000..c7755da Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101700.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101720.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101720.xlsx new file mode 100644 index 0000000..3162abb Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101720.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101732.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101732.xlsx new file mode 100644 index 0000000..f659594 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101732.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101738.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101738.xlsx new file mode 100644 index 0000000..a3a2165 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101738.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101750.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101750.xlsx new file mode 100644 index 0000000..40a86e9 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101750.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101751.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101751.xlsx new file mode 100644 index 0000000..c968f07 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101751.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101784.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101784.xlsx new file mode 100644 index 0000000..0d0521a Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101784.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101785.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101785.xlsx new file mode 100644 index 0000000..9eb04d1 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101785.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101827.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101827.xlsx new file mode 100644 index 0000000..a173fe5 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101827.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101858.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101858.xlsx new file mode 100644 index 0000000..61d9755 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101858.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101910.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101910.xlsx new file mode 100644 index 0000000..b1fbaf4 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101910.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101919.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101919.xlsx new file mode 100644 index 0000000..b09acd7 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101919.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101925.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101925.xlsx new file mode 100644 index 0000000..063ec16 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101925.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101962.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101962.xlsx new file mode 100644 index 0000000..75ea307 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101962.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101963.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101963.xlsx new file mode 100644 index 0000000..eafb3a0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101963.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101964.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101964.xlsx new file mode 100644 index 0000000..b9982d8 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101964.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101965.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101965.xlsx new file mode 100644 index 0000000..81ad3ae Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101965.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101966.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101966.xlsx new file mode 100644 index 0000000..d59ba91 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101966.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101967.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101967.xlsx new file mode 100644 index 0000000..ac045f4 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_101967.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102071.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102071.xlsx new file mode 100644 index 0000000..46a38d2 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102071.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102075.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102075.xlsx new file mode 100644 index 0000000..394516a Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102075.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102094.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102094.xlsx new file mode 100644 index 0000000..c5cb372 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102094.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102108.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102108.xlsx new file mode 100644 index 0000000..6ad52c0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102108.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102136.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102136.xlsx new file mode 100644 index 0000000..41d1c5f Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102136.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102137.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102137.xlsx new file mode 100644 index 0000000..db40fe0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102137.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102160.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102160.xlsx new file mode 100644 index 0000000..992a07f Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102160.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102193.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102193.xlsx new file mode 100644 index 0000000..93e239a Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102193.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102199.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102199.xlsx new file mode 100644 index 0000000..d233738 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102199.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102247.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102247.xlsx new file mode 100644 index 0000000..3a8f04f Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102247.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102256.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102256.xlsx new file mode 100644 index 0000000..a1e7bd6 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102256.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102275.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102275.xlsx new file mode 100644 index 0000000..ead0f33 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102275.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102295.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102295.xlsx new file mode 100644 index 0000000..baa5a4e Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102295.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102322.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102322.xlsx new file mode 100644 index 0000000..f2a1d6b Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102322.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102341.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102341.xlsx new file mode 100644 index 0000000..71a421f Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102341.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102403.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102403.xlsx new file mode 100644 index 0000000..5c7bddf Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102403.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102418.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102418.xlsx new file mode 100644 index 0000000..ac31e27 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102418.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102439.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102439.xlsx new file mode 100644 index 0000000..dd6627e Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102439.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102455.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102455.xlsx new file mode 100644 index 0000000..db4a44b Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102455.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102497.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102497.xlsx new file mode 100644 index 0000000..08b64b4 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102497.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102538.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102538.xlsx new file mode 100644 index 0000000..61eb222 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102538.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102550.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102550.xlsx new file mode 100644 index 0000000..219c81c Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102550.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102596.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102596.xlsx new file mode 100644 index 0000000..67de467 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102596.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102602.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102602.xlsx new file mode 100644 index 0000000..72dd112 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102602.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102640.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102640.xlsx new file mode 100644 index 0000000..81e9679 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102640.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102641.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102641.xlsx new file mode 100644 index 0000000..2206827 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102641.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100177.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100177.xlsx new file mode 100644 index 0000000..8d40975 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100177.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100222.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100222.xlsx new file mode 100644 index 0000000..e5d0347 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100222.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100354.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100354.xlsx new file mode 100644 index 0000000..f943d52 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100354.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100382.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100382.xlsx new file mode 100644 index 0000000..eaf5976 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100382.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100411.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100411.xlsx new file mode 100644 index 0000000..bb5fa9e Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100411.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100421.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100421.xlsx new file mode 100644 index 0000000..6dc3f08 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100421.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100498.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100498.xlsx new file mode 100644 index 0000000..e16b7ce Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100498.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100510.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100510.xlsx new file mode 100644 index 0000000..36e1676 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100510.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100587.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100587.xlsx new file mode 100644 index 0000000..8b4b60e Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100587.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100593.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100593.xlsx new file mode 100644 index 0000000..b4d740c Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100593.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100616.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100616.xlsx new file mode 100644 index 0000000..557406f Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100616.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100678.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100678.xlsx new file mode 100644 index 0000000..d121f04 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100678.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100717.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100717.xlsx new file mode 100644 index 0000000..97f5958 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100717.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100728.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100728.xlsx new file mode 100644 index 0000000..1100be4 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100728.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100733.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100733.xlsx new file mode 100644 index 0000000..972ff9a Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100733.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100740.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100740.xlsx new file mode 100644 index 0000000..bd3c538 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100740.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100776.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100776.xlsx new file mode 100644 index 0000000..1436168 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100776.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100843.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100843.xlsx new file mode 100644 index 0000000..3841e30 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100843.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100845.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100845.xlsx new file mode 100644 index 0000000..7dd92ad Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100845.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100956.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100956.xlsx new file mode 100644 index 0000000..2a4700c Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100956.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100974.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100974.xlsx new file mode 100644 index 0000000..1d141e0 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100974.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100991.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100991.xlsx new file mode 100644 index 0000000..68a67b5 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_100991.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101039.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101039.xlsx new file mode 100644 index 0000000..0dadc82 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101039.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101060.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101060.xlsx new file mode 100644 index 0000000..32ec8c9 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101060.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101061.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101061.xlsx new file mode 100644 index 0000000..7fb9f95 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101061.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101087.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101087.xlsx new file mode 100644 index 0000000..422a853 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101087.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101104.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101104.xlsx new file mode 100644 index 0000000..3486dfa Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101104.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101132.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101132.xlsx new file mode 100644 index 0000000..30cfcfc Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101132.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101135.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101135.xlsx new file mode 100644 index 0000000..d6847eb Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101135.xlsx differ diff --git a/IWRS/Drugs/xls_shipments_42847922MDD3003/shipments_report_42847922MDD3003.xlsx b/IWRS/Drugs/xls_shipments_42847922MDD3003/shipments_report_42847922MDD3003.xlsx new file mode 100644 index 0000000..db2fe36 Binary files /dev/null and b/IWRS/Drugs/xls_shipments_42847922MDD3003/shipments_report_42847922MDD3003.xlsx differ diff --git a/IWRS/Drugs/xls_shipments_77242113UCO3001/shipments_report_77242113UCO3001.xlsx b/IWRS/Drugs/xls_shipments_77242113UCO3001/shipments_report_77242113UCO3001.xlsx new file mode 100644 index 0000000..25ee5c7 Binary files /dev/null and b/IWRS/Drugs/xls_shipments_77242113UCO3001/shipments_report_77242113UCO3001.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary 1306.xlsx b/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary 1306.xlsx new file mode 100644 index 0000000..8e81c20 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary 1306.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary.xlsx b/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary.xlsx new file mode 100644 index 0000000..6971da4 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-04 42847922MDD3003 Subject Summary.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary 1306.xlsx b/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary 1306.xlsx new file mode 100644 index 0000000..31d24d0 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary 1306.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary.xlsx b/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary.xlsx new file mode 100644 index 0000000..b315716 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-04 77242113UCO3001 Subject Summary.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-12 42847922MDD3003 Subject Summary.xlsx b/IWRS/Patients/CreatedReports/2026-05-12 42847922MDD3003 Subject Summary.xlsx new file mode 100644 index 0000000..d0c6c06 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-12 42847922MDD3003 Subject Summary.xlsx differ diff --git a/IWRS/Patients/CreatedReports/2026-05-12 77242113UCO3001 Subject Summary.xlsx b/IWRS/Patients/CreatedReports/2026-05-12 77242113UCO3001 Subject Summary.xlsx new file mode 100644 index 0000000..430c0e3 Binary files /dev/null and b/IWRS/Patients/CreatedReports/2026-05-12 77242113UCO3001 Subject Summary.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report 1307.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report 1307.xlsx new file mode 100644 index 0000000..db5feb1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report 1307.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..7e090c7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-04 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report 1307.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report 1307.xlsx new file mode 100644 index 0000000..5dc2af9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report 1307.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..4847786 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-04 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-05 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-05 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..c94026f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-05 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-05 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-05 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..1c20d3a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-05 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-12 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-12 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..536ba79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-12 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-12 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-12 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..b42287b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-12 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-14 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-14 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..4ba3697 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-14 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-14 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-14 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..016edb4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-14 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-15 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-15 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..aa16ed7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-15 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-15 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-15 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..6340ce2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-15 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-18 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-18 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..5eb1ea7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-18 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-19 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-19 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..7e5704b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-19 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-19 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-19 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..96828e9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-19 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-20 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-20 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..ff167bb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-20 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-20 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-20 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..83df2d7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-20 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-25 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-25 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..aab65eb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-25 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-25 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-25 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..85ac2b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-25 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-26 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-26 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..a075208 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-26 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-26 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-26 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..16aaba4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-26 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-27 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-27 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..af68942 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-27 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-05-27 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-05-27 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..b9c3f93 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-05-27 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..1822af5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..f2d863a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..4c89bf0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..1dfe6d6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..dc1c704 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..92e87cc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..239501a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..2920a9c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..ff79f79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..08285c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..950cd34 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..fb694d1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..b89ecb8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..b421c1a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..c89a7a3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..edd9ad6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..9ebf643 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..c1f5e68 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..76d1603 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..99a3249 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..13a7bb6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..d331b77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..21a6502 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..18c38a2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..bdfd1ad Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..7206498 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..2427dc5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..050dc3f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..6c2d76b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..b9f8f97 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..d7028d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..be224d9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..f87cb0d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..f658dd7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..3790a7e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..ad507fd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-04 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..d2fe51c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..10b5fb4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..18eade5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..f6d2deb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..4aff8e8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..2dc0c1d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..b3efc6e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..95cadb3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..b0367b0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..5816206 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..7760a55 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..87b322b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..f91dd56 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..84ec2c4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..0257263 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..1227a60 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..c3afc66 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..fba098d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..6cad8c7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..18b354c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..194eddd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..1680be4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..196b498 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..c12f4be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..22bbac6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..9c7d646 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..e7d8ec7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..5ca998d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..2da6db7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..9d0403a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..73131a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..1538b8c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..50a2837 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..4e6bcea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..a66269f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..c8fcf4d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..e2151e6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..51a8c77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..8747196 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..3899aae Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..d961dd9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..0f2d117 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..82d1894 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..81e1341 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..3ad2451 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..01274f7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..6efacbe Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..d85ec12 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..bf48ee2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..782cba1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..acf3afc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..afe15d2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..b8b7e84 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..2d46223 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..6c3cee0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..6766104 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..d8b8939 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..19d47d6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..51df082 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..b893cca Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..c3d16fa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..99ecaa5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..0b5552d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..b12f8fa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..7ceb39f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..d7a1e44 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..19822ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..36eb9b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..11c7e61 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..757bbb7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..8082fce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..a21c7bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-12 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..2bc8e49 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..6dcb886 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..d77265a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..77938e2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..8b912a7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..a8806e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..129d0b4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..10dc6f9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..44718b9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..a5eb500 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..f5215cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..ce5b001 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..ce54e7a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..b1ec136 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..9f9341b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..b61773a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..a1f87ce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..999f26c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..c771bee Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..a76d07d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..666605f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..ffa36c8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..dd69d9e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..45fe71c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..ae0af82 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..e2f2515 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..29729ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..df2d2da Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..9642151 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..e80a409 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..48fe086 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..3edbb27 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..80608ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..9fe0d21 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..a0e6dce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..97ba24b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-14 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..f5af950 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..e049bc4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..4e67484 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..d24c0b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..6694eed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..dfde63e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..a6e7885 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..d881c18 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..5288526 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..b8b489a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..5b9b289 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..15aaa4d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..f303559 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..244ded8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..f49ac83 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..8f18034 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..f59413a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..ba8d055 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..0875569 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..a5643d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..9de992d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..fa0f83e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..0292886 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..5366170 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..6051446 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..2972925 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..d5e93ec Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..b53ee8a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..cd65e30 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..06527e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..8f2adf5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..a6cf8f8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..2694a22 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..2c420f1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..e61fd5a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..c53f0e1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..367e232 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..d4beb83 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..3b12c20 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..716bde2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..5876ac2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..1d3ec0c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..e1ba8e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..be11e91 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..f12f4dc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..fee316e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..765286f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..87c3933 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..b4366d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..81e02be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..b968f8f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..c5083d5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..d5db635 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..6a98919 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..f70aa14 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..93a88e1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..d7c0d33 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..d3ca243 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..4385644 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..be8ebd8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..6e09d91 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..7887594 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..8fd72c4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..872b2df Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..a2d48fb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..e327ace Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..2f3a9f1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..8c619af Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..506ad9f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..79df035 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..f2fae2f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..327ddd3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-18 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..6b0aa2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..034648c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..4a8589d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..89a573b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..e3c9c86 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..6f7769b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..23c9e4c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..396a25f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..71b4116 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..9d5a16f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..d9fd239 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..e4efdab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..c042f43 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..d943561 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..135bbe2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..c42fc4a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..fefc1ea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..d9bc4ac Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..1145621 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..4784a5d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..35e386f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..cf0627a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..3937f19 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..f455d78 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..ff37dce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..900e964 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..711090f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..623cfce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..7f13ca9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..dd1d3c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..79338a0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..bb97801 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..6639ef9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..183b933 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..6f82aa4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..e025c8b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-19 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..080cc69 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..a108e44 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..e33c292 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..ed4ff35 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..317f86a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..e619896 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..4a6344f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..b9b9e75 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..6e2b2d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..7765c0c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..17d3691 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..8f0225b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..a96018e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..c6aff6a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..9f9f454 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..e10fb08 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..62d5d65 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..40ec666 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..94a9bb8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..bcef140 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..c223860 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..7807fac Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..9f28e4d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..59e6c7c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..7f3c6a9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..f9c4354 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..698ee69 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..0d55b64 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..70bf89a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..4a35485 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..bb01cf8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..014d538 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..0208060 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..98559cf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..018be87 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..8d78fb6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-20 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..359bf15 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..2ebe688 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..04d59d6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..e6e87cf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..dc03177 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..d26465e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..71b4844 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..83479e6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..3368d82 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..deb97a9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..05dd657 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..5aac441 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..f576127 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..d2bba47 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..a2235c9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..38e2073 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..e1c027b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..5fd75e0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..6f9225a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..0bc7325 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..7305d16 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..350d1d7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..c914db4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..73f27e1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..63c250e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..9aebe68 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..23191e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..06518b4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..2096497 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..b9273e3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..c3b72aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..5e95858 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..746ad8d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..6dbb5b7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..62a919f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..eb107e9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-25 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..36cf716 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..07846db Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..2a2b715 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..c5b2334 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..0931177 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..e61588d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..ba0e4a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..c8ebb31 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..f4ee48a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..6a13c91 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..6132b88 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..de4f1b1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..1884c70 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..3ad8130 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..0ccd6a9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..31e9cd1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..271a761 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..42666f7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..2041169 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..6338322 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..09ec0df Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..62b3a2b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..695ddae Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..6c13fb1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..f775b3e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..6b82fc6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..b7ae4be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..23fdc3d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..587eb16 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..2bf3bba Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..b469597 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..df92cab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..3f78b61 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..0c8ba57 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..b9f8eff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..2a39f18 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..e6bcdcd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..4cc1d16 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..a297384 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..d6f609d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..dd9c118 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..c725564 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..bdaf5d5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..e7afea1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..a94d4d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..979a7c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..9e1a0cc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..a9bbb22 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..16e5980 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..ff93a09 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..9b192ed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..ea55205 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..0fe27db Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..3551d45 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..d0ccab2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..3fb94bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..b894d38 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..6b60390 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..6399967 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..762dfd4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..dc6292f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..4ae44a7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..c4464a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..977c38c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..7101cdc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..d1346e9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..9e9a138 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..f32e347 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..dd7fc66 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..b8af579 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..d9e817e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..5069610 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..83a9b42 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..8db6fad Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..1ffe97f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..d761fff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..05420ba Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..9246f95 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..116a889 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..3091469 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..2928cf3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..1b973d1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..a0fe8e7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..9febb21 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..d78e4e8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..74e4004 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..599ddc7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..0e2259b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..d0a02db Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..0fea67a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-04 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..ca8d455 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..5256eaf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..cdc8d5d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..7d17beb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..ad22710 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..dd05f2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..11887f9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..0d598e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..4fb1dbc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..a1cd188 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..d051957 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..49d8732 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..eb674ea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..743951d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..6223900 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..df1b225 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..7571aaa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..23f7465 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-05 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..2ac2514 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..e4ccb2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..ee3fd7b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..7180562 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..79f00d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..b1de3a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..326e92a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..8cc785a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..6e678e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..362a3dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..345ea26 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..ddc66fc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..b30351e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..946f2b0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..9d8f993 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..5a888a7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..1566e7b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..2b8d2cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..3295f0c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-12 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..779d1a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..92bb29b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..09ae9b6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..816f000 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..a1cb76b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..ba9d896 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..2ff709e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..ba9442d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..71afbeb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..5feca65 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..134acde Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..beafca2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..3bb1cd9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..8ef64ce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..42ea559 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..ea0fd23 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..e9d9ce3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..1c5c28a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..13b6d20 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..3bdd55a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-14 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..647061b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..70d0920 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..fedc416 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..13ef232 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..b605f2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..2855083 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..68374b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..83270d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..3edd1c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..d02ab0a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..c739866 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..ef8f2ea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..52da2ea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..a024dd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..6523d6d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..8e58ab4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..cdc1af8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..e6be231 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..7aa0748 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..62e06aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-15 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..b3c0700 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..a586167 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..0b1b2e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..bcfa3a3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..0119408 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..ec6b70b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..177b5aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..6f4cbdb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..dfd997d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..c19a284 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..3bbbbbf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..d463ec2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..c789cc5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..fafe6fd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..c1e18db Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..e6e6767 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..dfc1dee Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..3ff570b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..8335916 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..a8ebc2a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-19 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..d9b0a4a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..d270523 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..9fdb118 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..cf01c45 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..673cb38 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..a132770 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..b852d2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..b32f53c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..1b584de Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..7fd6f83 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..051e211 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..f5f504c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..87f4de9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..15231a7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..b837bab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..4eaf3c8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..17141ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..a1448de Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..780735e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..be64ccd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-20 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..2e78cfb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..c3283cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..ea00c10 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..1dc1cb0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..08ec9b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..4ba211a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..7f3b41e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..ae0d1f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..208264c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..c7f286d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..314fdbb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..1876a41 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..4ade7b5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..667ae43 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..81348f0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..e807437 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..f6abb1b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..cc378c5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..6abba0c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..00eb9d8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-25 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..4ea9fdf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..33961ed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..47859f6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..21e2761 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..691b016 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..72fa35d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..2602d8c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..1e2d2fd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..c0aa3d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..48e9c48 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..688704e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..4c89046 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..9abf785 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..0f03333 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..b93e15a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..dc41883 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..4284054 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..b5d042d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..e16cdb2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..6c3b401 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-26 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..c96f8bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..0fe72b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..edfba91 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..8f50f24 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..22c9241 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..9dd8ba8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..6dcef54 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..3e07ccb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..78e54f9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..d84b784 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..1a944d2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..aa94eea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..4c0da30 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..bd80ae6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..24af851 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..d881800 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..80fe174 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..cc5cc71 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..35bc4ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..e8b7371 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/create_iwrs_tables.sql b/IWRS/Patients/create_iwrs_tables.sql new file mode 100644 index 0000000..b20e6c0 --- /dev/null +++ b/IWRS/Patients/create_iwrs_tables.sql @@ -0,0 +1,110 @@ +-- IWRS tabulky pro databázi studie +-- Spustit jednou: mysql -h 192.168.1.76 -u root -p studie < create_iwrs_tables.sql + +USE studie; + +-- ── Import log ─────────────────────────────────────────────────────────────── +CREATE TABLE IF NOT EXISTS iwrs_import ( + import_id INT AUTO_INCREMENT PRIMARY KEY, + study VARCHAR(20) NOT NULL, + imported_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + source_file VARCHAR(500) NOT NULL, + INDEX idx_study (study) +); + +-- ── UCO3001 subject summary ─────────────────────────────────────────────────── +CREATE TABLE IF NOT EXISTS iwrs_uco3001_subject_summary ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + subject VARCHAR(20) NOT NULL, + prior_subject_identifier VARCHAR(20), + site VARCHAR(50), + investigator VARCHAR(100), + location VARCHAR(50), + cohort_per_irt VARCHAR(100), + informed_consent_date DATE, + adolescent_assent_date DATE, + age SMALLINT, + weight DECIMAL(5,1), + rescreened_subject VARCHAR(10), + adt_ir VARCHAR(10), + three_or_more_advanced_therapies VARCHAR(10), + only_oral_5asa_compounds VARCHAR(10), + ustekinumab VARCHAR(10), + isolated_proctitis VARCHAR(10), + clinical_responder_status_i12_m0 VARCHAR(100), + irt_subject_status VARCHAR(50), + i0_rand_date_local DATE, + last_irt_transaction VARCHAR(100), + last_irt_transaction_date_local DATE, + last_irt_transaction_date_utc DATE, + next_irt_transaction VARCHAR(100), + next_irt_transaction_date_local DATE, + most_recent_med_assignment_date DATE, + days_since_last_med_assignment SMALLINT, + patient_forecast_status VARCHAR(50), + patient_forecast_status_changed_date DATE, + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_subject (subject) +); + +-- ── MDD3003 subject summary ─────────────────────────────────────────────────── +CREATE TABLE IF NOT EXISTS iwrs_mdd3003_subject_summary ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + subject VARCHAR(20) NOT NULL, + prior_subject_identifier VARCHAR(20), + site VARCHAR(50), + investigator VARCHAR(100), + location VARCHAR(50), + cohort_per_irt VARCHAR(50), + madrs_criteria_integrated VARCHAR(50), + informed_consent_date DATE, + age SMALLINT, + madrs_criteria_v15 VARCHAR(10), + madrs_criteria_v16 VARCHAR(10), + madrs_criteria_v17 VARCHAR(10), + stratification_country VARCHAR(10), + age_group VARCHAR(20), + stable_remitters VARCHAR(50), + irt_subject_status VARCHAR(100), + last_irt_transaction VARCHAR(100), + last_irt_transaction_date_local DATE, + last_irt_transaction_date_utc DATE, + next_irt_transaction VARCHAR(100), + next_irt_transaction_date_local DATE, + date_screened DATE, + date_screen_failed DATE, + date_randomized_part1 DATE, + date_early_withdraw_randomized_part1 DATE, + date_open_label_induction DATE, + date_early_withdraw_open_label_induction DATE, + date_randomized_part2 DATE, + date_early_withdraw_randomized_part2 DATE, + date_completed DATE, + date_unblinded DATE, + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_subject (subject) +); + +-- ── Subject visits / transactions (obě studie) ─────────────────────────────── +CREATE TABLE IF NOT EXISTS iwrs_subject_visits ( + id INT AUTO_INCREMENT PRIMARY KEY, + import_id INT NOT NULL, + study VARCHAR(20) NOT NULL, + subject VARCHAR(20) NOT NULL, + visit_type ENUM('Past','Upcoming') NOT NULL, + scheduled_date DATE, + window_days VARCHAR(20), + actual_date DATE, + irt_transaction_no SMALLINT, + irt_transaction_description VARCHAR(200), + medication_assignment VARCHAR(200), + quantity_assigned SMALLINT, + medication_id VARCHAR(20), + FOREIGN KEY (import_id) REFERENCES iwrs_import(import_id), + INDEX idx_import (import_id), + INDEX idx_study_subject (study, subject) +); diff --git a/IWRS/Patients/create_subject_report.py b/IWRS/Patients/create_subject_report.py new file mode 100644 index 0000000..2b5af71 --- /dev/null +++ b/IWRS/Patients/create_subject_report.py @@ -0,0 +1,310 @@ +import os +import glob +import datetime +import pandas as pd +from openpyxl import Workbook +from openpyxl.styles import ( + Font, PatternFill, Alignment, Border, Side, GradientFill +) +from openpyxl.utils import get_column_letter + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INCOMING_DIR = os.path.join(BASE_DIR, "IncomingSourceReports") +CREATED_DIR = os.path.join(BASE_DIR, "CreatedReports") + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +SOURCE_COLS = [ + "Subject", + "Investigator", + "Subject's age collection", + "Cohort per IRT", + "IRT Subject Status", + "Last Recorded IRT Transaction", + "Next Expected IRT Transaction", + "Next Expected IRT Transaction Date [Local]", +] + +DISPLAY_HEADERS = [ + "Subject", + "Investigator", + "Věk", + "Cohort", + "Status", + "Last IRT", + "Next Visit", + "Next Date", +] + +COL_WIDTHS = [14, 22, 6, 12, 14, 12, 12, 13] + +# ── Styles ─────────────────────────────────────────────────────────────────── +HEADER_FILL = PatternFill("solid", fgColor="1F4E79") +HEADER_FONT = Font(name="Arial", bold=True, color="FFFFFF", size=10) +NORMAL_FONT = Font(name="Arial", size=10) +BOLD_FONT = Font(name="Arial", bold=True, size=10) +STRIKE_FONT = Font(name="Arial", size=10, strike=True, color="999999") +ADOLESC_FONT = Font(name="Arial", bold=True, size=10) + +THIN = Side(style="thin", color="CCCCCC") +BORDER = Border(left=THIN, right=THIN, top=THIN, bottom=THIN) + +EVEN_FILL = PatternFill("solid", fgColor="EBF3FB") +ODD_FILL = PatternFill("solid", fgColor="FFFFFF") + +CENTER = Alignment(horizontal="center", vertical="center", wrap_text=False) +LEFT = Alignment(horizontal="left", vertical="center", wrap_text=False) + + +def unique_path(directory, stem): + path = os.path.join(directory, f"{stem}.xlsx") + if not os.path.exists(path): + return path + time_tag = datetime.datetime.now().strftime("%H%M") + return os.path.join(directory, f"{stem} {time_tag}.xlsx") + + +def find_latest_source(study): + pattern = os.path.join(INCOMING_DIR, f"* {study} Subject Summary Report.xlsx") + files = sorted( + [f for f in glob.glob(pattern) if not os.path.basename(f).startswith("~$")], + key=os.path.getmtime, + reverse=True, + ) + if not files: + raise FileNotFoundError(f"Nenalezen zdrojový soubor pro {study} v {INCOMING_DIR}") + return files[0] + + +def load_source(path): + raw = pd.read_excel(path, header=None) + # find header row (row with "Subject" in first cell) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError("Hlavičkový řádek nenalezen") + df = pd.read_excel(path, header=header_row) + return df + + +def simplify_cohort(val): + if pd.isna(val): + return "" + val = str(val) + if "dolescent" in val: + return "Adolescent" + if val.startswith("Adult"): + return "Adult" + # MDD3003: "Part 1", "Part 2" — keep as-is + return val + + +def format_date(val): + if pd.isna(val): + return "" + if hasattr(val, "strftime"): + return val.strftime("%Y-%m-%d") + return str(val)[:10] + + +def write_zdroj(wb, df_raw, source_path): + mtime = datetime.datetime.fromtimestamp(os.path.getmtime(source_path)) + sheet_name = f"ZDROJ ({mtime.strftime('%d%b%Y').upper()})" + ws = wb.create_sheet(sheet_name) + ws.sheet_view.showGridLines = True + + # write raw headers + data as plain table + headers = list(df_raw.columns) + for c, h in enumerate(headers, 1): + cell = ws.cell(row=1, column=c, value=h) + cell.font = Font(name="Arial", bold=True, size=9, color="FFFFFF") + cell.fill = PatternFill("solid", fgColor="404040") + cell.alignment = LEFT + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = 20 + + for r, (_, row) in enumerate(df_raw.iterrows(), 2): + fill = EVEN_FILL if r % 2 == 0 else ODD_FILL + for c, col in enumerate(headers, 1): + val = row[col] + if pd.isna(val): + val = "" + elif hasattr(val, "strftime"): + val = val.strftime("%Y-%m-%d") + cell = ws.cell(row=r, column=c, value=val) + cell.font = Font(name="Arial", size=9) + cell.fill = fill + cell.border = BORDER + cell.alignment = LEFT + + ws.freeze_panes = "A2" + ws.auto_filter.ref = f"A1:{get_column_letter(len(headers))}1" + + +def write_prehled(wb, df_raw, study): + ws = wb.create_sheet("Přehled") + ws.sheet_view.showGridLines = False + ws.sheet_view.showRowColHeaders = True + + # ── title row ──────────────────────────────────────────────────────────── + ws.merge_cells("A1:H1") + title = ws["A1"] + title.value = f"Subject Summary — {study} ({datetime.date.today().strftime('%d-%b-%Y')})" + title.font = Font(name="Arial", bold=True, size=12, color="1F4E79") + title.alignment = Alignment(horizontal="left", vertical="center") + ws.row_dimensions[1].height = 22 + + # ── header row ─────────────────────────────────────────────────────────── + for c, (h, w) in enumerate(zip(DISPLAY_HEADERS, COL_WIDTHS), 1): + cell = ws.cell(row=2, column=c, value=h) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = CENTER + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = w + ws.row_dimensions[2].height = 18 + + # ── build display dataframe ─────────────────────────────────────────────── + display = pd.DataFrame() + display["Subject"] = df_raw["Subject"].fillna("") + display["Investigator"]= df_raw["Investigator"].fillna("") + display["Věk"] = df_raw["Subject's age collection"].apply( + lambda v: "" if pd.isna(v) else int(v)) + display["Cohort"] = df_raw["Cohort per IRT"].apply(simplify_cohort) + display["Status"] = df_raw["IRT Subject Status"].fillna("") + display["Last IRT"] = df_raw["Last Recorded IRT Transaction"].fillna("—") + display["Next Visit"] = df_raw["Next Expected IRT Transaction"].fillna("—") + display["Next Date"] = df_raw["Next Expected IRT Transaction Date [Local]"].apply(format_date) + + display = display.sort_values("Subject").reset_index(drop=True) + + # ── data rows ──────────────────────────────────────────────────────────── + for r_idx, row in display.iterrows(): + excel_row = r_idx + 3 # row 1=title, row 2=header + status = str(row["Status"]) + is_failed = "Screen Failed" in status or "Discontinued" in status + is_randomized = "Randomized" in status + is_adolescent = row["Cohort"] == "Adolescent" + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + + values = [ + row["Subject"], row["Investigator"], row["Věk"], + row["Cohort"], row["Status"], row["Last IRT"], + row["Next Visit"], row["Next Date"], + ] + + for c_idx, val in enumerate(values, 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val if val != "" else None) + cell.fill = fill + cell.border = BORDER + + # alignment + cell.alignment = CENTER if c_idx in (3,) else LEFT + + # font logic + if is_failed: + cell.font = STRIKE_FONT + elif c_idx == 5 and is_randomized: + cell.font = BOLD_FONT + elif c_idx == 4 and is_adolescent: + cell.font = ADOLESC_FONT + else: + cell.font = NORMAL_FONT + + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + last_data_row = len(display) + 2 + ws.auto_filter.ref = f"A2:H{last_data_row}" + + +def write_next_visits(wb, df_raw, study): + ws = wb.create_sheet("Next Visits") + ws.sheet_view.showGridLines = False + + # title + ws.merge_cells("A1:D1") + title = ws["A1"] + title.value = f"Next Expected Visits — {study} ({datetime.date.today().strftime('%d-%b-%Y')})" + title.font = Font(name="Arial", bold=True, size=12, color="1F4E79") + title.alignment = Alignment(horizontal="left", vertical="center") + ws.row_dimensions[1].height = 22 + + # headers + nv_headers = ["Subject", "Investigator", "Next Visit", "Datum"] + nv_widths = [14, 22, 26, 13] + for c, (h, w) in enumerate(zip(nv_headers, nv_widths), 1): + cell = ws.cell(row=2, column=c, value=h) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = CENTER + cell.border = BORDER + ws.column_dimensions[get_column_letter(c)].width = w + ws.row_dimensions[2].height = 18 + + # data — only rows with a Next Date, exclude Screen Failed / Discontinued + df = pd.DataFrame() + df["Subject"] = df_raw["Subject"].fillna("") + df["Investigator"]= df_raw["Investigator"].fillna("") + df["Next Visit"] = df_raw["Next Expected IRT Transaction"].fillna("") + df["Datum"] = df_raw["Next Expected IRT Transaction Date [Local]"] + df["Status"] = df_raw["IRT Subject Status"].fillna("") + + df = df[df["Datum"].notna()] + df = df[~df["Status"].str.contains("Screen Failed|Discontinued", na=False)] + df = df.sort_values("Datum").reset_index(drop=True) + + for r_idx, row in df.iterrows(): + excel_row = r_idx + 3 + fill = EVEN_FILL if r_idx % 2 == 0 else ODD_FILL + datum_val = row["Datum"] + datum_str = datum_val.strftime("%Y-%m-%d") if hasattr(datum_val, "strftime") else str(datum_val)[:10] + + values = [row["Subject"], row["Investigator"], row["Next Visit"], datum_str] + for c_idx, val in enumerate(values, 1): + cell = ws.cell(row=excel_row, column=c_idx, value=val if val != "" else None) + cell.fill = fill + cell.border = BORDER + cell.font = NORMAL_FONT + cell.alignment = LEFT + ws.row_dimensions[excel_row].height = 16 + + ws.freeze_panes = "A3" + last_data_row = len(df) + 2 + ws.auto_filter.ref = f"A2:D{last_data_row}" + + +def create_report(study): + source_path = find_latest_source(study) + print(f"[{study}] Čtu: {os.path.basename(source_path)}") + + df_raw = load_source(source_path) + + wb = Workbook() + wb.remove(wb.active) # remove default sheet + + write_prehled(wb, df_raw, study) + write_next_visits(wb, df_raw, study) + write_zdroj(wb, df_raw, source_path) + + today = datetime.date.today().strftime("%Y-%m-%d") + out_path = unique_path(CREATED_DIR, f"{today} {study} Subject Summary") + wb.save(out_path) + print(f"[{study}] Uloženo: {out_path}") + return out_path + + +def main(): + os.makedirs(CREATED_DIR, exist_ok=True) + for study in STUDIES: + try: + create_report(study) + except FileNotFoundError as e: + print(f"[{study}] PŘESKOČENO: {e}") + print("\nHotovo.") + + +main() diff --git a/IWRS/Patients/db_config.py b/IWRS/Patients/db_config.py new file mode 100644 index 0000000..bfa5959 --- /dev/null +++ b/IWRS/Patients/db_config.py @@ -0,0 +1,5 @@ +DB_HOST = "192.168.1.76" +DB_PORT = 3306 +DB_USER = "root" +DB_PASSWORD = "Vlado9674+" +DB_NAME = "studie" diff --git a/IWRS/Patients/download_subject_details.py b/IWRS/Patients/download_subject_details.py new file mode 100644 index 0000000..2080a6e --- /dev/null +++ b/IWRS/Patients/download_subject_details.py @@ -0,0 +1,114 @@ +from playwright.sync_api import sync_playwright +import os +import glob +import datetime + +import pandas as pd + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INCOMING_DIR = os.path.join(BASE_DIR, "IncomingSourceReports") +DETAILS_DIR = os.path.join(BASE_DIR, "IncomingSourceReportsDetails") +# ──────────────────────────────────────────────────────────────────────────── + + +def get_subjects(study): + pattern = os.path.join(INCOMING_DIR, f"* {study} Subject Summary Report.xlsx") + files = sorted( + [f for f in glob.glob(pattern) if not os.path.basename(f).startswith("~$")], + key=os.path.getmtime, + reverse=True, + ) + if not files: + raise FileNotFoundError(f"Nenalezen Subject Summary Report pro {study}") + today = datetime.date.today().strftime("%Y-%m-%d") + if not os.path.basename(files[0]).startswith(today): + raise FileNotFoundError(f"Dnešní Subject Summary Report pro {study} neexistuje — spusť nejdříve download_subject_summary.py") + path = files[0] + print(f" Čtu subjekty z: {os.path.basename(path)}") + + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError("Hlavičkový řádek nenalezen") + + df = pd.read_excel(path, header=header_row) + subjects = df["Subject"].dropna().astype(str).str.strip().tolist() + return subjects + + +def run(page, study): + out_dir = os.path.join(DETAILS_DIR, study) + os.makedirs(out_dir, exist_ok=True) + + subjects = get_subjects(study) + print(f" Nalezeno {len(subjects)} subjektů") + today = datetime.date.today().strftime("%Y-%m-%d") + + page.goto(f"{BASE_URL}/report/patient_detail_report") + page.wait_for_load_state("networkidle", timeout=120000) + + for subject in subjects: + filename = os.path.join(out_dir, f"{today} {study} {subject} Subject Detail.xlsx") + print(f" [{subject}] Stahuji...") + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(subject) + page.wait_for_timeout(500) + page.locator("mat-option").first.dispatch_event("click") + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{subject}] OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + print(f" [{study}] Subject details hotovo.") + + +def main(): + os.makedirs(DETAILS_DIR, exist_ok=True) + + with sync_playwright() as p: + for study in STUDIES: + print(f"\n[{study}] Přihlášení...") + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator("#login__submit").click() + page.wait_for_load_state("networkidle") + + page.get_by_label("Study *").click() + page.get_by_role("option", name=study).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + + try: + run(page, study) + except Exception as e: + print(f" [{study}] CHYBA: {e}") + + browser.close() + + print("\nVše hotovo.") + + +main() diff --git a/IWRS/Patients/download_subject_summary.py b/IWRS/Patients/download_subject_summary.py new file mode 100644 index 0000000..517f2bc --- /dev/null +++ b/IWRS/Patients/download_subject_summary.py @@ -0,0 +1,76 @@ +from playwright.sync_api import sync_playwright +import os +import datetime + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INCOMING_DIR = os.path.join(BASE_DIR, "IncomingSourceReports") +CREATED_DIR = os.path.join(BASE_DIR, "CreatedReports") +# ──────────────────────────────────────────────────────────────────────────── + + +def unique_path(directory, stem): + path = os.path.join(directory, f"{stem}.xlsx") + if not os.path.exists(path): + return path + time_tag = datetime.datetime.now().strftime("%H%M") + return os.path.join(directory, f"{stem} {time_tag}.xlsx") + + +def download_study(page, study, today): + print(f"\n[{study}] Prihlaseni...") + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator("#login__submit").click() + page.wait_for_load_state("networkidle") + + print(f"[{study}] Vyber studie...") + page.get_by_label("Study *").click() + page.get_by_role("option", name=study).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + + print(f"[{study}] Stahuji Subject Summary Report...") + page.goto(f"{BASE_URL}/report/patient_summary_report") + page.wait_for_load_state("networkidle", timeout=120000) + + filename = unique_path(INCOMING_DIR, f"{today} {study} Subject Summary Report") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f"[{study}] OK -> {filename}") + return filename + + +def main(): + today = datetime.date.today().strftime("%Y-%m-%d") + os.makedirs(INCOMING_DIR, exist_ok=True) + os.makedirs(CREATED_DIR, exist_ok=True) + + downloaded = [] + + with sync_playwright() as p: + for study in STUDIES: + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + filename = download_study(page, study, today) + downloaded.append((study, filename)) + + browser.close() + + print("\nVse stazeno:") + for study, path in downloaded: + print(f" {study}: {path}") + + +main() diff --git a/IWRS/Patients/import_to_mysql.py b/IWRS/Patients/import_to_mysql.py new file mode 100644 index 0000000..f8552dd --- /dev/null +++ b/IWRS/Patients/import_to_mysql.py @@ -0,0 +1,377 @@ +""" +Importuje data z IWRS Excel reportů do MySQL (databáze studie). + +Pořadí spuštění: + 1. download_subject_summary.py + 2. download_subject_details.py + 3. tento skript + +Každé spuštění vytvoří nový import_id v iwrs_import. +Reportovací skripty pracují vždy s MAX(import_id) pro danou studii. +""" + +import os +import glob +import datetime +import re + +import numpy as np +import pandas as pd +import mysql.connector + +import db_config + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INCOMING_DIR = os.path.join(BASE_DIR, "IncomingSourceReports") +DETAILS_DIR = os.path.join(BASE_DIR, "IncomingSourceReportsDetails") + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + + +# ── helpers ────────────────────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, + port=db_config.DB_PORT, + user=db_config.DB_USER, + password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def _py(val): + """Převede numpy skalár na Python nativní typ.""" + if isinstance(val, np.generic): + return val.item() + return val + + +def to_date(val): + """Převede pandas Timestamp / string / NaT / NaN na date nebo None.""" + val = _py(val) + if val is None or (isinstance(val, float) and (val != val)): # NaN check + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%Y-%m-%d", "%d-%b-%Y", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) # v != v je True jen pro NaN + except (TypeError, ValueError): + return None + + +def to_float(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else float(v) + except (TypeError, ValueError): + return None + + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): # NaN + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + + +def find_summary_file(study): + today = datetime.date.today().strftime("%Y-%m-%d") + pattern = os.path.join(INCOMING_DIR, f"* {study} Subject Summary Report.xlsx") + files = sorted( + [f for f in glob.glob(pattern) if not os.path.basename(f).startswith("~$")], + key=os.path.getmtime, + reverse=True, + ) + if not files: + raise FileNotFoundError(f"Nenalezen Subject Summary Report pro {study}") + if not os.path.basename(files[0]).startswith(today): + print(f" UPOZORNĚNÍ: nejnovější Summary Report pro {study} není z dnešního dne ({os.path.basename(files[0])[:10]})") + return files[0] + + +def read_summary_df(path): + """Přečte Summary xlsx, vrátí DataFrame od řádku s hlavičkou.""" + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError(f"Hlavičkový řádek nenalezen v {path}") + return pd.read_excel(path, header=header_row) + + +def find_detail_files(study): + out_dir = os.path.join(DETAILS_DIR, study) + # Vezme soubory ze stejného dne jako nejnovější Summary Report + summary_path = find_summary_file(study) + file_date = os.path.basename(summary_path)[:10] # "YYYY-MM-DD" + pattern = os.path.join(out_dir, f"{file_date} {study} * Subject Detail.xlsx") + files = [f for f in glob.glob(pattern) if not os.path.basename(f).startswith("~$")] + return sorted(files) + + +def parse_detail_visits(path): + """ + Vrátí list slovníků s daty visitů z Detail xlsx. + Každý řádek tabulky (od řádku s hlavičkou Visit Type) je jedna transakce. + """ + df = pd.read_excel(path, sheet_name="patient_detail_report", header=None) + + header_row = None + for i, row in df.iterrows(): + if "Visit Type" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + + visits_df = df.iloc[header_row + 1:].copy() + visits_df.columns = range(visits_df.shape[1]) + + rows = [] + for _, r in visits_df.iterrows(): + visit_type = to_str(r.get(0)) + if visit_type not in ("Past", "Upcoming"): + continue + rows.append({ + "visit_type": visit_type, + "scheduled_date": to_date(r.get(1)), + "window_days": to_str(r.get(2)), + "actual_date": to_date(r.get(3)), + "irt_transaction_no": to_int(r.get(4)), + "irt_transaction_description": to_str(r.get(5)), + "medication_assignment": to_str(r.get(6)), + "quantity_assigned": to_int(r.get(7)), + "medication_id": to_str(r.get(8)), + }) + return rows + + +# ── insert helpers ──────────────────────────────────────────────────────────── + +def insert_import(cursor, study, source_file): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file) VALUES (%s, %s, %s)", + (study, datetime.datetime.now(), os.path.basename(source_file)), + ) + return cursor.lastrowid + + +def insert_uco3001_summary(cursor, import_id, df): + sql = """ + INSERT INTO iwrs_uco3001_subject_summary ( + import_id, subject, prior_subject_identifier, site, investigator, location, + cohort_per_irt, informed_consent_date, adolescent_assent_date, age, weight, + rescreened_subject, adt_ir, three_or_more_advanced_therapies, + only_oral_5asa_compounds, ustekinumab, isolated_proctitis, + clinical_responder_status_i12_m0, irt_subject_status, + i0_rand_date_local, last_irt_transaction, + last_irt_transaction_date_local, last_irt_transaction_date_utc, + next_irt_transaction, next_irt_transaction_date_local, + most_recent_med_assignment_date, days_since_last_med_assignment, + patient_forecast_status, patient_forecast_status_changed_date + ) VALUES ( + %s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s + ) + """ + col = df.columns.tolist() + + def c(name): + return col.index(name) if name in col else None + + for _, r in df.iterrows(): + cursor.execute(sql, ( + import_id, + to_str(r["Subject"]), + to_str(r["Prior Subject Identifier"]) if "Prior Subject Identifier" in col else None, + to_str(r["Site"]), + to_str(r["Investigator"]), + to_str(r["Location"]), + to_str(r["Cohort per IRT"]), + to_date(r["Informed Consent Date"]), + to_date(r["Adolescent Assent Date"]) if "Adolescent Assent Date" in col else None, + to_int(r["Subject's age collection"]), + to_float(r["Subject's weight collection"]) if "Subject's weight collection" in col else None, + to_str(r["Rescreened Subject"]) if "Rescreened Subject" in col else None, + to_str(r["ADT-IR"]) if "ADT-IR" in col else None, + to_str(r["3 or More Advanced Therapies"]) if "3 or More Advanced Therapies" in col else None, + to_str(r["Only Oral 5-ASA Compounds"]) if "Only Oral 5-ASA Compounds" in col else None, + to_str(r["Ustekinumab"]) if "Ustekinumab" in col else None, + to_str(r["Isolated Proctitis"]) if "Isolated Proctitis" in col else None, + to_str(r["Clinical Responder Status at I-12 / M-0"]) if "Clinical Responder Status at I-12 / M-0" in col else None, + to_str(r["IRT Subject Status"]), + to_date(r["I0_RAND_TIMESTAMP_LOCAL [Local]"]) if "I0_RAND_TIMESTAMP_LOCAL [Local]" in col else None, + to_str(r["Last Recorded IRT Transaction"]), + to_date(r["Last Recorded IRT Transaction Date [Local]"]), + to_date(r["Last Recorded IRT Transaction Date (UTC)"]), + to_str(r["Next Expected IRT Transaction"]), + to_date(r["Next Expected IRT Transaction Date [Local]"]), + to_date(r["Most Recent Medication Assignment Transaction [Local]"]) if "Most Recent Medication Assignment Transaction [Local]" in col else None, + to_int(r["Days Since Last Medication Assignment Transaction"]) if "Days Since Last Medication Assignment Transaction" in col else None, + to_str(r["Patient Forecast Status"]) if "Patient Forecast Status" in col else None, + to_date(r["Patient Forecast Status Changed Date (UTC)"]) if "Patient Forecast Status Changed Date (UTC)" in col else None, + )) + + +def insert_mdd3003_summary(cursor, import_id, df): + sql = """ + INSERT INTO iwrs_mdd3003_subject_summary ( + import_id, subject, prior_subject_identifier, site, investigator, location, + cohort_per_irt, madrs_criteria_integrated, informed_consent_date, age, + madrs_criteria_v15, madrs_criteria_v16, madrs_criteria_v17, + stratification_country, age_group, stable_remitters, irt_subject_status, + last_irt_transaction, last_irt_transaction_date_local, + last_irt_transaction_date_utc, next_irt_transaction, + next_irt_transaction_date_local, date_screened, date_screen_failed, + date_randomized_part1, date_early_withdraw_randomized_part1, + date_open_label_induction, date_early_withdraw_open_label_induction, + date_randomized_part2, date_early_withdraw_randomized_part2, + date_completed, date_unblinded + ) VALUES ( + %s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s + ) + """ + col = df.columns.tolist() + + for _, r in df.iterrows(): + cursor.execute(sql, ( + import_id, + to_str(r["Subject"]), + to_str(r["Prior Subject Identifier"]) if "Prior Subject Identifier" in col else None, + to_str(r["Site"]), + to_str(r["Investigator"]), + to_str(r["Location"]), + to_str(r["Cohort per IRT"]), + to_str(r["MADRS response criteria integrated or manually entered"]) if "MADRS response criteria integrated or manually entered" in col else None, + to_date(r["Informed Consent Date"]), + to_int(r["Subject's age collection"]), + to_str(r["MADRS response criteria v1.5 from RAVE"]) if "MADRS response criteria v1.5 from RAVE" in col else None, + to_str(r["MADRS response criteria v1.6 from RAVE"]) if "MADRS response criteria v1.6 from RAVE" in col else None, + to_str(r["MADRS response criteria v1.7 from RAVE"]) if "MADRS response criteria v1.7 from RAVE" in col else None, + to_str(r["Stratification Country"]) if "Stratification Country" in col else None, + to_str(r["Age Group"]) if "Age Group" in col else None, + to_str(r["Stable Remitters vs. Non Stable Remitters"]) if "Stable Remitters vs. Non Stable Remitters" in col else None, + to_str(r["IRT Subject Status"]), + to_str(r["Last Recorded IRT Transaction"]), + to_date(r["Last Recorded IRT Transaction Date [Local]"]), + to_date(r["Last Recorded IRT Transaction Date (UTC)"]), + to_str(r["Next Expected IRT Transaction"]), + to_date(r["Next Expected IRT Transaction Date [Local]"]), + to_date(r["Date Screened [Local]"]) if "Date Screened [Local]" in col else None, + to_date(r["Date Screen Failed [Local]"]) if "Date Screen Failed [Local]" in col else None, + to_date(r["Date Randomized Part 1 [Local]"]) if "Date Randomized Part 1 [Local]" in col else None, + to_date(r["Date Early Withdraw Randomized Part 1 [Local]"]) if "Date Early Withdraw Randomized Part 1 [Local]" in col else None, + to_date(r["Date Open Label Induction [Local]"]) if "Date Open Label Induction [Local]" in col else None, + to_date(r["Date Early Withdraw Open Label Induction [Local]"]) if "Date Early Withdraw Open Label Induction [Local]" in col else None, + to_date(r["Date Randomized Part 2 [Local]"]) if "Date Randomized Part 2 [Local]" in col else None, + to_date(r["Date Early Withdraw Randomized Part 2 [Local]"]) if "Date Early Withdraw Randomized Part 2 [Local]" in col else None, + to_date(r["Date Completed [Local]"]) if "Date Completed [Local]" in col else None, + to_date(r["Date Unblinded [Local]"]) if "Date Unblinded [Local]" in col else None, + )) + + +def insert_visits(cursor, import_id, study, subject, visits): + if not visits: + return + sql = """ + INSERT INTO iwrs_subject_visits ( + import_id, study, subject, visit_type, scheduled_date, window_days, + actual_date, irt_transaction_no, irt_transaction_description, + medication_assignment, quantity_assigned, medication_id + ) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s) + """ + for v in visits: + cursor.execute(sql, ( + import_id, study, subject, + v["visit_type"], v["scheduled_date"], v["window_days"], + v["actual_date"], v["irt_transaction_no"], + v["irt_transaction_description"], v["medication_assignment"], + v["quantity_assigned"], v["medication_id"], + )) + + +# ── main ────────────────────────────────────────────────────────────────────── + +def import_study(conn, study): + summary_path = find_summary_file(study) + print(f" Summary: {os.path.basename(summary_path)}") + + df_summary = read_summary_df(summary_path) + df_summary = df_summary.dropna(how="all") + + detail_files = find_detail_files(study) + print(f" Detail souborů: {len(detail_files)}") + + cursor = conn.cursor() + import_id = insert_import(cursor, study, summary_path) + print(f" import_id = {import_id}") + + if study == "77242113UCO3001": + insert_uco3001_summary(cursor, import_id, df_summary) + else: + insert_mdd3003_summary(cursor, import_id, df_summary) + print(f" Summary řádků: {len(df_summary)}") + + visited = 0 + for path in detail_files: + fname = os.path.basename(path) + # název: "2026-05-04 77242113UCO3001 CZ100012001 Subject Detail.xlsx" + m = re.search(r"\d{4}-\d{2}-\d{2} \S+ (\S+) Subject Detail\.xlsx", fname) + subject = m.group(1) if m else "UNKNOWN" + visits = parse_detail_visits(path) + insert_visits(cursor, import_id, study, subject, visits) + visited += len(visits) + + conn.commit() + cursor.close() + print(f" Transakce uloženo: {visited}") + return import_id + + +def main(): + conn = get_conn() + print("Připojeno k MySQL.\n") + + for study in STUDIES: + print(f"[{study}]") + try: + import_id = import_study(conn, study) + print(f" OK — import_id {import_id}\n") + except Exception as e: + print(f" CHYBA: {e}\n") + + conn.close() + print("Hotovo.") + + +main() diff --git a/IWRS/Patients/run_all.py b/IWRS/Patients/run_all.py new file mode 100644 index 0000000..ffa6ed4 --- /dev/null +++ b/IWRS/Patients/run_all.py @@ -0,0 +1,441 @@ +""" +Kompletní pipeline: + 1. Stažení Subject Summary Reportů (obě studie) + 2. Stažení Subject Detail Reportů (obě studie) + 3. Import do MySQL + +Spusť tento skript místo tří samostatných skriptů. +""" + +import os +import datetime +import glob +import re + +from playwright.sync_api import sync_playwright +import numpy as np +import pandas as pd + +import db_config +import mysql.connector + +# ── CONFIG ─────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-+" + +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INCOMING_DIR = os.path.join(BASE_DIR, "IncomingSourceReports") +DETAILS_DIR = os.path.join(BASE_DIR, "IncomingSourceReportsDetails") + + +# ── helpers ─────────────────────────────────────────────────────────────────── + +def unique_path(directory, stem): + path = os.path.join(directory, f"{stem}.xlsx") + if not os.path.exists(path): + return path + time_tag = datetime.datetime.now().strftime("%H%M") + return os.path.join(directory, f"{stem} {time_tag}.xlsx") + + +def login(page, study): + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator("#login__submit").click() + page.wait_for_load_state("networkidle") + page.get_by_label("Study *").click() + page.get_by_role("option", name=study).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + + +# ── KROK 1: Subject Summary ─────────────────────────────────────────────────── + +def download_summary(page, study, today): + print(f" [{study}] Stahuji Subject Summary Report...") + page.goto(f"{BASE_URL}/report/patient_summary_report") + page.wait_for_load_state("networkidle", timeout=120000) + filename = unique_path(INCOMING_DIR, f"{today} {study} Subject Summary Report") + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{study}] Summary OK -> {os.path.basename(filename)}") + return filename + + +# ── KROK 2: Subject Details ─────────────────────────────────────────────────── + +def get_subjects_from_summary(summary_path): + raw = pd.read_excel(summary_path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError("Hlavičkový řádek nenalezen") + df = pd.read_excel(summary_path, header=header_row) + return df["Subject"].dropna().astype(str).str.strip().tolist() + + +def download_details(page, study, summary_path, today): + out_dir = os.path.join(DETAILS_DIR, study) + os.makedirs(out_dir, exist_ok=True) + + subjects = get_subjects_from_summary(summary_path) + print(f" [{study}] Subjektů k stažení: {len(subjects)}") + + page.goto(f"{BASE_URL}/report/patient_detail_report") + page.wait_for_load_state("networkidle", timeout=120000) + + for subject in subjects: + filename = os.path.join(out_dir, f"{today} {study} {subject} Subject Detail.xlsx") + input_field = page.locator('input[placeholder="search"], input[type="text"]').first + input_field.click() + input_field.fill(subject) + page.wait_for_timeout(500) + page.locator("mat-option").first.dispatch_event("click") + page.wait_for_load_state("networkidle", timeout=120000) + + with page.expect_download(timeout=120000) as dl: + page.get_by_role("button", name="Download XLS").click() + dl.value.save_as(filename) + print(f" [{study}] Detail {subject} OK") + + page.get_by_role("button", name="Clear").click() + page.wait_for_load_state("networkidle", timeout=120000) + + +# ── KROK 3: Import do MySQL ─────────────────────────────────────────────────── + +def get_conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, + port=db_config.DB_PORT, + user=db_config.DB_USER, + password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def _py(val): + """Převede numpy skalár na Python nativní typ.""" + if isinstance(val, np.generic): + return val.item() + return val + + +def to_date(val): + val = _py(val) + if val is None or (isinstance(val, float) and (val != val)): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else val.date() + if isinstance(val, datetime.datetime): + return val.date() + if isinstance(val, datetime.date): + return val + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%Y-%m-%d", "%d-%b-%Y", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + return datetime.datetime.strptime(s, fmt).date() + except ValueError: + pass + return None + + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + + +def to_float(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else float(v) + except (TypeError, ValueError): + return None + + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + + +def read_summary_df(path): + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError(f"Hlavičkový řádek nenalezen v {path}") + return pd.read_excel(path, header=header_row).dropna(how="all") + + +def parse_detail_visits(path): + df = pd.read_excel(path, sheet_name="patient_detail_report", header=None) + header_row = None + for i, row in df.iterrows(): + if "Visit Type" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + visits_df = df.iloc[header_row + 1:].copy() + visits_df.columns = range(visits_df.shape[1]) + rows = [] + for _, r in visits_df.iterrows(): + visit_type = to_str(r.get(0)) + if visit_type not in ("Past", "Upcoming"): + continue + rows.append({ + "visit_type": visit_type, + "scheduled_date": to_date(r.get(1)), + "window_days": to_str(r.get(2)), + "actual_date": to_date(r.get(3)), + "irt_transaction_no": to_int(r.get(4)), + "irt_transaction_description": to_str(r.get(5)), + "medication_assignment": to_str(r.get(6)), + "quantity_assigned": to_int(r.get(7)), + "medication_id": to_str(r.get(8)), + }) + return rows + + +def insert_import(cursor, study, source_file): + cursor.execute( + "INSERT INTO iwrs_import (study, imported_at, source_file) VALUES (%s, %s, %s)", + (study, datetime.datetime.now(), os.path.basename(source_file)), + ) + return cursor.lastrowid + + +def insert_uco3001_summary(cursor, import_id, df): + sql = """INSERT INTO iwrs_uco3001_subject_summary ( + import_id, subject, prior_subject_identifier, site, investigator, location, + cohort_per_irt, informed_consent_date, adolescent_assent_date, age, weight, + rescreened_subject, adt_ir, three_or_more_advanced_therapies, + only_oral_5asa_compounds, ustekinumab, isolated_proctitis, + clinical_responder_status_i12_m0, irt_subject_status, + i0_rand_date_local, last_irt_transaction, + last_irt_transaction_date_local, last_irt_transaction_date_utc, + next_irt_transaction, next_irt_transaction_date_local, + most_recent_med_assignment_date, days_since_last_med_assignment, + patient_forecast_status, patient_forecast_status_changed_date + ) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + col = df.columns.tolist() + for _, r in df.iterrows(): + cursor.execute(sql, ( + import_id, + to_str(r["Subject"]), + to_str(r["Prior Subject Identifier"]) if "Prior Subject Identifier" in col else None, + to_str(r["Site"]), + to_str(r["Investigator"]), + to_str(r["Location"]), + to_str(r["Cohort per IRT"]), + to_date(r["Informed Consent Date"]), + to_date(r["Adolescent Assent Date"]) if "Adolescent Assent Date" in col else None, + to_int(r["Subject's age collection"]), + to_float(r["Subject's weight collection"]) if "Subject's weight collection" in col else None, + to_str(r["Rescreened Subject"]) if "Rescreened Subject" in col else None, + to_str(r["ADT-IR"]) if "ADT-IR" in col else None, + to_str(r["3 or More Advanced Therapies"]) if "3 or More Advanced Therapies" in col else None, + to_str(r["Only Oral 5-ASA Compounds"]) if "Only Oral 5-ASA Compounds" in col else None, + to_str(r["Ustekinumab"]) if "Ustekinumab" in col else None, + to_str(r["Isolated Proctitis"]) if "Isolated Proctitis" in col else None, + to_str(r["Clinical Responder Status at I-12 / M-0"]) if "Clinical Responder Status at I-12 / M-0" in col else None, + to_str(r["IRT Subject Status"]), + to_date(r["I0_RAND_TIMESTAMP_LOCAL [Local]"]) if "I0_RAND_TIMESTAMP_LOCAL [Local]" in col else None, + to_str(r["Last Recorded IRT Transaction"]), + to_date(r["Last Recorded IRT Transaction Date [Local]"]), + to_date(r["Last Recorded IRT Transaction Date (UTC)"]), + to_str(r["Next Expected IRT Transaction"]), + to_date(r["Next Expected IRT Transaction Date [Local]"]), + to_date(r["Most Recent Medication Assignment Transaction [Local]"]) if "Most Recent Medication Assignment Transaction [Local]" in col else None, + to_int(r["Days Since Last Medication Assignment Transaction"]) if "Days Since Last Medication Assignment Transaction" in col else None, + to_str(r["Patient Forecast Status"]) if "Patient Forecast Status" in col else None, + to_date(r["Patient Forecast Status Changed Date (UTC)"]) if "Patient Forecast Status Changed Date (UTC)" in col else None, + )) + + +def insert_mdd3003_summary(cursor, import_id, df): + sql = """INSERT INTO iwrs_mdd3003_subject_summary ( + import_id, subject, prior_subject_identifier, site, investigator, location, + cohort_per_irt, madrs_criteria_integrated, informed_consent_date, age, + madrs_criteria_v15, madrs_criteria_v16, madrs_criteria_v17, + stratification_country, age_group, stable_remitters, irt_subject_status, + last_irt_transaction, last_irt_transaction_date_local, + last_irt_transaction_date_utc, next_irt_transaction, + next_irt_transaction_date_local, date_screened, date_screen_failed, + date_randomized_part1, date_early_withdraw_randomized_part1, + date_open_label_induction, date_early_withdraw_open_label_induction, + date_randomized_part2, date_early_withdraw_randomized_part2, + date_completed, date_unblinded + ) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + col = df.columns.tolist() + for _, r in df.iterrows(): + cursor.execute(sql, ( + import_id, + to_str(r["Subject"]), + to_str(r["Prior Subject Identifier"]) if "Prior Subject Identifier" in col else None, + to_str(r["Site"]), + to_str(r["Investigator"]), + to_str(r["Location"]), + to_str(r["Cohort per IRT"]), + to_str(r["MADRS response criteria integrated or manually entered"]) if "MADRS response criteria integrated or manually entered" in col else None, + to_date(r["Informed Consent Date"]), + to_int(r["Subject's age collection"]), + to_str(r["MADRS response criteria v1.5 from RAVE"]) if "MADRS response criteria v1.5 from RAVE" in col else None, + to_str(r["MADRS response criteria v1.6 from RAVE"]) if "MADRS response criteria v1.6 from RAVE" in col else None, + to_str(r["MADRS response criteria v1.7 from RAVE"]) if "MADRS response criteria v1.7 from RAVE" in col else None, + to_str(r["Stratification Country"]) if "Stratification Country" in col else None, + to_str(r["Age Group"]) if "Age Group" in col else None, + to_str(r["Stable Remitters vs. Non Stable Remitters"]) if "Stable Remitters vs. Non Stable Remitters" in col else None, + to_str(r["IRT Subject Status"]), + to_str(r["Last Recorded IRT Transaction"]), + to_date(r["Last Recorded IRT Transaction Date [Local]"]), + to_date(r["Last Recorded IRT Transaction Date (UTC)"]), + to_str(r["Next Expected IRT Transaction"]), + to_date(r["Next Expected IRT Transaction Date [Local]"]), + to_date(r["Date Screened [Local]"]) if "Date Screened [Local]" in col else None, + to_date(r["Date Screen Failed [Local]"]) if "Date Screen Failed [Local]" in col else None, + to_date(r["Date Randomized Part 1 [Local]"]) if "Date Randomized Part 1 [Local]" in col else None, + to_date(r["Date Early Withdraw Randomized Part 1 [Local]"]) if "Date Early Withdraw Randomized Part 1 [Local]" in col else None, + to_date(r["Date Open Label Induction [Local]"]) if "Date Open Label Induction [Local]" in col else None, + to_date(r["Date Early Withdraw Open Label Induction [Local]"]) if "Date Early Withdraw Open Label Induction [Local]" in col else None, + to_date(r["Date Randomized Part 2 [Local]"]) if "Date Randomized Part 2 [Local]" in col else None, + to_date(r["Date Early Withdraw Randomized Part 2 [Local]"]) if "Date Early Withdraw Randomized Part 2 [Local]" in col else None, + to_date(r["Date Completed [Local]"]) if "Date Completed [Local]" in col else None, + to_date(r["Date Unblinded [Local]"]) if "Date Unblinded [Local]" in col else None, + )) + + +def insert_visits(cursor, import_id, study, subject, visits): + if not visits: + return + sql = """INSERT INTO iwrs_subject_visits ( + import_id, study, subject, visit_type, scheduled_date, window_days, + actual_date, irt_transaction_no, irt_transaction_description, + medication_assignment, quantity_assigned, medication_id + ) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)""" + for v in visits: + cursor.execute(sql, ( + import_id, study, subject, + v["visit_type"], v["scheduled_date"], v["window_days"], + v["actual_date"], v["irt_transaction_no"], + v["irt_transaction_description"], v["medication_assignment"], + v["quantity_assigned"], v["medication_id"], + )) + + +def import_to_mysql(summary_path, detail_files, study): + print(f"\n [MySQL] Importuji {study}...") + df_summary = read_summary_df(summary_path) + conn = get_conn() + cursor = conn.cursor() + + import_id = insert_import(cursor, study, summary_path) + + if study == "77242113UCO3001": + insert_uco3001_summary(cursor, import_id, df_summary) + else: + insert_mdd3003_summary(cursor, import_id, df_summary) + + total_visits = 0 + for path in detail_files: + fname = os.path.basename(path) + m = re.search(r"\d{4}-\d{2}-\d{2} \S+ (\S+) Subject Detail\.xlsx", fname) + subject = m.group(1) if m else "UNKNOWN" + visits = parse_detail_visits(path) + insert_visits(cursor, import_id, study, subject, visits) + total_visits += len(visits) + + conn.commit() + cursor.close() + conn.close() + print(f" [MySQL] import_id={import_id} | pacientů={len(df_summary)} | transakcí={total_visits}") + return import_id + + +# ── MAIN ───────────────────────────────────────────────────────────────────── + +def main(): + today = datetime.date.today().strftime("%Y-%m-%d") + os.makedirs(INCOMING_DIR, exist_ok=True) + os.makedirs(DETAILS_DIR, exist_ok=True) + + summary_paths = {} + + # ── Krok 1 + 2: stahování (Playwright, každá studie zvlášť kvůli session) ── + with sync_playwright() as p: + for study in STUDIES: + print(f"\n{'='*60}") + print(f"[{study}] KROK 1: Subject Summary Report") + print(f"{'='*60}") + browser = p.chromium.launch(headless=False) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + try: + login(page, study) + summary_path = download_summary(page, study, today) + summary_paths[study] = summary_path + + print(f"\n[{study}] KROK 2: Subject Detail Reports") + download_details(page, study, summary_path, today) + except Exception as e: + print(f" [{study}] CHYBA při stahování: {e}") + summary_paths[study] = None + finally: + browser.close() + + # ── Krok 3: import do MySQL ────────────────────────────────────────────── + print(f"\n{'='*60}") + print("KROK 3: Import do MySQL") + print(f"{'='*60}") + + for study in STUDIES: + summary_path = summary_paths.get(study) + if not summary_path: + print(f" [{study}] PŘESKOČENO — stahování selhalo") + continue + + detail_files = sorted(glob.glob( + os.path.join(DETAILS_DIR, study, f"{today} {study} * Subject Detail.xlsx") + )) + + try: + import_to_mysql(summary_path, detail_files, study) + except Exception as e: + print(f" [{study}] CHYBA při importu: {e}") + + print(f"\n{'='*60}") + print("Vše hotovo.") + print(f"{'='*60}") + + +main() diff --git a/IWRS/Testing/format_accountability.py b/IWRS/Testing/format_accountability.py new file mode 100644 index 0000000..a7ef956 --- /dev/null +++ b/IWRS/Testing/format_accountability.py @@ -0,0 +1,118 @@ +import pandas as pd +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +INPUT_FILE = "accountability_combined.xlsx" +OUTPUT_FILE = "accountability_formatted.xlsx" +SHEET_NAME = "CountryMedicationOverview" + +COLUMN_RENAMES = { + "Site": "Site", + "Medication ID": "Med ID", + "Packaged Lot number": "Lot No.", + "Original Expiration Date when Packaged Lot was Added": "Orig Exp Date", + "Expiration date": "Exp Date", + "Received Date": "Rcv Date", + "Shipment Receipt User": "Rcpt User", + "Subject Identifier": "Subject ID", + "Quantity Assigned": "Qty Asgn", + "IRT Transaction": "IRT Tx", + "Date Assigned": "Date Asgn", + "Assignment User": "Asgn User", + "Dispensation Status": "Disp Status", + "Dispensing Date": "Disp Date", + "Quantity Dispensed": "Qty Disp", + "Dispensing User": "Disp User", + "Quantity Returned": "Qty Ret", + "Date Returned": "Date Ret", + "Return User": "Ret User", + "DestroyedOn": "Destroyed", + "Basket number": "Basket No.", +} + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, +} + +# ── 1. Load with pandas and convert date columns ───────────────────────────── +df = pd.read_excel(INPUT_FILE) +df.rename(columns=COLUMN_RENAMES, inplace=True) + +for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], dayfirst=True, errors="coerce") + +df.sort_values(["Site", "Rcv Date", "Med ID"], inplace=True, ignore_index=True) +df.to_excel(OUTPUT_FILE, index=False, sheet_name=SHEET_NAME) + +# ── 2. Format with openpyxl ─────────────────────────────────────────────────── +wb = load_workbook(OUTPUT_FILE) +ws = wb[SHEET_NAME] + +header_fill = PatternFill("solid", start_color="1F4E79") +header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) +new_col_fill = PatternFill("solid", start_color="E2EFDA") +row_font = Font(name="Arial", size=10) + +thin = Side(style="thin", color="000000") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +headers = [cell.value for cell in ws[1]] +new_cols = {"Destroyed", "Basket No."} + +# Header row +for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + +# Data rows +max_row = ws.max_row +for row in ws.iter_rows(min_row=2, max_row=max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if col_name in new_cols: + cell.fill = new_col_fill + +# Column widths +for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + +ws.auto_filter.ref = ws.dimensions +ws.freeze_panes = "A2" + +wb.save(OUTPUT_FILE) +print(f"Saved: {OUTPUT_FILE} ({max_row - 1} rows, sheet '{SHEET_NAME}')") diff --git a/IWRS/Testing/list_reports.py b/IWRS/Testing/list_reports.py new file mode 100644 index 0000000..ab0e876 --- /dev/null +++ b/IWRS/Testing/list_reports.py @@ -0,0 +1,74 @@ +from playwright.sync_api import sync_playwright +import json + +# ── CONFIG ────────────────────────────────────────────────────────────────── +BASE_URL = "https://janssen.4gclinical.com" +STUDY = "42847922MDD3003" + +EMAIL = "vbuzalka@its.jnj.com" +PASSWORD = "Vlado123++-" # doplň heslo +# ──────────────────────────────────────────────────────────────────────────── + + +def list_reports(): + with sync_playwright() as p: + browser = p.chromium.launch(headless=False) + page = browser.new_page() + + # Přihlášení + page.goto(BASE_URL) + page.wait_for_load_state("networkidle") + + page.get_by_label("Email *").fill(EMAIL) + page.get_by_label("Password *").fill(PASSWORD) + page.locator('#login__submit').click() + page.wait_for_load_state("networkidle") + + # Výběr studie — klikni na dropdown, vyber studii, klikni SELECT + page.get_by_label("Study *").click() + page.get_by_role("option", name=STUDY).click() + page.get_by_role("button", name="SELECT").click() + page.wait_for_load_state("networkidle") + + # Přejdi na seznam reportů + page.goto(f"{BASE_URL}/reports") + page.wait_for_load_state("networkidle") + page.wait_for_selector('[role="gridcell"] a', timeout=15000) + + # Získej názvy reportů + names = page.evaluate(""" + () => Array.from(document.querySelectorAll('[role="gridcell"] a')) + .map(a => a.innerText.trim()) + .filter(n => n) + """) + print(f"\nNalezeno {len(names)} reportů, zjišťuji URL...\n") + + # Pro každý report klikni, zaznamenej URL a vrať se zpět + reports = [] + for name in names: + with page.expect_navigation(timeout=15000): + page.locator('[role="gridcell"] a').filter(has_text=name).click() + page.wait_for_load_state("networkidle") + page.wait_for_timeout(2000) + path = page.url.replace(BASE_URL, "") + reports.append({"name": name, "href": path}) + print(f" {name:50s} {path}") + # Průběžné uložení po každém reportu + with open("reports.json", "w", encoding="utf-8") as f: + json.dump(reports, f, ensure_ascii=False, indent=2) + if page.url != f"{BASE_URL}/reports": + page.goto(f"{BASE_URL}/reports") + page.wait_for_load_state("networkidle") + page.wait_for_timeout(2000) + page.wait_for_selector('[role="gridcell"] a', timeout=30000) + + browser.close() + + with open("reports.json", "w", encoding="utf-8") as f: + json.dump(reports, f, ensure_ascii=False, indent=2) + print(f"\nUloženo do reports.json") + + return reports + + +list_reports() diff --git a/IWRS/Testing/sheet_assigned_not_dispensed.py b/IWRS/Testing/sheet_assigned_not_dispensed.py new file mode 100644 index 0000000..3b97d1a --- /dev/null +++ b/IWRS/Testing/sheet_assigned_not_dispensed.py @@ -0,0 +1,92 @@ +import pandas as pd +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +SOURCE_FILE = "accountability_combined.xlsx" +OUTPUT_FILE = "sheet_assigned_not_dispensed.xlsx" +SHEET_NAME = "Assigned not dispensed" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, +} + +df = pd.read_excel(SOURCE_FILE) + +for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + +# Filter: Subject ID present AND Disp Date missing +mask = df["Subject ID"].notna() & df["Disp Date"].isna() +filtered = df[mask].copy().reset_index(drop=True) + +print(f"Assigned not dispensed: {len(filtered)}") + +filtered.to_excel(OUTPUT_FILE, index=False, sheet_name=SHEET_NAME) + +# Formatting +wb = load_workbook(OUTPUT_FILE) +ws = wb[SHEET_NAME] + +header_fill = PatternFill("solid", start_color="833C00") # dark orange +header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) +row_font = Font(name="Arial", size=10) +subj_fill = PatternFill("solid", start_color="FFF2CC") # light yellow highlight for Subject ID + +thin = Side(style="thin", color="000000") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +headers = [cell.value for cell in ws[1]] + +for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + +for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Subject ID": + cell.fill = subj_fill + +for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + +ws.auto_filter.ref = ws.dimensions +ws.freeze_panes = "A2" + +wb.save(OUTPUT_FILE) +print(f"Saved: {OUTPUT_FILE} (sheet: '{SHEET_NAME}')") diff --git a/IWRS/Testing/sheet_expired.py b/IWRS/Testing/sheet_expired.py new file mode 100644 index 0000000..b41d353 --- /dev/null +++ b/IWRS/Testing/sheet_expired.py @@ -0,0 +1,97 @@ +import pandas as pd +from datetime import date +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +SOURCE_FILE = "accountability_combined.xlsx" +OUTPUT_FILE = "sheet_expired.xlsx" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, +} + +today = date.today() +sheet_name = f"Expired as of {today.strftime('%d-%b-%Y')}" + +# Load source +df = pd.read_excel(SOURCE_FILE) + +# Convert date columns +for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + +# Filter: not in basket AND not assigned to patient AND Exp Date < today +mask = df["Basket No."].isna() & df["Subject ID"].isna() & (df["Exp Date"] < pd.Timestamp(today)) +filtered = df[mask].copy().reset_index(drop=True) + +print(f"Expired kits not in basket: {len(filtered)}") + +filtered.to_excel(OUTPUT_FILE, index=False, sheet_name=sheet_name) + +# Formatting +wb = load_workbook(OUTPUT_FILE) +ws = wb[sheet_name] + +header_fill = PatternFill("solid", start_color="C00000") # dark red +header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) +row_font = Font(name="Arial", size=10) +exp_fill = PatternFill("solid", start_color="FFE0E0") # light red highlight for Exp Date + +thin = Side(style="thin", color="000000") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +headers = [cell.value for cell in ws[1]] + +for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + +for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Exp Date": + cell.fill = exp_fill + +for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + +ws.auto_filter.ref = ws.dimensions +ws.freeze_panes = "A2" + +wb.save(OUTPUT_FILE) +print(f"Saved: {OUTPUT_FILE} (sheet: '{sheet_name}')") diff --git a/IWRS/Testing/sheet_kits_for_destruction.py b/IWRS/Testing/sheet_kits_for_destruction.py new file mode 100644 index 0000000..a6b6dd8 --- /dev/null +++ b/IWRS/Testing/sheet_kits_for_destruction.py @@ -0,0 +1,99 @@ +import pandas as pd +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +SOURCE_FILE = "accountability_combined.xlsx" +OUTPUT_FILE = "sheet_kits_for_destruction.xlsx" +SHEET_NAME = "Kits for destruction" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Date Ret", "Destroyed", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Qty Ret": 10, + "Date Ret": 14, + "Ret User": 18, + "Destroyed": 14, + "Basket No.": 12, +} + +df = pd.read_excel(SOURCE_FILE) + +for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + +# Filter: no basket AND (Date Ret filled OR Disp Status == NOT DISPENSED) +mask = ( + df["Basket No."].isna() & + ( + df["Date Ret"].notna() | + (df["Disp Status"].str.upper() == "NOT DISPENSED") + ) +) +filtered = df[mask].copy().sort_values(["Site", "Date Ret"], ascending=[True, True]) +filtered = filtered.drop(columns=["Destroyed", "Basket No."]).reset_index(drop=True) + +print(f"Kits for destruction: {len(filtered)}") + +filtered.to_excel(OUTPUT_FILE, index=False, sheet_name=SHEET_NAME) + +# Formatting +wb = load_workbook(OUTPUT_FILE) +ws = wb[SHEET_NAME] + +header_fill = PatternFill("solid", start_color="595959") # dark grey +header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) +row_font = Font(name="Arial", size=10) +basket_fill = PatternFill("solid", start_color="FFE0E0") # light red for empty Basket No. + +thin = Side(style="thin", color="000000") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +headers = [cell.value for cell in ws[1]] + +for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + +for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Basket No.": + cell.fill = basket_fill + +for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + +ws.auto_filter.ref = ws.dimensions +ws.freeze_panes = "A2" + +wb.save(OUTPUT_FILE) +print(f"Saved: {OUTPUT_FILE} (sheet: '{SHEET_NAME}')") diff --git a/IWRS/Testing/sheet_not_returned.py b/IWRS/Testing/sheet_not_returned.py new file mode 100644 index 0000000..79f68e2 --- /dev/null +++ b/IWRS/Testing/sheet_not_returned.py @@ -0,0 +1,102 @@ +import pandas as pd +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side +from openpyxl.utils import get_column_letter + +SOURCE_FILE = "accountability_combined.xlsx" +OUTPUT_FILE = "sheet_not_returned.xlsx" +SHEET_NAME = "Not returned" + +DATE_COLUMNS = { + "Orig Exp Date", "Exp Date", "Rcv Date", + "Date Asgn", "Disp Date", "Max Visit Date", +} + +COLUMN_WIDTHS = { + "Site": 14, + "Med ID": 10, + "Lot No.": 12, + "Orig Exp Date": 16, + "Exp Date": 14, + "Rcv Date": 14, + "Rcpt User": 22, + "Subject ID": 14, + "Qty Asgn": 9, + "IRT Tx": 8, + "Date Asgn": 14, + "Asgn User": 20, + "Disp Status": 16, + "Disp Date": 14, + "Qty Disp": 9, + "Disp User": 20, + "Max Visit Date": 16, +} + +df = pd.read_excel(SOURCE_FILE) + +for col in DATE_COLUMNS: + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") + +# Kits with no return date, assigned to a patient, and not "NOT DISPENSED" +no_ret = df[ + df["Date Ret"].isna() & + df["Subject ID"].notna() & + (df["Disp Status"].str.upper() != "NOT DISPENSED") +].copy() + +# Max Date Asgn per patient (from full dataset) +max_asgn = df.groupby("Subject ID")["Date Asgn"].max().rename("Max Visit Date") +no_ret = no_ret.join(max_asgn, on="Subject ID") + +# Keep only kits where Date Asgn is NOT the latest for that patient +filtered = no_ret[no_ret["Date Asgn"] < no_ret["Max Visit Date"]].copy() + +# Drop columns Q-U and keep Max Visit Date +filtered = filtered.drop(columns=["Qty Ret", "Date Ret", "Ret User", "Destroyed", "Basket No."]) +filtered = filtered.reset_index(drop=True) + +print(f"Not returned kits: {len(filtered)}") + +filtered.to_excel(OUTPUT_FILE, index=False, sheet_name=SHEET_NAME) + +# Formatting +wb = load_workbook(OUTPUT_FILE) +ws = wb[SHEET_NAME] + +header_fill = PatternFill("solid", start_color="375623") # dark green +header_font = Font(bold=True, color="FFFFFF", name="Arial", size=10) +row_font = Font(name="Arial", size=10) +ret_fill = PatternFill("solid", start_color="E2EFDA") # light green highlight for Date Ret + +thin = Side(style="thin", color="000000") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +headers = [cell.value for cell in ws[1]] + +for cell in ws[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = Alignment(horizontal="center", vertical="center", wrap_text=False) + cell.border = border + +for row in ws.iter_rows(min_row=2, max_row=ws.max_row): + for cell in row: + col_name = headers[cell.column - 1] if cell.column <= len(headers) else None + cell.font = row_font + cell.border = border + cell.alignment = Alignment(horizontal="center") + if col_name in DATE_COLUMNS: + cell.number_format = "DD-MMM-YYYY" + if col_name == "Max Visit Date": + cell.fill = ret_fill + +for cell in ws[1]: + width = COLUMN_WIDTHS.get(cell.value, 14) + ws.column_dimensions[get_column_letter(cell.column)].width = width + +ws.auto_filter.ref = ws.dimensions +ws.freeze_panes = "A2" + +wb.save(OUTPUT_FILE) +print(f"Saved: {OUTPUT_FILE} (sheet: '{SHEET_NAME}')") diff --git a/IWRS/reports.json b/IWRS/reports.json new file mode 100644 index 0000000..c66e6eb --- /dev/null +++ b/IWRS/reports.json @@ -0,0 +1,23 @@ +[ + {"name": "Drug Accountability Form - Multiple Subjects", "href": "/report/drug_accountability_form_multiple_subjects"}, + {"name": "Drug Accountability Form - Single Subject", "href": "/report/drug_accountability_form_single_subject"}, + {"name": "Janssen Pharmaceuticals IP Destruction Form", "href": "/report/ip_destruction_form"}, + {"name": "On-Site Drug Inventory and Accountability Details Form", "href": "/report/onsite_inventory_detail"}, + {"name": "On-Site Drug Inventory Form", "href": "/report/onsite_drug_inventory_form"}, + {"name": "Location Summary Report", "href": "/report/country_summary_report"}, + {"name": "Site Detail Report", "href": "/report/site_detail_report"}, + {"name": "Study Sites Report", "href": "/report/study_sites_report"}, + {"name": "Site Inventory Detail Report", "href": "/report/site_inventory_detail"}, + {"name": "Site Inventory Summary Report", "href": "/report/site_inventory_summary"}, + {"name": "Subject Data Changes Report", "href": "/report/patient_data_changes_report"}, + {"name": "Subject Detail Report", "href": "/report/patient_detail_report"}, + {"name": "Subject Summary Report", "href": "/report/patient_summary_report"}, + {"name": "Subject Visit Summary Report", "href": "/report/patient_visit_summary"}, + {"name": "Shipment Details Report", "href": "/report/shipment_details_report"}, + {"name": "Shipments Report", "href": "/report/shipments_report"}, + {"name": "Cohort History Report", "href": "/report/cohort_history_report"}, + {"name": "Cohort Summary Report", "href": "/report/cohort_summary_report"}, + {"name": "Site Activations Report", "href": "/report/site_activation_pivot"}, + {"name": "User Login History", "href": "/report/user_logins"}, + {"name": "Users List", "href": "/report/users"} +] diff --git a/JanssenScripts/FileWatchAndSend/janssenpc_file_send.py b/JanssenScripts/FileWatchAndSend/janssenpc_file_send.py new file mode 100644 index 0000000..75c69cb --- /dev/null +++ b/JanssenScripts/FileWatchAndSend/janssenpc_file_send.py @@ -0,0 +1,223 @@ +# Název: janssenpc_file_send.py +# Verze: 2.0 +# Datum: 2026-05-27 +# Popis: Přejmenuje soubory ve složce ##JNJPrenos, odešle je na msgs.buzalka.cz +# a přesune do podsložky Trash. Loguje průběh do file_send.log vedle skriptu. +# Podporuje: Panorama Dashboard (xlsx), Site Visit Report (xlsx), +# Follow-Up Letter (xlsx), Clario MayoScore (csv), Clario MayoDiary (csv). + +import os +import time +import shutil +import requests +import pandas as pd +from pathlib import Path +from datetime import datetime + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload-dropbox" +SOURCE_DIR = Path(r"C:\Users\vbuzalka\OneDrive - JNJ\##JNJPrenos") +TRASH_DIR = SOURCE_DIR / "Trash" +LOG_FILE = Path(__file__).parent / "file_send.log" + +MAYO_DIARY_COLUMNS = [ + 'Protocol', 'Country', 'Site', 'PI Name', 'Subject ID', + 'Report Date', 'Report Start Date/Time', 'Report End Date/Time', + 'Stool Frequency', 'Form Number', 'Role', 'Original Source', +] + +MAYO_SCORE_COLUMNS = [ + 'Protocol', 'Study Population', 'Country', 'Site', 'Principal Investigator', + 'Participant ID', 'Baseline Stool Frequency', 'Visit', 'Visit Date', + 'Endoscopy Completed?', 'Central Endoscopy Score', 'Local Endoscopy Score', + 'Partial Mayo Score', 'Full Mayo Score', +] + +PANORAMA_COLUMNS = [ + 'Part', 'Source', 'Sector', 'TA', 'Protocol ID', 'Interventional', + 'Region', 'Country Name', 'Institution Name', 'Site City', + 'Site Zip/Postal Code', 'Site Address', 'MSID', 'Site ID', + 'Site Status', 'SM Full Name', 'PI Name', 'St F Subj Enr Act', + 'ID', 'Category', 'Type', 'Priority', 'Severity', 'Description', + 'Brief Description - Subject ID', 'Comments', 'Created By', + 'Create Date', 'Last Modified Date', 'Start Date', 'Due Date', + 'End Date', 'Status', 'Days Outstanding', 'Action Taken', + 'Escalated To', 'Visit Report Status', 'Visit Report Approved', + 'Visit Report Type', 'Visit Report Status End Date', 'Active', + 'Association', 'Deviation', 'Deviation Closed Date', 'Reason For Exclusion' +] + + +def log(msg: str): + ts = datetime.now().strftime('%Y-%m-%d %H:%M:%S') + line = f"[{ts}] {msg}" + print(line) + with LOG_FILE.open("a", encoding="utf-8") as lf: + lf.write(line + "\n") + + +def move_to_trash(f: Path): + TRASH_DIR.mkdir(exist_ok=True) + dest = TRASH_DIR / f.name + if dest.exists(): + ts = datetime.now().strftime('%Y%m%d_%H%M%S') + dest = TRASH_DIR / f"{f.stem}_{ts}{f.suffix}" + shutil.move(str(f), dest) + + +def get_timestamp(file_path: str) -> str: + return datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d_%H-%M-%S') + + +def prejmenuj(directory: Path) -> None: + log(f"--- Přejmenování, adresář: {directory} ---") + files = [f for f in directory.iterdir() if f.is_file()] + log(f" Nalezeno souborů: {len(files)} — {[f.name for f in files]}") + + for f in files: + filename = f.name + file_path = str(f) + + # 0a. CLARIO MAYO DIARY (CSV) + if 'MAYO-DIARY' in filename and filename.endswith('.csv'): + log(f" Detekován MayoDiary: {filename}") + try: + df = pd.read_csv(file_path) + missing = set(MAYO_DIARY_COLUMNS) - set(df.columns) + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol: {list(protocols)}") + if len(protocols) > 0: + study = str(protocols[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Clario MayoDiary.csv" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # 0b. CLARIO MAYO SCORE (CSV) + if 'Custom.MayoScoreReport' in filename and filename.endswith('.csv'): + log(f" Detekován MayoScore: {filename}") + try: + df = pd.read_csv(file_path) + missing = set(MAYO_SCORE_COLUMNS) - set(df.columns) + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol: {list(protocols)}") + if len(protocols) > 0: + study = str(protocols[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Clario MayoScore.csv" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # Ostatní — jen xlsx + if not filename.endswith('.xlsx'): + log(f" Přeskočeno (neznámý typ): {filename}") + continue + + # 1. PANORAMA DASHBOARD (XLSX) + if 'Panorama Dashboard' in filename: + log(f" Detekován Panorama: {filename}") + try: + df = pd.read_excel(file_path, skiprows=5) + missing = set(PANORAMA_COLUMNS) - set(df.columns) + if not missing: + ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID: {list(ids)}") + if len(ids) > 0: + study = str(ids[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} Panorama Deviations and Issues.xlsx" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # 2. SITE VISIT REPORT A FOLLOW-UP LETTER (XLSX) + try: + df_a1 = pd.read_excel(file_path, nrows=1, header=None) + if not df_a1.empty: + a1 = str(df_a1.iloc[0, 0]) + log(f" A1: {a1[:80]}") + is_site_visit = "Title: Site Visit Report Details" in a1 + is_follow_up = "Title: Follow-Up Letter Details" in a1 + + if is_site_visit or is_follow_up: + suffix = "Site Visit Details.xlsx" if is_site_visit else "FUL details.xlsx" + log(f" Detekován {'Site Visit' if is_site_visit else 'Follow-Up Letter'}: {filename}") + df = pd.read_excel(file_path, skiprows=5) + if 'Protocol ID' in df.columns: + ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID: {list(ids)}") + if len(ids) > 0: + study = str(ids[0]).strip() + new_name = f"{get_timestamp(file_path)} {study} {suffix}" + f.rename(directory / new_name) + log(f" ÚSPĚCH: -> '{new_name}'") + else: + log(f" VAROVÁNÍ: Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupec Protocol ID.") + else: + log(f" Přeskočeno (neznámý xlsx obsah): {filename}") + except Exception as e: + log(f" CHYBA: {e}") + + log("--- Přejmenování dokončeno ---") + + +# === HLAVNÍ LOGIKA === + +log("=== Spuštění ===") +log(f"Zdrojový adresář: {SOURCE_DIR} (existuje: {SOURCE_DIR.exists()})") + +# 1. Přejmenuj +prejmenuj(SOURCE_DIR) + +# 2. Počkej 10 vteřin +log("Čekám 10 vteřin...") +time.sleep(10) + +# 3. Odešli soubory +files = [f for f in SOURCE_DIR.iterdir() if f.is_file()] +log(f"Souborů k odeslání: {len(files)}") +for f in files: + log(f" Nalezen: {f.name}") + +if not files: + log("Žádné soubory k odeslání.") +else: + for f in files: + try: + with f.open("rb") as fh: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (f.name, fh, "application/octet-stream")}, + timeout=120, + ) + resp.raise_for_status() + status = resp.json().get('status', '?').upper() + log(f" {status:10} | {f.name}") + move_to_trash(f) + log(f" PŘESUNUTO | {f.name} -> Trash") + except Exception as e: + log(f" CHYBA | {f.name} | {e}") + +log("=== Hotovo ===") diff --git a/JanssenScripts/FileWatchAndSend/janssenpc_file_watch.py b/JanssenScripts/FileWatchAndSend/janssenpc_file_watch.py new file mode 100644 index 0000000..72a60af --- /dev/null +++ b/JanssenScripts/FileWatchAndSend/janssenpc_file_watch.py @@ -0,0 +1,49 @@ +# Název: janssenpc_file_watch.py +# Verze: 1.1 +# Datum: 2026-05-27 +# Popis: Démon hlídající složku ##JNJPrenos (watchdog). Při objevení nového souboru +# spustí janssenpc_file_send.py, který zajistí přejmenování, upload a přesun do Trash. + +import subprocess +import sys +import time +from pathlib import Path +from watchdog.observers import Observer +from watchdog.events import FileSystemEventHandler + +SOURCE_DIR = Path(r"C:\Users\vbuzalka\OneDrive - JNJ\##JNJPrenos") +SEND_SCRIPT = Path(__file__).parent / "janssenpc_file_send.py" + + +def run_send(): + subprocess.run([sys.executable, str(SEND_SCRIPT)], check=False) + + +class NewFileHandler(FileSystemEventHandler): + def on_created(self, event): + if event.is_directory: + return + run_send() + + def on_moved(self, event): + if event.is_directory: + return + run_send() + + +if __name__ == "__main__": + # Při startu zpracuj soubory, které už tam jsou + if any(f for f in SOURCE_DIR.iterdir() if f.is_file()): + run_send() + + observer = Observer() + observer.schedule(NewFileHandler(), str(SOURCE_DIR), recursive=False) + observer.start() + print(f"Hlídám: {SOURCE_DIR}") + + try: + while True: + time.sleep(1) + except KeyboardInterrupt: + observer.stop() + observer.join() diff --git a/JanssenScripts/PřejmenujSoubory/02 PřejmenujSouboryReportu.py b/JanssenScripts/PřejmenujSoubory/02 PřejmenujSouboryReportu.py new file mode 100644 index 0000000..2adc6f6 --- /dev/null +++ b/JanssenScripts/PřejmenujSoubory/02 PřejmenujSouboryReportu.py @@ -0,0 +1,196 @@ +# Název: 02 PřejmenujSouboryReportu.py +# Verze: 1.2 +# Datum: 2026-05-27 +# Popis: Prochází zadaný adresář a přejmenuje známé typy reportů na standardizovaný +# formát "datum čas studie typ.přípona". Podporuje: Panorama Dashboard (xlsx), +# Site Visit Report (xlsx), Follow-Up Letter (xlsx), +# Clario MayoScore (csv), Clario MayoDiary (csv). +# Loguje průběh do prejmenuj.log vedle skriptu. + +import os +import pandas as pd +from datetime import datetime +from pathlib import Path + +LOG_FILE = Path(__file__).parent / "prejmenuj.log" + + +def log(msg: str): + ts = datetime.now().strftime('%Y-%m-%d %H:%M:%S') + line = f"[{ts}] {msg}" + print(line) + with LOG_FILE.open("a", encoding="utf-8") as lf: + lf.write(line + "\n") + + +def zpracuj_reporty(directory_path): + mayo_diary_columns = [ + 'Protocol', 'Country', 'Site', 'PI Name', 'Subject ID', + 'Report Date', 'Report Start Date/Time', 'Report End Date/Time', + 'Stool Frequency', 'Form Number', 'Role', 'Original Source', + ] + + mayo_columns = [ + 'Protocol', 'Study Population', 'Country', 'Site', 'Principal Investigator', + 'Participant ID', 'Baseline Stool Frequency', 'Visit', 'Visit Date', + 'Endoscopy Completed?', 'Central Endoscopy Score', 'Local Endoscopy Score', + 'Partial Mayo Score', 'Full Mayo Score', + ] + + panorama_columns = [ + 'Part', 'Source', 'Sector', 'TA', 'Protocol ID', 'Interventional', + 'Region', 'Country Name', 'Institution Name', 'Site City', + 'Site Zip/Postal Code', 'Site Address', 'MSID', 'Site ID', + 'Site Status', 'SM Full Name', 'PI Name', 'St F Subj Enr Act', + 'ID', 'Category', 'Type', 'Priority', 'Severity', 'Description', + 'Brief Description - Subject ID', 'Comments', 'Created By', + 'Create Date', 'Last Modified Date', 'Start Date', 'Due Date', + 'End Date', 'Status', 'Days Outstanding', 'Action Taken', + 'Escalated To', 'Visit Report Status', 'Visit Report Approved', + 'Visit Report Type', 'Visit Report Status End Date', 'Active', + 'Association', 'Deviation', 'Deviation Closed Date', 'Reason For Exclusion' + ] + + log(f"=== Spuštění přejmenování, adresář: {directory_path} ===") + + if not os.path.exists(directory_path): + log(f"CHYBA: Adresář '{directory_path}' neexistuje.") + return + + all_files = [f for f in os.listdir(directory_path) if os.path.isfile(os.path.join(directory_path, f))] + log(f"Nalezeno souborů: {len(all_files)} — {all_files}") + + for filename in all_files: + file_path = os.path.join(directory_path, filename) + + # --------------------------------------------------------- + # 0a. CLARIO MAYO DIARY (CSV) + # --------------------------------------------------------- + if 'MAYO-DIARY' in filename and filename.endswith('.csv'): + log(f"Detekován MayoDiary: {filename}") + try: + df = pd.read_csv(file_path) + actual_columns = set(df.columns) + missing = set(mayo_diary_columns) - actual_columns + + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol hodnoty: {list(protocols)}") + if len(protocols) > 0: + study_name = str(protocols[0]).strip() + file_time = datetime.fromtimestamp(os.path.getmtime(file_path)) + timestamp = file_time.strftime('%Y-%m-%d_%H-%M-%S') + new_filename = f"{timestamp} {study_name} Clario MayoDiary.csv" + os.rename(file_path, os.path.join(directory_path, new_filename)) + log(f" ÚSPĚCH: -> '{new_filename}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # --------------------------------------------------------- + # 0b. CLARIO MAYO SCORE (CSV) + # --------------------------------------------------------- + if 'Custom.MayoScoreReport' in filename and filename.endswith('.csv'): + log(f"Detekován MayoScore: {filename}") + try: + df = pd.read_csv(file_path) + actual_columns = set(df.columns) + missing = set(mayo_columns) - actual_columns + + if not missing: + protocols = df['Protocol'].dropna().unique() + log(f" Protocol hodnoty: {list(protocols)}") + if len(protocols) > 0: + study_name = str(protocols[0]).strip() + file_time = datetime.fromtimestamp(os.path.getmtime(file_path)) + timestamp = file_time.strftime('%Y-%m-%d_%H-%M-%S') + new_filename = f"{timestamp} {study_name} Clario MayoScore.csv" + os.rename(file_path, os.path.join(directory_path, new_filename)) + log(f" ÚSPĚCH: -> '{new_filename}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + continue + + # Ostatní typy — jen xlsx + if not filename.endswith('.xlsx'): + log(f"Přeskočeno (neznámý typ): {filename}") + continue + + # --------------------------------------------------------- + # 1. PANORAMA DASHBOARD (XLSX) + # --------------------------------------------------------- + if 'Panorama Dashboard' in filename: + log(f"Detekován Panorama: {filename}") + try: + df = pd.read_excel(file_path, skiprows=5) + actual_columns = set(df.columns) + missing = set(panorama_columns) - actual_columns + + if not missing: + protocol_ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID hodnoty: {list(protocol_ids)}") + if len(protocol_ids) > 0: + study_name = str(protocol_ids[0]).strip() + file_time = datetime.fromtimestamp(os.path.getmtime(file_path)) + timestamp = file_time.strftime('%Y-%m-%d_%H-%M-%S') + new_filename = f"{timestamp} {study_name} Panorama Deviations and Issues.xlsx" + os.rename(file_path, os.path.join(directory_path, new_filename)) + log(f" ÚSPĚCH: -> '{new_filename}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Chybí sloupce: {missing}") + except Exception as e: + log(f" CHYBA: {e}") + + # --------------------------------------------------------- + # 2. SITE VISIT REPORT A FOLLOW-UP LETTER (XLSX) + # --------------------------------------------------------- + else: + try: + df_a1 = pd.read_excel(file_path, nrows=1, header=None) + if not df_a1.empty: + a1_text = str(df_a1.iloc[0, 0]) + log(f" A1 obsah: {a1_text[:80]}") + + is_site_visit = "Title: Site Visit Report Details" in a1_text + is_follow_up = "Title: Follow-Up Letter Details" in a1_text + + if is_site_visit or is_follow_up: + suffix = "Site Visit Details.xlsx" if is_site_visit else "FUL details.xlsx" + log(f"Detekován {'Site Visit' if is_site_visit else 'Follow-Up Letter'}: {filename}") + + df = pd.read_excel(file_path, skiprows=5) + if 'Protocol ID' in df.columns: + protocol_ids = df['Protocol ID'].dropna().unique() + log(f" Protocol ID hodnoty: {list(protocol_ids)}") + if len(protocol_ids) > 0: + study_name = str(protocol_ids[0]).strip() + file_time = datetime.fromtimestamp(os.path.getmtime(file_path)) + timestamp = file_time.strftime('%Y-%m-%d_%H-%M-%S') + new_filename = f"{timestamp} {study_name} {suffix}" + os.rename(file_path, os.path.join(directory_path, new_filename)) + log(f" ÚSPĚCH: -> '{new_filename}'") + else: + log(f" VAROVÁNÍ: Sloupec Protocol ID je prázdný.") + else: + log(f" PŘESKOČENO: Soubor neobsahuje sloupec 'Protocol ID'.") + else: + log(f"Přeskočeno (neznámý xlsx obsah): {filename}") + except Exception as e: + log(f" CHYBA: {e}") + + log("=== Přejmenování dokončeno ===") + + +if __name__ == "__main__": + cesta_k_adresari = r"c:\Users\vbuzalka\OneDrive - JNJ\##JNJPrenos" + zpracuj_reporty(cesta_k_adresari) diff --git a/JanssenScripts/PřejmenujSoubory/77242113UCO3001_MAYO-DIARY.csv b/JanssenScripts/PřejmenujSoubory/77242113UCO3001_MAYO-DIARY.csv new file mode 100644 index 0000000..d5fea66 --- /dev/null +++ b/JanssenScripts/PřejmenujSoubory/77242113UCO3001_MAYO-DIARY.csv @@ -0,0 +1,1099 @@ +"Protocol","Country","Site","PI Name","Subject ID","Age at Informed Consent","Baseline Stool Count","Confirm Baseline Stool Count","Report Date","Report Start Date/Time","Report End Date/Time","Duration","Form Number","Role","Original Source","Current Source","Constipation (Code)","Constipation","Diarrhea (Code)","Diarrhea","Irregularity (Code)","Irregularity","Not Applicable (Code)","Not Applicable","Stool Frequency","Stool Frequency Confirmation (Code)","Stool Frequency Confirmation","MAYO050 (Code)","MAYO050","Data Comment","Retro Data Entry Visit Flag (Code)","Retro Data Entry Visit Flag","Admin Language","Admin Device (Code)","Admin Device","Data Flag (Code)","Data Flag","User Name","Paper Source (Code)","Paper Source" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","22-Jan-2026 ","22-Jan-2026 18:01:10","22-Jan-2026 18:01:44","00:34","1","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","23-Jan-2026 ","23-Jan-2026 21:22:44","23-Jan-2026 21:23:25","00:41","2","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","24-Jan-2026 ","24-Jan-2026 18:04:18","24-Jan-2026 18:04:36","00:18","3","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","27-Jan-2026 ","28-Jan-2026 18:33:09","28-Jan-2026 18:33:24","00:15","4","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","28-Jan-2026 ","28-Jan-2026 18:34:00","28-Jan-2026 18:34:20","00:20","5","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","29-Jan-2026 ","29-Jan-2026 21:36:05","29-Jan-2026 21:36:22","00:17","6","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","30-Jan-2026 ","31-Jan-2026 00:05:37","31-Jan-2026 00:05:58","00:21","7","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","31-Jan-2026 ","31-Jan-2026 23:13:18","31-Jan-2026 23:13:35","00:17","8","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","01-Feb-2026 ","01-Feb-2026 19:26:08","01-Feb-2026 19:26:36","00:28","9","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","02-Feb-2026 ","02-Feb-2026 18:01:48","02-Feb-2026 18:02:06","00:18","10","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","03-Feb-2026 ","03-Feb-2026 18:02:54","03-Feb-2026 18:03:20","00:26","11","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","04-Feb-2026 ","04-Feb-2026 18:02:37","04-Feb-2026 18:03:09","00:32","12","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","05-Feb-2026 ","05-Feb-2026 22:23:29","05-Feb-2026 22:23:46","00:17","13","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","06-Feb-2026 ","06-Feb-2026 22:20:04","06-Feb-2026 22:20:19","00:15","14","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","07-Feb-2026 ","07-Feb-2026 18:02:19","07-Feb-2026 18:02:51","00:32","15","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","08-Feb-2026 ","08-Feb-2026 18:03:25","08-Feb-2026 18:03:46","00:21","16","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","09-Feb-2026 ","09-Feb-2026 19:06:44","09-Feb-2026 19:07:24","00:40","17","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","10-Feb-2026 ","10-Feb-2026 22:25:12","10-Feb-2026 22:25:32","00:20","18","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","11-Feb-2026 ","12-Feb-2026 18:34:50","12-Feb-2026 18:35:15","00:25","19","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","11","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","12-Feb-2026 ","12-Feb-2026 18:35:49","12-Feb-2026 18:36:01","00:12","20","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","13-Feb-2026 ","13-Feb-2026 18:14:41","13-Feb-2026 18:14:55","00:14","21","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","14-Feb-2026 ","14-Feb-2026 18:01:52","14-Feb-2026 18:02:30","00:38","22","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","15-Feb-2026 ","16-Feb-2026 19:00:39","16-Feb-2026 19:00:56","00:17","23","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","16-Feb-2026 ","16-Feb-2026 19:01:41","16-Feb-2026 19:01:54","00:13","24","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","17-Feb-2026 ","17-Feb-2026 18:35:12","17-Feb-2026 18:35:26","00:14","25","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","18-Feb-2026 ","18-Feb-2026 18:02:21","18-Feb-2026 18:02:37","00:16","26","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","19-Feb-2026 ","20-Feb-2026 20:40:28","20-Feb-2026 20:40:55","00:27","27","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","20-Feb-2026 ","20-Feb-2026 20:41:50","20-Feb-2026 20:42:13","00:23","28","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","21-Feb-2026 ","21-Feb-2026 22:17:51","21-Feb-2026 22:18:05","00:14","29","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","22-Feb-2026 ","23-Feb-2026 18:59:42","23-Feb-2026 18:59:59","00:17","30","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","23-Feb-2026 ","23-Feb-2026 19:00:43","23-Feb-2026 19:00:57","00:14","31","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","24-Feb-2026 ","24-Feb-2026 18:33:05","24-Feb-2026 18:33:18","00:13","32","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","25-Feb-2026 ","25-Feb-2026 20:00:09","25-Feb-2026 20:00:22","00:13","33","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","26-Feb-2026 ","26-Feb-2026 21:45:08","26-Feb-2026 21:45:42","00:34","34","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","27-Feb-2026 ","27-Feb-2026 21:43:17","27-Feb-2026 21:43:33","00:16","35","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","28-Feb-2026 ","28-Feb-2026 18:53:08","28-Feb-2026 18:53:54","00:46","36","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","01-Mar-2026 ","01-Mar-2026 19:53:01","01-Mar-2026 19:53:40","00:39","37","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","02-Mar-2026 ","02-Mar-2026 18:05:10","02-Mar-2026 18:05:26","00:16","38","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","03-Mar-2026 ","03-Mar-2026 19:44:37","03-Mar-2026 19:45:11","00:34","39","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","04-Mar-2026 ","04-Mar-2026 18:45:15","04-Mar-2026 18:45:35","00:20","40","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","05-Mar-2026 ","05-Mar-2026 18:58:16","05-Mar-2026 18:58:36","00:20","41","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","06-Mar-2026 ","06-Mar-2026 18:28:33","06-Mar-2026 18:28:49","00:16","42","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","07-Mar-2026 ","07-Mar-2026 19:46:29","07-Mar-2026 19:46:47","00:18","43","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","08-Mar-2026 ","08-Mar-2026 20:05:17","08-Mar-2026 20:05:48","00:31","44","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","09-Mar-2026 ","09-Mar-2026 19:06:21","09-Mar-2026 19:06:43","00:22","45","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","10-Mar-2026 ","10-Mar-2026 18:19:08","10-Mar-2026 18:19:29","00:21","46","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","11-Mar-2026 ","11-Mar-2026 21:03:53","11-Mar-2026 21:04:07","00:14","47","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","12-Mar-2026 ","12-Mar-2026 18:17:30","12-Mar-2026 18:17:50","00:20","48","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","13-Mar-2026 ","13-Mar-2026 18:05:59","13-Mar-2026 18:07:01","01:02","49","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","14-Mar-2026 ","14-Mar-2026 20:44:54","14-Mar-2026 20:45:13","00:19","50","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","15-Mar-2026 ","15-Mar-2026 18:36:33","15-Mar-2026 18:36:52","00:19","51","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","16-Mar-2026 ","16-Mar-2026 22:48:59","16-Mar-2026 22:49:17","00:18","52","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","17-Mar-2026 ","17-Mar-2026 18:02:01","17-Mar-2026 18:02:18","00:17","53","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","18-Mar-2026 ","18-Mar-2026 21:00:45","18-Mar-2026 21:01:25","00:40","54","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","19-Mar-2026 ","19-Mar-2026 21:31:31","19-Mar-2026 21:32:18","00:47","55","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","20-Mar-2026 ","21-Mar-2026 14:10:40","21-Mar-2026 14:10:56","00:16","56","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","21-Mar-2026 ","21-Mar-2026 23:09:00","21-Mar-2026 23:09:18","00:18","57","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","22-Mar-2026 ","22-Mar-2026 19:08:29","22-Mar-2026 19:08:50","00:21","58","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","23-Mar-2026 ","23-Mar-2026 18:16:57","23-Mar-2026 18:17:14","00:17","59","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","24-Mar-2026 ","24-Mar-2026 21:05:21","24-Mar-2026 21:05:35","00:14","60","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","25-Mar-2026 ","25-Mar-2026 21:08:43","25-Mar-2026 21:09:39","00:56","61","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","26-Mar-2026 ","26-Mar-2026 20:46:45","26-Mar-2026 20:47:05","00:20","62","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","27-Mar-2026 ","27-Mar-2026 20:55:30","27-Mar-2026 20:55:57","00:27","63","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","28-Mar-2026 ","28-Mar-2026 20:00:16","28-Mar-2026 20:00:32","00:16","64","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","29-Mar-2026 ","29-Mar-2026 22:09:04","29-Mar-2026 22:09:18","00:14","65","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","30-Mar-2026 ","31-Mar-2026 11:57:59","31-Mar-2026 11:58:17","00:18","66","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","31-Mar-2026 ","01-Apr-2026 18:21:26","01-Apr-2026 18:22:46","01:20","67","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","01-Apr-2026 ","01-Apr-2026 18:23:44","01-Apr-2026 18:23:58","00:14","68","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","02-Apr-2026 ","02-Apr-2026 20:54:02","02-Apr-2026 20:54:22","00:20","69","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","03-Apr-2026 ","03-Apr-2026 19:54:40","03-Apr-2026 19:55:08","00:28","70","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","04-Apr-2026 ","04-Apr-2026 18:11:01","04-Apr-2026 18:11:24","00:23","71","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","05-Apr-2026 ","05-Apr-2026 23:04:39","05-Apr-2026 23:05:04","00:25","72","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","06-Apr-2026 ","06-Apr-2026 21:42:50","06-Apr-2026 21:43:12","00:22","73","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","07-Apr-2026 ","07-Apr-2026 21:43:47","07-Apr-2026 21:44:05","00:18","74","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","08-Apr-2026 ","09-Apr-2026 21:36:29","09-Apr-2026 21:36:45","00:16","75","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","09-Apr-2026 ","09-Apr-2026 21:39:42","09-Apr-2026 21:40:10","00:28","76","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","10-Apr-2026 ","10-Apr-2026 18:05:18","10-Apr-2026 18:05:37","00:19","77","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","11-Apr-2026 ","11-Apr-2026 23:16:18","11-Apr-2026 23:16:50","00:32","78","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","12-Apr-2026 ","12-Apr-2026 20:31:50","12-Apr-2026 20:32:07","00:17","79","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","13-Apr-2026 ","13-Apr-2026 22:52:20","13-Apr-2026 22:52:40","00:20","80","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","14-Apr-2026 ","14-Apr-2026 21:00:55","14-Apr-2026 21:01:12","00:17","81","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","15-Apr-2026 ","15-Apr-2026 21:26:28","15-Apr-2026 21:26:45","00:17","82","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","16-Apr-2026 ","16-Apr-2026 20:36:59","16-Apr-2026 20:37:29","00:30","83","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","17-Apr-2026 ","17-Apr-2026 18:35:45","17-Apr-2026 18:36:18","00:33","84","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","18-Apr-2026 ","19-Apr-2026 19:09:05","19-Apr-2026 19:09:27","00:22","85","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","19-Apr-2026 ","19-Apr-2026 19:10:48","19-Apr-2026 19:11:05","00:17","86","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","20-Apr-2026 ","20-Apr-2026 21:41:27","20-Apr-2026 21:42:05","00:38","87","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","21-Apr-2026 ","21-Apr-2026 18:16:50","21-Apr-2026 18:17:13","00:23","88","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","24-Apr-2026 ","25-Apr-2026 21:27:18","25-Apr-2026 21:27:37","00:19","89","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","25-Apr-2026 ","25-Apr-2026 21:28:48","25-Apr-2026 21:29:07","00:19","90","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","26-Apr-2026 ","26-Apr-2026 21:20:40","26-Apr-2026 21:21:09","00:29","91","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","27-Apr-2026 ","27-Apr-2026 19:23:32","27-Apr-2026 19:23:57","00:25","92","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","28-Apr-2026 ","28-Apr-2026 20:20:00","28-Apr-2026 20:20:16","00:16","93","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","29-Apr-2026 ","29-Apr-2026 18:40:54","29-Apr-2026 18:41:13","00:19","94","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","30-Apr-2026 ","01-May-2026 19:13:21","01-May-2026 19:13:42","00:21","95","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","01-May-2026 ","01-May-2026 19:15:10","01-May-2026 19:15:41","00:31","96","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","02-May-2026 ","02-May-2026 20:04:07","02-May-2026 20:04:25","00:18","97","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","03-May-2026 ","03-May-2026 20:30:45","03-May-2026 20:31:11","00:26","98","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","04-May-2026 ","04-May-2026 22:14:16","04-May-2026 22:14:39","00:23","99","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","05-May-2026 ","05-May-2026 18:03:33","05-May-2026 18:03:59","00:26","100","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","06-May-2026 ","06-May-2026 19:09:27","06-May-2026 19:10:10","00:43","101","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","07-May-2026 ","07-May-2026 22:20:20","07-May-2026 22:20:44","00:24","102","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","08-May-2026 ","08-May-2026 22:31:15","08-May-2026 22:31:30","00:15","103","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","09-May-2026 ","09-May-2026 22:14:16","09-May-2026 22:14:41","00:25","104","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","10-May-2026 ","10-May-2026 22:59:00","10-May-2026 22:59:24","00:24","105","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","11-May-2026 ","11-May-2026 21:17:29","11-May-2026 21:18:07","00:38","106","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","12-May-2026 ","12-May-2026 20:23:13","12-May-2026 20:24:06","00:53","107","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","13-May-2026 ","13-May-2026 18:08:45","13-May-2026 18:09:03","00:18","108","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","15-May-2026 ","15-May-2026 23:21:17","15-May-2026 23:21:35","00:18","109","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","16-May-2026 ","17-May-2026 18:26:06","17-May-2026 18:26:24","00:18","110","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","17-May-2026 ","17-May-2026 18:27:28","17-May-2026 18:27:43","00:15","111","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","18-May-2026 ","18-May-2026 20:31:21","18-May-2026 20:31:43","00:22","112","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","19-May-2026 ","19-May-2026 18:40:11","19-May-2026 18:40:28","00:17","113","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","20-May-2026 ","20-May-2026 22:17:46","20-May-2026 22:18:01","00:15","114","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","21-May-2026 ","21-May-2026 20:03:10","21-May-2026 20:03:28","00:18","115","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","22-May-2026 ","22-May-2026 18:35:01","22-May-2026 18:35:16","00:15","116","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","23-May-2026 ","23-May-2026 22:25:17","23-May-2026 22:26:05","00:48","117","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","24-May-2026 ","25-May-2026 18:08:43","25-May-2026 18:09:27","00:44","118","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","25-May-2026 ","25-May-2026 18:10:27","25-May-2026 18:11:02","00:35","119","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","48","1","","26-May-2026 ","26-May-2026 20:54:59","26-May-2026 20:55:19","00:20","120","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","02-Mar-2026 ","02-Mar-2026 18:03:24","02-Mar-2026 18:03:45","00:21","1","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","03-Mar-2026 ","03-Mar-2026 19:43:48","03-Mar-2026 19:45:18","01:30","2","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","04-Mar-2026 ","04-Mar-2026 19:03:27","04-Mar-2026 19:03:48","00:21","3","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","05-Mar-2026 ","05-Mar-2026 19:15:46","05-Mar-2026 19:16:04","00:18","4","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","06-Mar-2026 ","06-Mar-2026 18:23:46","06-Mar-2026 18:25:08","01:22","5","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","07-Mar-2026 ","07-Mar-2026 19:05:22","07-Mar-2026 19:05:45","00:23","6","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","08-Mar-2026 ","08-Mar-2026 19:09:52","08-Mar-2026 19:10:47","00:55","7","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","09-Mar-2026 ","09-Mar-2026 19:08:05","09-Mar-2026 19:08:19","00:14","8","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","10-Mar-2026 ","10-Mar-2026 18:15:08","10-Mar-2026 18:15:19","00:11","9","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","11-Mar-2026 ","11-Mar-2026 20:13:00","11-Mar-2026 20:13:15","00:15","10","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","12-Mar-2026 ","12-Mar-2026 19:05:47","12-Mar-2026 19:06:03","00:16","11","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","13-Mar-2026 ","13-Mar-2026 18:59:16","13-Mar-2026 18:59:52","00:36","12","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","14-Mar-2026 ","14-Mar-2026 20:12:42","14-Mar-2026 20:13:14","00:32","13","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","15-Mar-2026 ","15-Mar-2026 22:50:36","15-Mar-2026 22:50:57","00:21","14","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","16-Mar-2026 ","16-Mar-2026 18:15:35","16-Mar-2026 18:15:52","00:17","15","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","17-Mar-2026 ","17-Mar-2026 21:15:59","17-Mar-2026 21:16:11","00:12","16","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","18-Mar-2026 ","18-Mar-2026 18:32:31","18-Mar-2026 18:33:05","00:34","17","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","19-Mar-2026 ","19-Mar-2026 22:19:19","19-Mar-2026 22:19:35","00:16","18","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","20-Mar-2026 ","21-Mar-2026 21:58:25","21-Mar-2026 21:58:52","00:27","19","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","21-Mar-2026 ","21-Mar-2026 21:59:25","21-Mar-2026 21:59:50","00:25","20","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","22-Mar-2026 ","22-Mar-2026 18:16:36","22-Mar-2026 18:17:03","00:27","21","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","23-Mar-2026 ","23-Mar-2026 18:15:48","23-Mar-2026 18:16:13","00:25","22","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","24-Mar-2026 ","24-Mar-2026 19:56:01","24-Mar-2026 19:56:15","00:14","23","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","25-Mar-2026 ","25-Mar-2026 20:46:53","25-Mar-2026 20:47:12","00:19","24","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","26-Mar-2026 ","26-Mar-2026 20:54:13","26-Mar-2026 20:54:28","00:15","25","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","27-Mar-2026 ","27-Mar-2026 23:09:08","27-Mar-2026 23:09:26","00:18","26","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","28-Mar-2026 ","28-Mar-2026 20:02:00","28-Mar-2026 20:02:18","00:18","27","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","29-Mar-2026 ","29-Mar-2026 21:11:54","29-Mar-2026 21:12:13","00:19","28","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","30-Mar-2026 ","31-Mar-2026 11:57:02","31-Mar-2026 11:57:16","00:14","29","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","31-Mar-2026 ","01-Apr-2026 18:10:49","01-Apr-2026 18:11:06","00:17","30","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","01-Apr-2026 ","01-Apr-2026 18:11:44","01-Apr-2026 18:12:00","00:16","31","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","02-Apr-2026 ","02-Apr-2026 18:12:37","02-Apr-2026 18:12:55","00:18","32","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","03-Apr-2026 ","03-Apr-2026 21:58:59","03-Apr-2026 21:59:15","00:16","33","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","05-Apr-2026 ","05-Apr-2026 23:02:10","05-Apr-2026 23:02:29","00:19","34","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","06-Apr-2026 ","06-Apr-2026 22:14:46","06-Apr-2026 22:15:03","00:17","35","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","07-Apr-2026 ","07-Apr-2026 21:02:39","07-Apr-2026 21:02:52","00:13","36","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","08-Apr-2026 ","09-Apr-2026 21:40:54","09-Apr-2026 21:41:13","00:19","37","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","09-Apr-2026 ","09-Apr-2026 21:41:51","09-Apr-2026 21:42:08","00:17","38","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","10-Apr-2026 ","10-Apr-2026 20:05:38","10-Apr-2026 20:05:53","00:15","39","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","11-Apr-2026 ","11-Apr-2026 23:17:33","11-Apr-2026 23:17:46","00:13","40","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","12-Apr-2026 ","12-Apr-2026 18:21:45","12-Apr-2026 18:22:02","00:17","41","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","13-Apr-2026 ","13-Apr-2026 22:47:41","13-Apr-2026 22:48:01","00:20","42","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","14-Apr-2026 ","14-Apr-2026 22:06:10","14-Apr-2026 22:06:29","00:19","43","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","15-Apr-2026 ","15-Apr-2026 19:38:20","15-Apr-2026 19:38:45","00:25","44","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","16-Apr-2026 ","17-Apr-2026 18:32:51","17-Apr-2026 18:33:06","00:15","45","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","17-Apr-2026 ","17-Apr-2026 18:34:57","17-Apr-2026 18:35:14","00:17","46","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","18-Apr-2026 ","19-Apr-2026 18:11:33","19-Apr-2026 18:11:51","00:18","47","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","19-Apr-2026 ","19-Apr-2026 18:12:51","19-Apr-2026 18:13:09","00:18","48","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","20-Apr-2026 ","20-Apr-2026 21:40:01","20-Apr-2026 21:40:36","00:35","49","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","21-Apr-2026 ","21-Apr-2026 19:09:36","21-Apr-2026 19:09:49","00:13","50","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","24-Apr-2026 ","25-Apr-2026 19:44:57","25-Apr-2026 19:45:15","00:18","51","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","25-Apr-2026 ","25-Apr-2026 19:46:37","25-Apr-2026 19:47:02","00:25","52","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","26-Apr-2026 ","26-Apr-2026 21:19:11","26-Apr-2026 21:19:40","00:29","53","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","27-Apr-2026 ","28-Apr-2026 18:23:35","28-Apr-2026 18:23:51","00:16","54","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","28-Apr-2026 ","28-Apr-2026 18:25:15","28-Apr-2026 18:25:30","00:15","55","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","29-Apr-2026 ","29-Apr-2026 20:13:53","29-Apr-2026 20:14:08","00:15","56","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","30-Apr-2026 ","01-May-2026 19:10:14","01-May-2026 19:10:37","00:23","57","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","01-May-2026 ","01-May-2026 19:11:24","01-May-2026 19:11:41","00:17","58","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","02-May-2026 ","02-May-2026 18:48:16","02-May-2026 18:48:47","00:31","59","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","03-May-2026 ","03-May-2026 20:28:17","03-May-2026 20:28:34","00:17","60","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","04-May-2026 ","04-May-2026 21:19:12","04-May-2026 21:19:32","00:20","61","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","05-May-2026 ","05-May-2026 18:01:14","05-May-2026 18:01:32","00:18","62","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","06-May-2026 ","06-May-2026 19:34:21","06-May-2026 19:35:29","01:08","63","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","07-May-2026 ","07-May-2026 22:31:00","07-May-2026 22:31:21","00:21","64","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","08-May-2026 ","08-May-2026 22:36:30","08-May-2026 22:36:51","00:21","65","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","09-May-2026 ","09-May-2026 22:10:53","09-May-2026 22:11:08","00:15","66","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","10-May-2026 ","10-May-2026 20:03:46","10-May-2026 20:04:16","00:30","67","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","11-May-2026 ","11-May-2026 19:05:57","11-May-2026 19:06:14","00:17","68","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","12-May-2026 ","12-May-2026 20:13:55","12-May-2026 20:14:35","00:40","69","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","13-May-2026 ","13-May-2026 20:47:02","13-May-2026 20:47:37","00:35","70","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","14-May-2026 ","14-May-2026 20:49:31","14-May-2026 20:49:46","00:15","71","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","15-May-2026 ","15-May-2026 23:18:53","15-May-2026 23:19:24","00:31","72","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","16-May-2026 ","17-May-2026 18:08:11","17-May-2026 18:08:34","00:23","73","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","17-May-2026 ","17-May-2026 18:09:32","17-May-2026 18:10:09","00:37","74","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","18-May-2026 ","18-May-2026 21:06:45","18-May-2026 21:07:04","00:19","75","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","19-May-2026 ","19-May-2026 18:37:55","19-May-2026 18:38:08","00:13","76","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","20-May-2026 ","20-May-2026 22:15:44","20-May-2026 22:16:06","00:22","77","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","21-May-2026 ","21-May-2026 21:44:30","21-May-2026 21:44:46","00:16","78","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","22-May-2026 ","22-May-2026 18:49:41","22-May-2026 18:49:54","00:13","79","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","23-May-2026 ","23-May-2026 22:23:52","23-May-2026 22:24:37","00:45","80","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","24-May-2026 ","25-May-2026 18:07:16","25-May-2026 18:07:52","00:36","81","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","25-May-2026 ","25-May-2026 18:08:56","25-May-2026 18:09:26","00:30","82","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","79","1","","26-May-2026 ","26-May-2026 21:43:50","26-May-2026 21:44:07","00:17","83","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","05-May-2026 ","05-May-2026 18:01:55","05-May-2026 18:02:09","00:14","1","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","06-May-2026 ","06-May-2026 20:29:15","06-May-2026 20:29:29","00:14","2","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","07-May-2026 ","07-May-2026 22:18:42","07-May-2026 22:19:01","00:19","3","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","08-May-2026 ","08-May-2026 22:31:03","08-May-2026 22:31:18","00:15","4","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","09-May-2026 ","09-May-2026 22:22:24","09-May-2026 22:22:43","00:19","5","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","10-May-2026 ","10-May-2026 23:12:50","10-May-2026 23:13:05","00:15","6","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","11-May-2026 ","11-May-2026 21:16:13","11-May-2026 21:16:37","00:24","7","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","12-May-2026 ","12-May-2026 22:36:19","12-May-2026 22:36:35","00:16","8","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","13-May-2026 ","13-May-2026 20:07:41","13-May-2026 20:08:02","00:21","9","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","15-May-2026 ","15-May-2026 23:23:21","15-May-2026 23:23:32","00:11","10","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","16-May-2026 ","17-May-2026 21:56:34","17-May-2026 21:56:46","00:12","11","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","17-May-2026 ","17-May-2026 21:57:29","17-May-2026 21:57:49","00:20","12","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","18-May-2026 ","18-May-2026 22:48:11","18-May-2026 22:48:25","00:14","13","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","19-May-2026 ","19-May-2026 18:38:52","19-May-2026 18:39:17","00:25","14","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","20-May-2026 ","20-May-2026 22:15:48","20-May-2026 22:16:02","00:14","15","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","21-May-2026 ","21-May-2026 19:42:51","21-May-2026 19:43:04","00:13","16","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","22-May-2026 ","22-May-2026 18:04:07","22-May-2026 18:04:26","00:19","17","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","23-May-2026 ","23-May-2026 22:26:18","23-May-2026 22:26:29","00:11","18","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","24-May-2026 ","25-May-2026 18:08:46","25-May-2026 18:09:14","00:28","19","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","25-May-2026 ","25-May-2026 18:10:28","25-May-2026 18:10:50","00:22","20","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","52","1","","26-May-2026 ","26-May-2026 21:13:16","26-May-2026 21:13:33","00:17","21","Patient","Handheld","Handheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","13-May-2026 ","13-May-2026 21:40:48","13-May-2026 21:41:52","01:04","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","14-May-2026 ","14-May-2026 21:39:37","14-May-2026 21:40:25","00:48","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","15-May-2026 ","15-May-2026 23:28:11","15-May-2026 23:28:26","00:15","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","16-May-2026 ","16-May-2026 22:36:22","16-May-2026 22:36:56","00:34","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","17-May-2026 ","17-May-2026 21:24:12","17-May-2026 21:24:34","00:22","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","18-May-2026 ","18-May-2026 22:07:40","18-May-2026 22:07:59","00:19","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","19-May-2026 ","19-May-2026 22:03:42","19-May-2026 22:03:55","00:13","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","20-May-2026 ","20-May-2026 23:04:59","20-May-2026 23:05:17","00:18","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","21-May-2026 ","21-May-2026 23:14:46","21-May-2026 23:15:04","00:18","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","22-May-2026 ","22-May-2026 23:02:18","22-May-2026 23:02:43","00:25","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","23-May-2026 ","23-May-2026 21:45:15","23-May-2026 21:45:28","00:13","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","24-May-2026 ","24-May-2026 22:28:16","24-May-2026 22:29:20","01:04","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","25-May-2026 ","25-May-2026 22:41:05","25-May-2026 22:48:09","07:04","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10003","Leksa Vaclav","CZ100032001","30","2","","26-May-2026 ","26-May-2026 23:09:08","26-May-2026 23:10:22","01:14","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","14-Feb-2026 ","14-Feb-2026 18:03:39","14-Feb-2026 18:04:26","00:47","1","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","15-Feb-2026 ","15-Feb-2026 18:01:50","15-Feb-2026 18:02:24","00:34","2","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","16-Feb-2026 ","16-Feb-2026 18:01:30","16-Feb-2026 18:01:56","00:26","3","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","17-Feb-2026 ","17-Feb-2026 18:01:04","17-Feb-2026 18:01:14","00:10","4","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","18-Feb-2026 ","18-Feb-2026 18:02:17","18-Feb-2026 18:02:32","00:15","5","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","19-Feb-2026 ","19-Feb-2026 18:09:20","19-Feb-2026 18:09:50","00:30","6","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","20-Feb-2026 ","20-Feb-2026 18:14:47","20-Feb-2026 18:15:20","00:33","7","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","21-Feb-2026 ","21-Feb-2026 18:03:34","21-Feb-2026 18:03:56","00:22","8","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","22-Feb-2026 ","22-Feb-2026 20:08:20","22-Feb-2026 20:08:34","00:14","9","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","23-Feb-2026 ","23-Feb-2026 18:01:20","23-Feb-2026 18:01:41","00:21","10","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","24-Feb-2026 ","24-Feb-2026 18:01:33","24-Feb-2026 18:01:44","00:11","11","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","25-Feb-2026 ","25-Feb-2026 19:01:41","25-Feb-2026 19:01:55","00:14","12","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","26-Feb-2026 ","26-Feb-2026 18:03:34","26-Feb-2026 18:03:52","00:18","13","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","27-Feb-2026 ","27-Feb-2026 20:42:12","27-Feb-2026 20:42:21","00:09","14","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","28-Feb-2026 ","28-Feb-2026 18:01:04","28-Feb-2026 18:01:15","00:11","15","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","01-Mar-2026 ","01-Mar-2026 18:01:16","01-Mar-2026 18:01:32","00:16","16","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","02-Mar-2026 ","03-Mar-2026 05:26:34","03-Mar-2026 05:26:46","00:12","17","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","03-Mar-2026 ","03-Mar-2026 18:04:19","03-Mar-2026 18:04:31","00:12","18","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","04-Mar-2026 ","04-Mar-2026 18:01:30","04-Mar-2026 18:01:49","00:19","19","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","05-Mar-2026 ","05-Mar-2026 18:45:17","05-Mar-2026 18:45:33","00:16","20","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","06-Mar-2026 ","06-Mar-2026 18:01:03","06-Mar-2026 18:01:14","00:11","21","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","07-Mar-2026 ","07-Mar-2026 18:02:17","07-Mar-2026 18:02:32","00:15","22","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","08-Mar-2026 ","08-Mar-2026 19:22:45","08-Mar-2026 19:23:09","00:24","23","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","09-Mar-2026 ","09-Mar-2026 18:31:35","09-Mar-2026 18:31:47","00:12","24","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","10-Mar-2026 ","11-Mar-2026 04:23:18","11-Mar-2026 04:23:33","00:15","25","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","11-Mar-2026 ","11-Mar-2026 19:37:36","11-Mar-2026 19:37:46","00:10","26","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","12-Mar-2026 ","12-Mar-2026 18:38:17","12-Mar-2026 18:38:48","00:31","27","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","13-Mar-2026 ","13-Mar-2026 18:11:32","13-Mar-2026 18:12:40","01:08","28","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","14-Mar-2026 ","15-Mar-2026 18:01:21","15-Mar-2026 18:01:42","00:21","29","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","15-Mar-2026 ","15-Mar-2026 18:02:03","15-Mar-2026 18:02:15","00:12","30","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","16-Mar-2026 ","16-Mar-2026 18:01:07","16-Mar-2026 18:01:18","00:11","31","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","17-Mar-2026 ","17-Mar-2026 18:01:24","17-Mar-2026 18:01:45","00:21","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","18-Mar-2026 ","18-Mar-2026 18:01:37","18-Mar-2026 18:01:49","00:12","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","19-Mar-2026 ","19-Mar-2026 22:33:50","19-Mar-2026 22:34:02","00:12","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","20-Mar-2026 ","20-Mar-2026 18:15:17","20-Mar-2026 18:15:44","00:27","35","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","22-Mar-2026 ","23-Mar-2026 14:36:21","23-Mar-2026 14:36:42","00:21","36","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","15","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","23-Mar-2026 ","23-Mar-2026 18:01:19","23-Mar-2026 18:01:30","00:11","37","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","24-Mar-2026 ","24-Mar-2026 18:01:21","24-Mar-2026 18:01:30","00:09","38","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","25-Mar-2026 ","25-Mar-2026 18:25:02","25-Mar-2026 18:25:32","00:30","39","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","26-Mar-2026 ","26-Mar-2026 21:16:14","26-Mar-2026 21:16:57","00:43","40","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","27-Mar-2026 ","27-Mar-2026 18:01:41","27-Mar-2026 18:02:23","00:42","41","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","28-Mar-2026 ","28-Mar-2026 18:02:57","28-Mar-2026 18:03:21","00:24","42","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","29-Mar-2026 ","29-Mar-2026 19:21:39","29-Mar-2026 19:21:51","00:12","43","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","30-Mar-2026 ","30-Mar-2026 18:44:16","30-Mar-2026 18:44:28","00:12","44","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","31-Mar-2026 ","31-Mar-2026 21:37:52","31-Mar-2026 21:38:05","00:13","45","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","14","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","01-Apr-2026 ","01-Apr-2026 21:10:45","01-Apr-2026 21:11:02","00:17","46","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","12","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","02-Apr-2026 ","03-Apr-2026 18:42:35","03-Apr-2026 18:42:48","00:13","47","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","03-Apr-2026 ","03-Apr-2026 18:43:12","03-Apr-2026 18:43:21","00:09","48","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","11","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","04-Apr-2026 ","04-Apr-2026 22:55:47","04-Apr-2026 22:55:57","00:10","49","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","13","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","05-Apr-2026 ","06-Apr-2026 18:01:34","06-Apr-2026 18:01:49","00:15","50","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","06-Apr-2026 ","06-Apr-2026 18:02:13","06-Apr-2026 18:02:23","00:10","51","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","16","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","07-Apr-2026 ","07-Apr-2026 20:36:00","07-Apr-2026 20:36:10","00:10","52","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","08-Apr-2026 ","09-Apr-2026 18:12:35","09-Apr-2026 18:12:49","00:14","53","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","18","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","09-Apr-2026 ","09-Apr-2026 18:13:13","09-Apr-2026 18:13:27","00:14","54","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","18","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","10-Apr-2026 ","11-Apr-2026 18:01:29","11-Apr-2026 18:01:43","00:14","55","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","11-Apr-2026 ","11-Apr-2026 18:02:09","11-Apr-2026 18:02:19","00:10","56","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","19","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","12-Apr-2026 ","12-Apr-2026 18:01:35","12-Apr-2026 18:01:55","00:20","57","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","20","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","13-Apr-2026 ","13-Apr-2026 18:01:30","13-Apr-2026 18:01:51","00:21","58","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","22","1","Yes, I confirm this is the correct stool count","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","14-Apr-2026 ","14-Apr-2026 19:02:00","14-Apr-2026 19:02:23","00:23","59","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","15-Apr-2026 ","15-Apr-2026 18:26:38","15-Apr-2026 18:26:49","00:11","60","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","12","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","18-Apr-2026 ","19-Apr-2026 14:44:39","19-Apr-2026 14:44:50","00:11","61","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","19-Apr-2026 ","19-Apr-2026 18:01:18","19-Apr-2026 18:01:27","00:09","62","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","20-Apr-2026 ","20-Apr-2026 20:33:26","20-Apr-2026 20:33:37","00:11","63","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","21-Apr-2026 ","22-Apr-2026 21:55:40","22-Apr-2026 21:55:51","00:11","64","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","22-Apr-2026 ","22-Apr-2026 21:56:21","22-Apr-2026 21:56:30","00:09","65","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","23-Apr-2026 ","23-Apr-2026 18:46:35","23-Apr-2026 18:46:49","00:14","66","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","24-Apr-2026 ","25-Apr-2026 18:23:56","25-Apr-2026 18:24:09","00:13","67","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","25-Apr-2026 ","25-Apr-2026 18:24:36","25-Apr-2026 18:24:46","00:10","68","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","26-Apr-2026 ","26-Apr-2026 21:00:47","26-Apr-2026 21:00:56","00:09","69","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","27-Apr-2026 ","27-Apr-2026 18:22:29","27-Apr-2026 18:22:37","00:08","70","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","28-Apr-2026 ","28-Apr-2026 22:44:39","28-Apr-2026 22:44:49","00:10","71","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","29-Apr-2026 ","29-Apr-2026 22:49:50","29-Apr-2026 22:49:59","00:09","72","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","30-Apr-2026 ","30-Apr-2026 20:47:29","30-Apr-2026 20:47:37","00:08","73","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","01-May-2026 ","01-May-2026 21:43:23","01-May-2026 21:43:33","00:10","74","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","02-May-2026 ","02-May-2026 21:07:46","02-May-2026 21:07:56","00:10","75","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","03-May-2026 ","03-May-2026 21:43:35","03-May-2026 21:43:47","00:12","76","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","05-May-2026 ","06-May-2026 18:20:31","06-May-2026 18:20:43","00:12","77","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","06-May-2026 ","06-May-2026 18:21:12","06-May-2026 18:21:22","00:10","78","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","07-May-2026 ","07-May-2026 20:37:45","07-May-2026 20:38:13","00:28","79","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","08-May-2026 ","08-May-2026 18:31:28","08-May-2026 18:31:38","00:10","80","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","09-May-2026 ","09-May-2026 21:38:50","09-May-2026 21:38:58","00:08","81","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","10-May-2026 ","10-May-2026 22:01:51","10-May-2026 22:02:04","00:13","82","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","11-May-2026 ","11-May-2026 22:42:31","11-May-2026 22:42:39","00:08","83","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","12-May-2026 ","12-May-2026 19:03:36","12-May-2026 19:03:48","00:12","84","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","13-May-2026 ","13-May-2026 20:59:19","13-May-2026 20:59:30","00:11","85","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","14-May-2026 ","14-May-2026 20:18:42","14-May-2026 20:18:54","00:12","86","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","15-May-2026 ","15-May-2026 20:48:11","15-May-2026 20:48:21","00:10","87","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","16-May-2026 ","17-May-2026 19:32:54","17-May-2026 19:33:03","00:09","88","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","17-May-2026 ","17-May-2026 19:33:35","17-May-2026 19:33:43","00:08","89","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","18-May-2026 ","18-May-2026 20:55:22","18-May-2026 20:55:31","00:09","90","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","19-May-2026 ","19-May-2026 22:00:42","19-May-2026 22:00:50","00:08","91","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","20-May-2026 ","20-May-2026 19:56:20","20-May-2026 19:56:35","00:15","92","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","21-May-2026 ","21-May-2026 20:02:23","21-May-2026 20:02:32","00:09","93","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","22-May-2026 ","22-May-2026 22:00:12","22-May-2026 22:00:25","00:13","94","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","23-May-2026 ","23-May-2026 22:09:23","23-May-2026 22:09:31","00:08","95","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","24-May-2026 ","25-May-2026 19:37:07","25-May-2026 19:37:19","00:12","96","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","25-May-2026 ","25-May-2026 19:37:51","25-May-2026 19:38:01","00:10","97","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","19","1","","26-May-2026 ","26-May-2026 19:50:53","26-May-2026 19:51:00","00:07","98","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","20-Apr-2026 ","20-Apr-2026 21:15:38","20-Apr-2026 21:16:41","01:03","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","21-Apr-2026 ","21-Apr-2026 18:03:25","21-Apr-2026 18:04:56","01:31","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","22-Apr-2026 ","22-Apr-2026 19:12:37","22-Apr-2026 19:13:09","00:32","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","23-Apr-2026 ","23-Apr-2026 20:30:34","23-Apr-2026 20:31:02","00:28","4","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","24-Apr-2026 ","24-Apr-2026 20:09:04","24-Apr-2026 20:09:46","00:42","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","25-Apr-2026 ","25-Apr-2026 20:06:32","25-Apr-2026 20:07:07","00:35","6","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","26-Apr-2026 ","26-Apr-2026 21:59:32","26-Apr-2026 22:00:01","00:29","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","27-Apr-2026 ","27-Apr-2026 19:38:17","27-Apr-2026 19:38:44","00:27","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","28-Apr-2026 ","28-Apr-2026 23:29:55","28-Apr-2026 23:30:19","00:24","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","29-Apr-2026 ","29-Apr-2026 19:44:25","29-Apr-2026 19:44:49","00:24","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","30-Apr-2026 ","30-Apr-2026 18:03:54","30-Apr-2026 18:04:24","00:30","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","01-May-2026 ","01-May-2026 21:14:03","01-May-2026 21:14:43","00:40","12","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","02-May-2026 ","02-May-2026 18:01:20","02-May-2026 18:01:55","00:35","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","03-May-2026 ","03-May-2026 23:02:06","03-May-2026 23:02:39","00:33","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","04-May-2026 ","04-May-2026 22:02:36","04-May-2026 22:03:10","00:34","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","05-May-2026 ","05-May-2026 20:28:15","05-May-2026 20:29:13","00:58","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","06-May-2026 ","06-May-2026 18:07:07","06-May-2026 18:08:40","01:33","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","07-May-2026 ","07-May-2026 21:39:42","07-May-2026 21:40:09","00:27","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","08-May-2026 ","08-May-2026 19:18:31","08-May-2026 19:19:10","00:39","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","09-May-2026 ","09-May-2026 22:03:28","09-May-2026 22:04:07","00:39","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","10-May-2026 ","10-May-2026 21:59:21","10-May-2026 22:00:01","00:40","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","11-May-2026 ","11-May-2026 20:50:01","11-May-2026 20:50:22","00:21","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","12-May-2026 ","12-May-2026 22:35:56","12-May-2026 22:36:50","00:54","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","13-May-2026 ","13-May-2026 21:41:50","13-May-2026 21:42:19","00:29","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","14-May-2026 ","14-May-2026 21:16:25","14-May-2026 21:17:02","00:37","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","15-May-2026 ","15-May-2026 21:52:56","15-May-2026 21:53:22","00:26","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","16-May-2026 ","16-May-2026 18:31:25","16-May-2026 18:31:51","00:26","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","17-May-2026 ","17-May-2026 20:47:42","17-May-2026 20:48:00","00:18","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","18-May-2026 ","19-May-2026 06:20:57","19-May-2026 06:21:20","00:23","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","19-May-2026 ","19-May-2026 20:42:32","19-May-2026 20:42:58","00:26","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","20-May-2026 ","21-May-2026 06:15:07","21-May-2026 06:15:24","00:17","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","21-May-2026 ","21-May-2026 21:38:28","21-May-2026 21:39:00","00:32","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","22-May-2026 ","22-May-2026 22:14:30","22-May-2026 22:14:59","00:29","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","23-May-2026 ","23-May-2026 22:46:03","23-May-2026 22:46:25","00:22","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","24-May-2026 ","25-May-2026 07:10:54","25-May-2026 07:11:24","00:30","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","25-May-2026 ","25-May-2026 19:21:24","25-May-2026 19:21:48","00:24","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","49","1","","26-May-2026 ","26-May-2026 20:04:29","26-May-2026 20:05:07","00:38","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","31-Mar-2026 ","31-Mar-2026 18:29:57","31-Mar-2026 18:47:37","17:40","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","01-Apr-2026 ","01-Apr-2026 18:31:44","01-Apr-2026 18:33:40","01:56","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","02-Apr-2026 ","02-Apr-2026 18:36:48","02-Apr-2026 18:37:55","01:07","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","03-Apr-2026 ","03-Apr-2026 18:33:32","03-Apr-2026 18:34:22","00:50","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","04-Apr-2026 ","04-Apr-2026 18:34:52","04-Apr-2026 18:35:36","00:44","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","05-Apr-2026 ","05-Apr-2026 19:08:11","05-Apr-2026 19:08:38","00:27","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","06-Apr-2026 ","06-Apr-2026 18:33:36","06-Apr-2026 18:34:13","00:37","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","07-Apr-2026 ","07-Apr-2026 18:47:34","07-Apr-2026 18:48:10","00:36","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","08-Apr-2026 ","09-Apr-2026 18:23:22","09-Apr-2026 18:24:09","00:47","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","09-Apr-2026 ","09-Apr-2026 18:24:36","09-Apr-2026 18:25:06","00:30","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","10-Apr-2026 ","10-Apr-2026 18:01:29","10-Apr-2026 18:02:12","00:43","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","11-Apr-2026 ","11-Apr-2026 18:17:12","11-Apr-2026 18:18:02","00:50","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","12-Apr-2026 ","12-Apr-2026 18:04:08","12-Apr-2026 18:05:08","01:00","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","13-Apr-2026 ","13-Apr-2026 18:29:53","13-Apr-2026 18:30:18","00:25","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","14-Apr-2026 ","14-Apr-2026 18:16:55","14-Apr-2026 18:17:17","00:22","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","15-Apr-2026 ","15-Apr-2026 18:11:38","15-Apr-2026 18:12:08","00:30","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","16-Apr-2026 ","16-Apr-2026 18:09:46","16-Apr-2026 18:10:31","00:45","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","17-Apr-2026 ","17-Apr-2026 18:42:09","17-Apr-2026 18:43:13","01:04","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","18-Apr-2026 ","18-Apr-2026 18:15:17","18-Apr-2026 18:16:21","01:04","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","19-Apr-2026 ","19-Apr-2026 19:05:45","19-Apr-2026 19:06:13","00:28","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","20-Apr-2026 ","20-Apr-2026 18:27:20","20-Apr-2026 18:28:23","01:03","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","21-Apr-2026 ","21-Apr-2026 18:19:48","21-Apr-2026 18:20:25","00:37","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","22-Apr-2026 ","22-Apr-2026 18:12:05","22-Apr-2026 18:12:42","00:37","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","23-Apr-2026 ","23-Apr-2026 18:05:12","23-Apr-2026 18:05:40","00:28","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","24-Apr-2026 ","24-Apr-2026 18:15:58","24-Apr-2026 18:16:23","00:25","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","25-Apr-2026 ","25-Apr-2026 18:27:21","25-Apr-2026 18:27:43","00:22","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","26-Apr-2026 ","26-Apr-2026 19:37:21","26-Apr-2026 19:37:44","00:23","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","27-Apr-2026 ","27-Apr-2026 18:32:55","27-Apr-2026 18:33:18","00:23","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","28-Apr-2026 ","28-Apr-2026 18:12:37","28-Apr-2026 18:13:06","00:29","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","29-Apr-2026 ","29-Apr-2026 18:22:57","29-Apr-2026 18:23:18","00:21","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","30-Apr-2026 ","30-Apr-2026 18:05:56","30-Apr-2026 18:06:38","00:42","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","01-May-2026 ","01-May-2026 18:06:30","01-May-2026 18:06:53","00:23","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","02-May-2026 ","02-May-2026 18:06:44","02-May-2026 18:07:10","00:26","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","03-May-2026 ","03-May-2026 18:20:14","03-May-2026 18:20:40","00:26","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","04-May-2026 ","04-May-2026 18:10:14","04-May-2026 18:10:39","00:25","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","05-May-2026 ","05-May-2026 18:13:52","05-May-2026 18:14:14","00:22","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","06-May-2026 ","06-May-2026 18:27:25","06-May-2026 18:27:43","00:18","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","07-May-2026 ","07-May-2026 18:16:09","07-May-2026 18:16:34","00:25","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","08-May-2026 ","08-May-2026 18:05:30","08-May-2026 18:05:50","00:20","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","09-May-2026 ","09-May-2026 18:03:43","09-May-2026 18:04:01","00:18","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","10-May-2026 ","10-May-2026 18:13:20","10-May-2026 18:13:42","00:22","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","11-May-2026 ","11-May-2026 18:02:26","11-May-2026 18:02:54","00:28","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","12-May-2026 ","12-May-2026 18:16:11","12-May-2026 18:16:34","00:23","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","13-May-2026 ","13-May-2026 18:13:23","13-May-2026 18:13:42","00:19","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","14-May-2026 ","14-May-2026 18:18:23","14-May-2026 18:18:56","00:33","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","15-May-2026 ","15-May-2026 18:05:23","15-May-2026 18:05:47","00:24","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","16-May-2026 ","16-May-2026 19:15:24","16-May-2026 19:15:50","00:26","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","17-May-2026 ","17-May-2026 18:42:31","17-May-2026 18:42:46","00:15","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","18-May-2026 ","18-May-2026 18:07:10","18-May-2026 18:07:31","00:21","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","19-May-2026 ","19-May-2026 18:08:00","19-May-2026 18:08:22","00:22","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","20-May-2026 ","20-May-2026 18:46:47","20-May-2026 18:47:10","00:23","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","21-May-2026 ","21-May-2026 18:25:08","21-May-2026 18:25:33","00:25","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","22-May-2026 ","22-May-2026 18:10:28","22-May-2026 18:10:57","00:29","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","23-May-2026 ","23-May-2026 18:49:12","23-May-2026 18:49:37","00:25","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","24-May-2026 ","24-May-2026 18:24:57","24-May-2026 18:25:19","00:22","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","25-May-2026 ","25-May-2026 18:59:42","25-May-2026 19:00:03","00:21","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","49","1","","26-May-2026 ","26-May-2026 19:02:50","26-May-2026 19:03:13","00:23","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","16-Apr-2026 ","16-Apr-2026 18:04:28","16-Apr-2026 18:06:48","02:20","1","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","17-Apr-2026 ","17-Apr-2026 21:22:55","17-Apr-2026 21:25:27","02:32","2","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","18-Apr-2026 ","19-Apr-2026 20:05:25","19-Apr-2026 20:07:39","02:14","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","19-Apr-2026 ","19-Apr-2026 20:08:07","19-Apr-2026 20:12:24","04:17","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","20-Apr-2026 ","21-Apr-2026 21:33:43","21-Apr-2026 21:36:30","02:47","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","21-Apr-2026 ","21-Apr-2026 21:37:06","21-Apr-2026 21:38:37","01:31","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","22-Apr-2026 ","23-Apr-2026 22:28:26","23-Apr-2026 22:30:27","02:01","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","23-Apr-2026 ","23-Apr-2026 22:31:08","23-Apr-2026 22:32:58","01:50","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","24-Apr-2026 ","25-Apr-2026 19:10:46","25-Apr-2026 19:13:10","02:24","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","25-Apr-2026 ","25-Apr-2026 19:13:39","25-Apr-2026 19:14:21","00:42","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","26-Apr-2026 ","26-Apr-2026 20:00:34","26-Apr-2026 20:01:48","01:14","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","27-Apr-2026 ","27-Apr-2026 20:59:09","27-Apr-2026 21:03:03","03:54","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","28-Apr-2026 ","29-Apr-2026 12:06:59","29-Apr-2026 12:09:04","02:05","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","29-Apr-2026 ","30-Apr-2026 20:47:12","30-Apr-2026 20:48:25","01:13","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","30-Apr-2026 ","30-Apr-2026 20:48:54","30-Apr-2026 20:49:27","00:33","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","01-May-2026 ","01-May-2026 23:05:43","01-May-2026 23:08:41","02:58","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","02-May-2026 ","02-May-2026 21:59:39","02-May-2026 22:00:07","00:28","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","03-May-2026 ","03-May-2026 20:48:50","03-May-2026 20:49:39","00:49","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","04-May-2026 ","04-May-2026 23:06:12","04-May-2026 23:07:05","00:53","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","05-May-2026 ","05-May-2026 22:34:33","05-May-2026 22:36:46","02:13","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","06-May-2026 ","07-May-2026 20:20:36","07-May-2026 20:21:23","00:47","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","07-May-2026 ","07-May-2026 20:21:51","07-May-2026 20:22:22","00:31","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","09-May-2026 ","10-May-2026 09:56:26","10-May-2026 09:57:46","01:20","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","12-May-2026 ","12-May-2026 23:17:00","12-May-2026 23:17:43","00:43","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","13-May-2026 ","13-May-2026 19:25:14","13-May-2026 19:26:42","01:28","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","0","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","14-May-2026 ","14-May-2026 18:38:36","14-May-2026 18:39:02","00:26","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","15-May-2026 ","15-May-2026 22:58:22","15-May-2026 22:59:14","00:52","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","16-May-2026 ","16-May-2026 23:23:13","16-May-2026 23:23:30","00:17","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","17-May-2026 ","18-May-2026 12:46:24","18-May-2026 12:47:00","00:36","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092002","55","1","","18-May-2026 ","18-May-2026 23:24:01","18-May-2026 23:26:28","02:27","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","18-Mar-2026 ","18-Mar-2026 18:17:26","18-Mar-2026 18:18:51","01:25","1","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","19-Mar-2026 ","19-Mar-2026 18:01:22","19-Mar-2026 18:02:22","01:00","2","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","20-Mar-2026 ","20-Mar-2026 18:01:14","20-Mar-2026 18:02:17","01:03","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","21-Mar-2026 ","21-Mar-2026 18:28:25","21-Mar-2026 18:28:40","00:15","4","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","22-Mar-2026 ","22-Mar-2026 18:01:58","22-Mar-2026 18:02:15","00:17","5","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","23-Mar-2026 ","24-Mar-2026 00:33:23","24-Mar-2026 00:33:51","00:28","6","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","24-Mar-2026 ","24-Mar-2026 18:01:20","24-Mar-2026 18:01:42","00:22","7","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","25-Mar-2026 ","25-Mar-2026 18:05:59","25-Mar-2026 18:06:09","00:10","8","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","26-Mar-2026 ","26-Mar-2026 18:57:42","26-Mar-2026 18:58:00","00:18","9","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","27-Mar-2026 ","27-Mar-2026 18:05:26","27-Mar-2026 18:05:44","00:18","10","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","28-Mar-2026 ","28-Mar-2026 18:34:55","28-Mar-2026 18:35:13","00:18","11","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","29-Mar-2026 ","29-Mar-2026 18:01:26","29-Mar-2026 18:01:40","00:14","12","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","30-Mar-2026 ","30-Mar-2026 18:15:14","30-Mar-2026 18:15:34","00:20","13","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","31-Mar-2026 ","31-Mar-2026 18:03:24","31-Mar-2026 18:03:43","00:19","14","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","01-Apr-2026 ","01-Apr-2026 18:19:46","01-Apr-2026 18:20:00","00:14","15","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","02-Apr-2026 ","02-Apr-2026 19:54:55","02-Apr-2026 19:55:05","00:10","16","Patient","BYODHandheld","BYODHandheld","0","","0","","1","Yes","0","","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","03-Apr-2026 ","03-Apr-2026 22:16:32","03-Apr-2026 22:16:45","00:13","17","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","04-Apr-2026 ","04-Apr-2026 18:04:41","04-Apr-2026 18:05:01","00:20","18","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","05-Apr-2026 ","05-Apr-2026 22:47:52","05-Apr-2026 22:48:02","00:10","19","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","06-Apr-2026 ","07-Apr-2026 06:06:47","07-Apr-2026 06:07:10","00:23","20","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","1","Yes","0","","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","07-Apr-2026 ","07-Apr-2026 18:10:33","07-Apr-2026 18:11:05","00:32","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","08-Apr-2026 ","09-Apr-2026 21:11:31","09-Apr-2026 21:12:00","00:29","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","09-Apr-2026 ","09-Apr-2026 21:12:19","09-Apr-2026 21:12:49","00:30","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","10-Apr-2026 ","10-Apr-2026 18:04:26","10-Apr-2026 18:04:42","00:16","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","11-Apr-2026 ","11-Apr-2026 19:27:38","11-Apr-2026 19:27:54","00:16","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","12-Apr-2026 ","12-Apr-2026 18:01:17","12-Apr-2026 18:01:29","00:12","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","13-Apr-2026 ","14-Apr-2026 05:43:24","14-Apr-2026 05:43:41","00:17","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","14-Apr-2026 ","14-Apr-2026 18:23:04","14-Apr-2026 18:23:16","00:12","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","15-Apr-2026 ","15-Apr-2026 18:01:41","15-Apr-2026 18:01:50","00:09","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","16-Apr-2026 ","16-Apr-2026 18:20:20","16-Apr-2026 18:20:33","00:13","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","17-Apr-2026 ","17-Apr-2026 18:30:28","17-Apr-2026 18:30:46","00:18","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","18-Apr-2026 ","18-Apr-2026 22:43:21","18-Apr-2026 22:43:31","00:10","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","19-Apr-2026 ","19-Apr-2026 18:20:54","19-Apr-2026 18:21:17","00:23","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","20-Apr-2026 ","21-Apr-2026 06:17:37","21-Apr-2026 06:18:03","00:26","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","21-Apr-2026 ","21-Apr-2026 18:01:02","21-Apr-2026 18:01:33","00:31","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","22-Apr-2026 ","22-Apr-2026 19:26:08","22-Apr-2026 19:26:32","00:24","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","23-Apr-2026 ","23-Apr-2026 18:11:27","23-Apr-2026 18:11:39","00:12","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","24-Apr-2026 ","24-Apr-2026 21:33:17","24-Apr-2026 21:33:38","00:21","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","25-Apr-2026 ","25-Apr-2026 21:50:02","25-Apr-2026 21:50:24","00:22","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","26-Apr-2026 ","26-Apr-2026 19:05:52","26-Apr-2026 19:06:03","00:11","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","27-Apr-2026 ","27-Apr-2026 18:39:18","27-Apr-2026 18:39:30","00:12","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","28-Apr-2026 ","28-Apr-2026 18:31:50","28-Apr-2026 18:32:10","00:20","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","29-Apr-2026 ","29-Apr-2026 18:46:29","29-Apr-2026 18:46:58","00:29","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","30-Apr-2026 ","30-Apr-2026 18:14:43","30-Apr-2026 18:15:07","00:24","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","01-May-2026 ","01-May-2026 22:22:43","01-May-2026 22:22:57","00:14","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","02-May-2026 ","02-May-2026 18:04:04","02-May-2026 18:04:16","00:12","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","03-May-2026 ","03-May-2026 18:02:06","03-May-2026 18:03:05","00:59","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","04-May-2026 ","04-May-2026 18:33:13","04-May-2026 18:33:26","00:13","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","05-May-2026 ","05-May-2026 19:02:55","05-May-2026 19:03:06","00:11","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","06-May-2026 ","06-May-2026 18:03:45","06-May-2026 18:04:11","00:26","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","07-May-2026 ","07-May-2026 21:26:53","07-May-2026 21:27:10","00:17","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","08-May-2026 ","08-May-2026 18:36:10","08-May-2026 18:36:31","00:21","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","09-May-2026 ","10-May-2026 19:42:33","10-May-2026 19:42:51","00:18","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","10-May-2026 ","10-May-2026 19:43:17","10-May-2026 19:43:27","00:10","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","11-May-2026 ","12-May-2026 06:36:35","12-May-2026 06:36:58","00:23","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","12-May-2026 ","13-May-2026 05:13:59","13-May-2026 05:14:14","00:15","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","13-May-2026 ","13-May-2026 18:05:45","13-May-2026 18:05:57","00:12","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","14-May-2026 ","14-May-2026 18:41:45","14-May-2026 18:41:59","00:14","58","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","15-May-2026 ","15-May-2026 19:46:08","15-May-2026 19:46:37","00:29","59","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","16-May-2026 ","16-May-2026 19:28:50","16-May-2026 19:29:04","00:14","60","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","17-May-2026 ","17-May-2026 19:42:34","17-May-2026 19:42:45","00:11","61","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","18-May-2026 ","18-May-2026 18:05:59","18-May-2026 18:06:14","00:15","62","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","19-May-2026 ","19-May-2026 19:20:23","19-May-2026 19:20:39","00:16","63","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","20-May-2026 ","20-May-2026 18:44:46","20-May-2026 18:44:58","00:12","64","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","21-May-2026 ","21-May-2026 18:26:11","21-May-2026 18:26:22","00:11","65","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","22-May-2026 ","22-May-2026 18:00:39","22-May-2026 18:01:09","00:30","66","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","23-May-2026 ","23-May-2026 19:15:06","23-May-2026 19:15:15","00:09","67","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","24-May-2026 ","24-May-2026 18:08:48","24-May-2026 18:09:01","00:13","68","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","25-May-2026 ","25-May-2026 21:52:52","25-May-2026 21:53:04","00:12","69","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","22","5","Yes, I confirm this is the correct stool count.","26-May-2026 ","26-May-2026 19:41:29","26-May-2026 19:41:42","00:13","70","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","27-Feb-2026 ","27-Feb-2026 23:03:44","27-Feb-2026 23:05:27","01:43","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","28-Feb-2026 ","28-Feb-2026 22:00:47","28-Feb-2026 22:01:40","00:53","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","01-Mar-2026 ","01-Mar-2026 23:09:45","01-Mar-2026 23:10:07","00:22","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","02-Mar-2026 ","03-Mar-2026 21:17:31","03-Mar-2026 21:18:07","00:36","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","03-Mar-2026 ","03-Mar-2026 21:18:25","03-Mar-2026 21:18:51","00:26","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","04-Mar-2026 ","04-Mar-2026 21:07:08","04-Mar-2026 21:07:32","00:24","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","05-Mar-2026 ","05-Mar-2026 21:46:49","05-Mar-2026 21:47:07","00:18","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","06-Mar-2026 ","06-Mar-2026 20:40:38","06-Mar-2026 20:40:58","00:20","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","07-Mar-2026 ","07-Mar-2026 21:42:08","07-Mar-2026 21:42:22","00:14","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","08-Mar-2026 ","08-Mar-2026 21:03:19","08-Mar-2026 21:04:22","01:03","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","09-Mar-2026 ","09-Mar-2026 19:46:43","09-Mar-2026 19:47:09","00:26","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","10-Mar-2026 ","10-Mar-2026 20:21:28","10-Mar-2026 20:21:44","00:16","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","11-Mar-2026 ","11-Mar-2026 19:06:20","11-Mar-2026 19:06:34","00:14","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","12-Mar-2026 ","12-Mar-2026 21:14:54","12-Mar-2026 21:15:33","00:39","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","13-Mar-2026 ","13-Mar-2026 20:57:55","13-Mar-2026 20:58:17","00:22","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","14-Mar-2026 ","15-Mar-2026 07:17:23","15-Mar-2026 07:18:13","00:50","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","15-Mar-2026 ","15-Mar-2026 20:10:10","15-Mar-2026 20:10:42","00:32","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","16-Mar-2026 ","16-Mar-2026 22:25:52","16-Mar-2026 22:26:14","00:22","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","17-Mar-2026 ","17-Mar-2026 22:09:11","17-Mar-2026 22:09:28","00:17","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","18-Mar-2026 ","18-Mar-2026 20:38:45","18-Mar-2026 20:39:02","00:17","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","19-Mar-2026 ","19-Mar-2026 20:16:41","19-Mar-2026 20:16:54","00:13","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","20-Mar-2026 ","20-Mar-2026 22:41:13","20-Mar-2026 22:41:30","00:17","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","21-Mar-2026 ","21-Mar-2026 21:18:07","21-Mar-2026 21:19:04","00:57","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","22-Mar-2026 ","22-Mar-2026 22:15:27","22-Mar-2026 22:15:47","00:20","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","23-Mar-2026 ","23-Mar-2026 20:42:59","23-Mar-2026 20:43:09","00:10","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","24-Mar-2026 ","24-Mar-2026 20:00:24","24-Mar-2026 20:01:00","00:36","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","25-Mar-2026 ","25-Mar-2026 20:21:59","25-Mar-2026 20:22:17","00:18","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","26-Mar-2026 ","26-Mar-2026 21:44:02","26-Mar-2026 21:44:15","00:13","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","27-Mar-2026 ","28-Mar-2026 01:49:30","28-Mar-2026 01:49:52","00:22","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","28-Mar-2026 ","28-Mar-2026 20:43:13","28-Mar-2026 20:43:29","00:16","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","29-Mar-2026 ","29-Mar-2026 22:28:00","29-Mar-2026 22:28:35","00:35","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","30-Mar-2026 ","30-Mar-2026 21:46:17","30-Mar-2026 21:46:29","00:12","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","31-Mar-2026 ","31-Mar-2026 20:40:46","31-Mar-2026 20:40:58","00:12","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","01-Apr-2026 ","01-Apr-2026 21:24:04","01-Apr-2026 21:24:19","00:15","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","02-Apr-2026 ","02-Apr-2026 21:40:44","02-Apr-2026 21:40:59","00:15","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","03-Apr-2026 ","03-Apr-2026 22:39:57","03-Apr-2026 22:40:09","00:12","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","04-Apr-2026 ","04-Apr-2026 22:20:46","04-Apr-2026 22:21:00","00:14","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","05-Apr-2026 ","05-Apr-2026 22:23:58","05-Apr-2026 22:24:11","00:13","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","06-Apr-2026 ","06-Apr-2026 22:45:16","06-Apr-2026 22:45:36","00:20","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","07-Apr-2026 ","07-Apr-2026 23:22:12","07-Apr-2026 23:22:24","00:12","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","08-Apr-2026 ","09-Apr-2026 18:14:46","09-Apr-2026 18:14:59","00:13","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","09-Apr-2026 ","09-Apr-2026 18:15:24","09-Apr-2026 18:15:34","00:10","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","10-Apr-2026 ","10-Apr-2026 22:19:01","10-Apr-2026 22:19:17","00:16","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","11-Apr-2026 ","11-Apr-2026 22:52:56","11-Apr-2026 22:53:14","00:18","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","12-Apr-2026 ","12-Apr-2026 21:27:59","12-Apr-2026 21:28:08","00:09","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","13-Apr-2026 ","14-Apr-2026 00:16:06","14-Apr-2026 00:16:21","00:15","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","14-Apr-2026 ","14-Apr-2026 21:23:53","14-Apr-2026 21:24:03","00:10","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","15-Apr-2026 ","15-Apr-2026 18:45:29","15-Apr-2026 18:45:37","00:08","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","16-Apr-2026 ","16-Apr-2026 21:46:45","16-Apr-2026 21:46:56","00:11","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","17-Apr-2026 ","17-Apr-2026 21:47:44","17-Apr-2026 21:47:55","00:11","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","18-Apr-2026 ","18-Apr-2026 21:08:02","18-Apr-2026 21:08:16","00:14","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","19-Apr-2026 ","19-Apr-2026 21:06:45","19-Apr-2026 21:06:58","00:13","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","20-Apr-2026 ","20-Apr-2026 21:23:26","20-Apr-2026 21:23:36","00:10","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","21-Apr-2026 ","21-Apr-2026 21:56:38","21-Apr-2026 21:56:58","00:20","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","22-Apr-2026 ","22-Apr-2026 21:18:10","22-Apr-2026 21:18:20","00:10","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","23-Apr-2026 ","23-Apr-2026 21:46:41","23-Apr-2026 21:46:54","00:13","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","24-Apr-2026 ","24-Apr-2026 21:59:32","24-Apr-2026 21:59:56","00:24","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","25-Apr-2026 ","25-Apr-2026 22:34:04","25-Apr-2026 22:34:16","00:12","58","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","26-Apr-2026 ","26-Apr-2026 18:32:29","26-Apr-2026 18:32:39","00:10","59","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","27-Apr-2026 ","27-Apr-2026 20:48:50","27-Apr-2026 20:49:05","00:15","60","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","28-Apr-2026 ","28-Apr-2026 21:33:40","28-Apr-2026 21:33:56","00:16","61","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","29-Apr-2026 ","29-Apr-2026 22:24:17","29-Apr-2026 22:24:31","00:14","62","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","30-Apr-2026 ","30-Apr-2026 20:44:59","30-Apr-2026 20:45:10","00:11","63","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","01-May-2026 ","01-May-2026 22:08:20","01-May-2026 22:08:36","00:16","64","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","02-May-2026 ","02-May-2026 22:47:23","02-May-2026 22:47:36","00:13","65","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","03-May-2026 ","03-May-2026 22:04:34","03-May-2026 22:04:46","00:12","66","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","04-May-2026 ","04-May-2026 22:18:22","04-May-2026 22:18:37","00:15","67","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","05-May-2026 ","05-May-2026 20:52:05","05-May-2026 20:52:21","00:16","68","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","06-May-2026 ","06-May-2026 21:53:26","06-May-2026 21:53:40","00:14","69","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","07-May-2026 ","07-May-2026 22:03:10","07-May-2026 22:03:25","00:15","70","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","08-May-2026 ","09-May-2026 08:05:31","09-May-2026 08:06:06","00:35","71","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","09-May-2026 ","09-May-2026 22:35:37","09-May-2026 22:36:16","00:39","72","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","10-May-2026 ","10-May-2026 22:57:33","10-May-2026 22:57:43","00:10","73","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","11-May-2026 ","11-May-2026 22:05:17","11-May-2026 22:05:27","00:10","74","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","12-May-2026 ","12-May-2026 22:11:54","12-May-2026 22:12:06","00:12","75","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","13-May-2026 ","13-May-2026 19:03:38","13-May-2026 19:03:48","00:10","76","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","14-May-2026 ","14-May-2026 21:45:03","14-May-2026 21:45:12","00:09","77","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","15-May-2026 ","15-May-2026 21:23:03","15-May-2026 21:23:15","00:12","78","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","16-May-2026 ","16-May-2026 22:50:45","16-May-2026 22:50:54","00:09","79","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","17-May-2026 ","17-May-2026 23:21:33","17-May-2026 23:21:47","00:14","80","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","18-May-2026 ","18-May-2026 20:53:38","18-May-2026 20:53:47","00:09","81","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","19-May-2026 ","19-May-2026 22:30:38","19-May-2026 22:30:47","00:09","82","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","20-May-2026 ","20-May-2026 22:46:06","20-May-2026 22:46:26","00:20","83","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","21-May-2026 ","21-May-2026 21:37:09","21-May-2026 21:37:24","00:15","84","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","22-May-2026 ","22-May-2026 22:05:40","22-May-2026 22:05:59","00:19","85","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","23-May-2026 ","24-May-2026 10:05:24","24-May-2026 10:05:44","00:20","86","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","24-May-2026 ","24-May-2026 22:03:18","24-May-2026 22:03:28","00:10","87","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","25-May-2026 ","26-May-2026 07:34:48","26-May-2026 07:35:03","00:15","88","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","29","1","","26-May-2026 ","26-May-2026 21:00:23","26-May-2026 21:00:32","00:09","89","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","01-Apr-2026 ","01-Apr-2026 20:42:48","01-Apr-2026 20:44:08","01:20","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","02-Apr-2026 ","02-Apr-2026 22:34:46","02-Apr-2026 22:35:23","00:37","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","03-Apr-2026 ","03-Apr-2026 19:40:50","03-Apr-2026 19:41:26","00:36","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","04-Apr-2026 ","04-Apr-2026 21:34:52","04-Apr-2026 21:35:20","00:28","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","05-Apr-2026 ","05-Apr-2026 20:47:56","05-Apr-2026 20:48:17","00:21","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","06-Apr-2026 ","06-Apr-2026 23:05:55","06-Apr-2026 23:06:13","00:18","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","07-Apr-2026 ","07-Apr-2026 21:39:21","07-Apr-2026 21:39:43","00:22","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","08-Apr-2026 ","09-Apr-2026 18:02:39","09-Apr-2026 18:03:05","00:26","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","09-Apr-2026 ","09-Apr-2026 18:03:29","09-Apr-2026 18:03:43","00:14","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","10-Apr-2026 ","10-Apr-2026 18:17:13","10-Apr-2026 18:17:32","00:19","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","11-Apr-2026 ","11-Apr-2026 18:02:06","11-Apr-2026 18:02:31","00:25","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","12-Apr-2026 ","12-Apr-2026 20:40:55","12-Apr-2026 20:41:15","00:20","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","13-Apr-2026 ","13-Apr-2026 19:31:34","13-Apr-2026 19:31:48","00:14","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","14-Apr-2026 ","14-Apr-2026 20:27:48","14-Apr-2026 20:28:12","00:24","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","15-Apr-2026 ","16-Apr-2026 07:42:13","16-Apr-2026 07:42:32","00:19","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","16-Apr-2026 ","16-Apr-2026 19:55:45","16-Apr-2026 19:56:05","00:20","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","17-Apr-2026 ","17-Apr-2026 21:11:08","17-Apr-2026 21:11:44","00:36","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","18-Apr-2026 ","18-Apr-2026 18:24:43","18-Apr-2026 18:24:57","00:14","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","19-Apr-2026 ","20-Apr-2026 09:13:58","20-Apr-2026 09:14:22","00:24","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","20-Apr-2026 ","20-Apr-2026 18:50:09","20-Apr-2026 18:50:29","00:20","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","21-Apr-2026 ","21-Apr-2026 18:02:37","21-Apr-2026 18:05:29","02:52","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","18","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","22-Apr-2026 ","22-Apr-2026 22:35:07","22-Apr-2026 22:35:25","00:18","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","23-Apr-2026 ","24-Apr-2026 08:04:27","24-Apr-2026 08:04:41","00:14","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","24-Apr-2026 ","25-Apr-2026 09:53:31","25-Apr-2026 09:53:51","00:20","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","25-Apr-2026 ","25-Apr-2026 21:15:46","25-Apr-2026 21:15:58","00:12","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","26-Apr-2026 ","26-Apr-2026 22:16:21","26-Apr-2026 22:16:32","00:11","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","27-Apr-2026 ","27-Apr-2026 21:04:26","27-Apr-2026 21:04:39","00:13","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","28-Apr-2026 ","29-Apr-2026 17:52:10","29-Apr-2026 17:53:02","00:52","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","29-Apr-2026 ","30-Apr-2026 22:35:16","30-Apr-2026 22:36:01","00:45","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","30-Apr-2026 ","30-Apr-2026 22:36:45","30-Apr-2026 22:37:21","00:36","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","01-May-2026 ","01-May-2026 21:49:37","01-May-2026 21:49:54","00:17","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","02-May-2026 ","02-May-2026 22:03:41","02-May-2026 22:03:53","00:12","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","03-May-2026 ","03-May-2026 20:30:41","03-May-2026 20:30:52","00:11","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","04-May-2026 ","04-May-2026 23:27:30","04-May-2026 23:27:43","00:13","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","06-May-2026 ","07-May-2026 18:06:55","07-May-2026 18:07:08","00:13","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","07-May-2026 ","07-May-2026 18:07:33","07-May-2026 18:07:44","00:11","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","08-May-2026 ","08-May-2026 22:42:00","08-May-2026 22:42:16","00:16","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","09-May-2026 ","10-May-2026 21:18:31","10-May-2026 21:18:44","00:13","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","10-May-2026 ","10-May-2026 21:20:11","10-May-2026 21:20:22","00:11","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","11-May-2026 ","12-May-2026 10:48:02","12-May-2026 10:48:16","00:14","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","12-May-2026 ","12-May-2026 22:37:05","12-May-2026 22:37:24","00:19","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","15-May-2026 ","16-May-2026 21:29:32","16-May-2026 21:29:53","00:21","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","16-May-2026 ","16-May-2026 21:30:21","16-May-2026 21:31:03","00:42","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","17-May-2026 ","17-May-2026 20:09:06","17-May-2026 20:09:20","00:14","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","19-May-2026 ","20-May-2026 22:54:46","20-May-2026 22:55:16","00:30","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","20-May-2026 ","20-May-2026 22:56:47","20-May-2026 22:57:06","00:19","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","21-May-2026 ","22-May-2026 18:02:38","22-May-2026 18:02:50","00:12","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","22-May-2026 ","22-May-2026 18:03:46","22-May-2026 18:04:09","00:23","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","23-May-2026 ","23-May-2026 21:39:50","23-May-2026 21:40:02","00:12","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","25-May-2026 ","26-May-2026 18:01:24","26-May-2026 18:01:41","00:17","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","29","1","","26-May-2026 ","26-May-2026 18:02:05","26-May-2026 18:02:19","00:14","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10013","David Stepek","CZ100132003","49","0","","26-May-2026 ","26-May-2026 20:55:38","26-May-2026 20:56:02","00:24","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","21-Apr-2026 ","21-Apr-2026 19:20:32","21-Apr-2026 19:22:54","02:22","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","14","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","22-Apr-2026 ","22-Apr-2026 19:08:50","22-Apr-2026 19:10:28","01:38","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","12","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","23-Apr-2026 ","23-Apr-2026 18:47:18","23-Apr-2026 18:47:46","00:28","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","24-Apr-2026 ","24-Apr-2026 20:09:26","24-Apr-2026 20:10:25","00:59","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","24-Apr-2026 ","25-Apr-2026 19:58:59","25-Apr-2026 19:59:32","00:33","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","25-Apr-2026 ","25-Apr-2026 19:59:57","25-Apr-2026 20:00:25","00:28","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","26-Apr-2026 ","26-Apr-2026 18:17:01","26-Apr-2026 18:17:45","00:44","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","27-Apr-2026 ","27-Apr-2026 19:51:27","27-Apr-2026 19:52:00","00:33","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","28-Apr-2026 ","28-Apr-2026 20:01:23","28-Apr-2026 20:01:47","00:24","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","12","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","29-Apr-2026 ","29-Apr-2026 18:53:09","29-Apr-2026 18:53:39","00:30","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","30-Apr-2026 ","30-Apr-2026 19:59:27","30-Apr-2026 19:59:51","00:24","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","01-May-2026 ","01-May-2026 19:30:00","01-May-2026 19:30:47","00:47","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","02-May-2026 ","02-May-2026 23:09:28","02-May-2026 23:09:52","00:24","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","03-May-2026 ","03-May-2026 21:23:26","03-May-2026 21:23:59","00:33","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","04-May-2026 ","04-May-2026 19:29:17","04-May-2026 19:29:50","00:33","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","05-May-2026 ","05-May-2026 22:29:06","05-May-2026 22:29:41","00:35","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","14","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","06-May-2026 ","06-May-2026 20:10:08","06-May-2026 20:10:42","00:34","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","07-May-2026 ","07-May-2026 19:28:33","07-May-2026 19:28:49","00:16","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","12","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","08-May-2026 ","08-May-2026 19:32:48","08-May-2026 19:33:22","00:34","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","09-May-2026 ","09-May-2026 19:58:49","09-May-2026 20:00:29","01:40","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","23","1","Yes, I confirm this is the correct stool count","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","10-May-2026 ","10-May-2026 20:11:37","10-May-2026 20:12:05","00:28","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","21","1","Yes, I confirm this is the correct stool count","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","11-May-2026 ","11-May-2026 21:26:07","11-May-2026 21:26:32","00:25","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","21","1","Yes, I confirm this is the correct stool count","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","12-May-2026 ","12-May-2026 20:55:03","12-May-2026 20:55:28","00:25","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","18","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","13-May-2026 ","13-May-2026 20:35:38","13-May-2026 20:35:54","00:16","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","19","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","14-May-2026 ","14-May-2026 20:01:12","14-May-2026 20:01:34","00:22","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","15-May-2026 ","15-May-2026 20:30:56","15-May-2026 20:31:10","00:14","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","20","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","16-May-2026 ","16-May-2026 19:36:34","16-May-2026 19:36:54","00:20","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","18","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","17-May-2026 ","17-May-2026 19:57:53","17-May-2026 19:58:15","00:22","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","20","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","18-May-2026 ","18-May-2026 19:28:19","18-May-2026 19:28:52","00:33","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","18","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","19-May-2026 ","19-May-2026 20:01:15","19-May-2026 20:01:41","00:26","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","17","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","20-May-2026 ","20-May-2026 19:30:02","20-May-2026 19:30:24","00:22","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","13","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","21-May-2026 ","21-May-2026 19:34:46","21-May-2026 19:35:04","00:18","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","22-May-2026 ","22-May-2026 20:01:59","22-May-2026 20:02:19","00:20","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","23-May-2026 ","23-May-2026 22:20:42","23-May-2026 22:20:58","00:16","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","24-May-2026 ","24-May-2026 21:51:20","24-May-2026 21:51:41","00:21","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","25-May-2026 ","25-May-2026 20:47:57","25-May-2026 20:48:23","00:26","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10016","Robert Mudr","CZ100162001","48","1","","26-May-2026 ","26-May-2026 19:54:28","26-May-2026 19:54:46","00:18","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","15","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","13-Apr-2026 ","13-Apr-2026 18:02:00","13-Apr-2026 18:03:08","01:08","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","14-Apr-2026 ","14-Apr-2026 18:01:42","14-Apr-2026 18:02:26","00:44","2","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","15-Apr-2026 ","15-Apr-2026 18:01:38","15-Apr-2026 18:02:04","00:26","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","16-Apr-2026 ","16-Apr-2026 18:32:28","16-Apr-2026 18:32:52","00:24","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","17-Apr-2026 ","17-Apr-2026 18:01:23","17-Apr-2026 18:01:40","00:17","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","18-Apr-2026 ","18-Apr-2026 18:01:26","18-Apr-2026 18:01:37","00:11","6","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","19-Apr-2026 ","19-Apr-2026 18:01:23","19-Apr-2026 18:01:40","00:17","7","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","20-Apr-2026 ","20-Apr-2026 20:46:30","20-Apr-2026 20:46:51","00:21","8","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","21-Apr-2026 ","21-Apr-2026 18:13:48","21-Apr-2026 18:13:57","00:09","9","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","22-Apr-2026 ","22-Apr-2026 18:06:03","22-Apr-2026 18:06:18","00:15","10","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","23-Apr-2026 ","23-Apr-2026 18:09:32","23-Apr-2026 18:09:44","00:12","11","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","24-Apr-2026 ","24-Apr-2026 18:01:08","24-Apr-2026 18:01:22","00:14","12","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","25-Apr-2026 ","25-Apr-2026 18:36:43","25-Apr-2026 18:36:56","00:13","13","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","26-Apr-2026 ","26-Apr-2026 18:01:56","26-Apr-2026 18:02:12","00:16","14","Patient","BYODHandheld","BYODHandheld","1","Yes","0","","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","27-Apr-2026 ","27-Apr-2026 18:01:05","27-Apr-2026 18:01:19","00:14","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","28-Apr-2026 ","28-Apr-2026 21:12:00","28-Apr-2026 21:12:13","00:13","16","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","29-Apr-2026 ","29-Apr-2026 18:01:04","29-Apr-2026 18:01:15","00:11","17","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","30-Apr-2026 ","30-Apr-2026 18:56:10","30-Apr-2026 18:56:21","00:11","18","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","01-May-2026 ","01-May-2026 18:01:23","01-May-2026 18:01:39","00:16","19","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","02-May-2026 ","02-May-2026 18:01:21","02-May-2026 18:01:39","00:18","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","03-May-2026 ","03-May-2026 18:01:14","03-May-2026 18:01:26","00:12","21","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","04-May-2026 ","04-May-2026 18:01:29","04-May-2026 18:02:07","00:38","22","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","05-May-2026 ","05-May-2026 18:18:48","05-May-2026 18:19:11","00:23","23","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","06-May-2026 ","06-May-2026 18:01:52","06-May-2026 18:02:05","00:13","24","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","07-May-2026 ","07-May-2026 18:01:54","07-May-2026 18:02:38","00:44","25","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","08-May-2026 ","08-May-2026 18:01:35","08-May-2026 18:01:45","00:10","26","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","09-May-2026 ","09-May-2026 18:01:07","09-May-2026 18:01:23","00:16","27","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","10-May-2026 ","10-May-2026 18:01:29","10-May-2026 18:02:07","00:38","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","11-May-2026 ","11-May-2026 20:05:03","11-May-2026 20:05:14","00:11","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","12-May-2026 ","12-May-2026 19:46:23","12-May-2026 19:46:39","00:16","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","13-May-2026 ","13-May-2026 21:37:54","13-May-2026 21:38:14","00:20","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","14-May-2026 ","14-May-2026 19:47:34","14-May-2026 19:48:33","00:59","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","15-May-2026 ","15-May-2026 18:04:38","15-May-2026 18:04:49","00:11","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","16-May-2026 ","16-May-2026 18:01:42","16-May-2026 18:02:35","00:53","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","17-May-2026 ","17-May-2026 19:30:43","17-May-2026 19:31:40","00:57","35","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","18-May-2026 ","18-May-2026 19:46:33","18-May-2026 19:46:59","00:26","36","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","19-May-2026 ","19-May-2026 18:02:50","19-May-2026 18:03:08","00:18","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","20-May-2026 ","20-May-2026 18:02:27","20-May-2026 18:02:40","00:13","38","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","21-May-2026 ","21-May-2026 20:51:11","21-May-2026 20:51:22","00:11","39","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","22-May-2026 ","22-May-2026 21:27:22","22-May-2026 21:27:31","00:09","40","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","23-May-2026 ","23-May-2026 22:20:05","23-May-2026 22:20:21","00:16","41","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","24-May-2026 ","24-May-2026 20:24:10","24-May-2026 20:24:27","00:17","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","25-May-2026 ","25-May-2026 21:49:27","25-May-2026 21:49:36","00:09","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","15","1","","26-May-2026 ","26-May-2026 22:32:04","26-May-2026 22:32:17","00:13","44","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","01-Mar-2026 ","02-Mar-2026 18:40:39","02-Mar-2026 18:42:35","01:56","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","02-Mar-2026 ","02-Mar-2026 18:42:58","02-Mar-2026 18:44:02","01:04","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","03-Mar-2026 ","03-Mar-2026 18:16:16","03-Mar-2026 18:17:20","01:04","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","04-Mar-2026 ","04-Mar-2026 19:00:11","04-Mar-2026 19:00:54","00:43","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","05-Mar-2026 ","05-Mar-2026 18:08:45","05-Mar-2026 18:09:18","00:33","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","06-Mar-2026 ","06-Mar-2026 18:18:34","06-Mar-2026 18:19:08","00:34","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","07-Mar-2026 ","07-Mar-2026 18:01:32","07-Mar-2026 18:02:01","00:29","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","08-Mar-2026 ","08-Mar-2026 18:09:54","08-Mar-2026 18:10:19","00:25","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","09-Mar-2026 ","09-Mar-2026 18:50:13","09-Mar-2026 18:50:41","00:28","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","10-Mar-2026 ","10-Mar-2026 18:24:14","10-Mar-2026 18:24:43","00:29","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","11-Mar-2026 ","11-Mar-2026 19:06:52","11-Mar-2026 19:07:11","00:19","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","12-Mar-2026 ","12-Mar-2026 18:07:54","12-Mar-2026 18:08:18","00:24","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","13-Mar-2026 ","13-Mar-2026 18:12:06","13-Mar-2026 18:12:30","00:24","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","14-Mar-2026 ","15-Mar-2026 18:30:45","15-Mar-2026 18:31:18","00:33","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","15-Mar-2026 ","15-Mar-2026 18:32:00","15-Mar-2026 18:32:31","00:31","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","16-Mar-2026 ","16-Mar-2026 19:00:29","16-Mar-2026 19:01:41","01:12","16","Patient","BYODHandheld","BYODHandheld","1","Yes","0","","0","","0","","24","1","Yes, I confirm this is the correct stool count","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","17-Mar-2026 ","17-Mar-2026 18:03:41","17-Mar-2026 18:04:05","00:24","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","18-Mar-2026 ","18-Mar-2026 19:07:09","18-Mar-2026 19:07:36","00:27","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","19-Mar-2026 ","19-Mar-2026 19:24:39","19-Mar-2026 19:25:08","00:29","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","20-Mar-2026 ","20-Mar-2026 18:39:21","20-Mar-2026 18:39:53","00:32","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","21-Mar-2026 ","21-Mar-2026 18:49:04","21-Mar-2026 18:49:27","00:23","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","12","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","22-Mar-2026 ","22-Mar-2026 18:12:30","22-Mar-2026 18:12:57","00:27","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","23-Mar-2026 ","23-Mar-2026 18:07:23","23-Mar-2026 18:07:47","00:24","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","24-Mar-2026 ","24-Mar-2026 19:10:30","24-Mar-2026 19:11:07","00:37","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","25-Mar-2026 ","25-Mar-2026 19:10:29","25-Mar-2026 19:10:52","00:23","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","26-Mar-2026 ","26-Mar-2026 19:14:57","26-Mar-2026 19:15:22","00:25","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","27-Mar-2026 ","27-Mar-2026 18:12:05","27-Mar-2026 18:12:28","00:23","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","28-Mar-2026 ","28-Mar-2026 18:02:25","28-Mar-2026 18:02:48","00:23","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","12","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","29-Mar-2026 ","29-Mar-2026 18:09:12","29-Mar-2026 18:09:37","00:25","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","30-Mar-2026 ","30-Mar-2026 18:09:29","30-Mar-2026 18:09:52","00:23","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","31-Mar-2026 ","31-Mar-2026 18:18:41","31-Mar-2026 18:19:11","00:30","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","01-Apr-2026 ","01-Apr-2026 19:27:09","01-Apr-2026 19:27:31","00:22","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","02-Apr-2026 ","02-Apr-2026 18:11:54","02-Apr-2026 18:12:24","00:30","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","03-Apr-2026 ","03-Apr-2026 18:38:38","03-Apr-2026 18:38:58","00:20","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","04-Apr-2026 ","04-Apr-2026 18:03:04","04-Apr-2026 18:03:28","00:24","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","05-Apr-2026 ","05-Apr-2026 18:13:29","05-Apr-2026 18:13:50","00:21","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","06-Apr-2026 ","06-Apr-2026 20:42:37","06-Apr-2026 20:42:57","00:20","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","11","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","07-Apr-2026 ","07-Apr-2026 18:58:01","07-Apr-2026 18:58:20","00:19","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","08-Apr-2026 ","09-Apr-2026 18:05:31","09-Apr-2026 18:05:59","00:28","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","09-Apr-2026 ","09-Apr-2026 18:06:30","09-Apr-2026 18:07:07","00:37","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","10-Apr-2026 ","10-Apr-2026 18:13:58","10-Apr-2026 18:14:20","00:22","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","11-Apr-2026 ","11-Apr-2026 18:02:38","11-Apr-2026 18:03:02","00:24","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","12-Apr-2026 ","12-Apr-2026 18:08:16","12-Apr-2026 18:08:44","00:28","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","13-Apr-2026 ","13-Apr-2026 19:20:43","13-Apr-2026 19:21:05","00:22","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","14-Apr-2026 ","14-Apr-2026 18:18:45","14-Apr-2026 18:19:12","00:27","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","15-Apr-2026 ","15-Apr-2026 18:01:54","15-Apr-2026 18:02:17","00:23","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","16-Apr-2026 ","16-Apr-2026 18:04:15","16-Apr-2026 18:04:39","00:24","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","17-Apr-2026 ","17-Apr-2026 18:05:38","17-Apr-2026 18:06:11","00:33","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","18-Apr-2026 ","18-Apr-2026 18:02:10","18-Apr-2026 18:02:38","00:28","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","19-Apr-2026 ","19-Apr-2026 19:24:43","19-Apr-2026 19:25:10","00:27","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","20-Apr-2026 ","20-Apr-2026 18:36:26","20-Apr-2026 18:36:54","00:28","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","21-Apr-2026 ","21-Apr-2026 18:10:57","21-Apr-2026 18:11:17","00:20","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","22-Apr-2026 ","22-Apr-2026 18:47:22","22-Apr-2026 18:47:44","00:22","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","23-Apr-2026 ","23-Apr-2026 18:04:27","23-Apr-2026 18:04:52","00:25","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","24-Apr-2026 ","24-Apr-2026 18:03:12","24-Apr-2026 18:03:36","00:24","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","25-Apr-2026 ","25-Apr-2026 20:48:03","25-Apr-2026 20:48:23","00:20","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","26-Apr-2026 ","26-Apr-2026 19:10:03","26-Apr-2026 19:10:28","00:25","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","27-Apr-2026 ","27-Apr-2026 18:10:02","27-Apr-2026 18:10:25","00:23","58","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","28-Apr-2026 ","28-Apr-2026 18:03:12","28-Apr-2026 18:03:35","00:23","59","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","29-Apr-2026 ","29-Apr-2026 18:09:26","29-Apr-2026 18:10:02","00:36","60","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","30-Apr-2026 ","01-May-2026 18:26:24","01-May-2026 18:27:02","00:38","61","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","01-May-2026 ","01-May-2026 18:27:45","01-May-2026 18:28:20","00:35","62","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","02-May-2026 ","02-May-2026 19:54:00","02-May-2026 19:54:30","00:30","63","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","03-May-2026 ","03-May-2026 18:24:50","03-May-2026 18:25:14","00:24","64","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","04-May-2026 ","05-May-2026 19:36:17","05-May-2026 19:36:48","00:31","65","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","05-May-2026 ","05-May-2026 19:37:23","05-May-2026 19:37:43","00:20","66","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","06-May-2026 ","06-May-2026 18:18:59","06-May-2026 18:19:20","00:21","67","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","07-May-2026 ","07-May-2026 18:04:36","07-May-2026 18:05:00","00:24","68","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","08-May-2026 ","08-May-2026 18:22:35","08-May-2026 18:22:53","00:18","69","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","09-May-2026 ","09-May-2026 18:39:28","09-May-2026 18:39:51","00:23","70","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","10-May-2026 ","10-May-2026 18:30:41","10-May-2026 18:31:24","00:43","71","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","11-May-2026 ","11-May-2026 18:23:54","11-May-2026 18:24:14","00:20","72","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","12-May-2026 ","12-May-2026 18:23:43","12-May-2026 18:24:00","00:17","73","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","13-May-2026 ","13-May-2026 18:27:48","13-May-2026 18:28:14","00:26","74","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","14-May-2026 ","14-May-2026 18:11:36","14-May-2026 18:11:53","00:17","75","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","15-May-2026 ","15-May-2026 19:19:15","15-May-2026 19:19:34","00:19","76","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","16-May-2026 ","16-May-2026 18:44:47","16-May-2026 18:45:07","00:20","77","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","17-May-2026 ","17-May-2026 19:48:23","17-May-2026 19:48:53","00:30","78","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","18-May-2026 ","18-May-2026 18:08:29","18-May-2026 18:08:53","00:24","79","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","19-May-2026 ","19-May-2026 18:09:31","19-May-2026 18:10:01","00:30","80","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","20-May-2026 ","20-May-2026 18:18:41","20-May-2026 18:19:07","00:26","81","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","21-May-2026 ","21-May-2026 18:23:15","21-May-2026 18:24:11","00:56","82","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","22-May-2026 ","22-May-2026 18:06:32","22-May-2026 18:07:05","00:33","83","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","23-May-2026 ","23-May-2026 18:20:11","23-May-2026 18:20:38","00:27","84","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","24-May-2026 ","24-May-2026 18:08:45","24-May-2026 18:09:06","00:21","85","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","25-May-2026 ","25-May-2026 18:11:49","25-May-2026 18:12:14","00:25","86","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","61","1","","26-May-2026 ","26-May-2026 18:15:47","26-May-2026 18:16:11","00:24","87","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","15-Jan-2026 ","15-Jan-2026 22:48:04","15-Jan-2026 22:48:28","00:24","1","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","9","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","16-Jan-2026 ","16-Jan-2026 18:55:34","16-Jan-2026 18:56:14","00:40","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","17-Jan-2026 ","17-Jan-2026 18:01:51","17-Jan-2026 18:02:19","00:28","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","18-Jan-2026 ","18-Jan-2026 18:25:55","18-Jan-2026 18:26:19","00:24","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","19-Jan-2026 ","19-Jan-2026 18:10:54","19-Jan-2026 18:11:19","00:25","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","20-Jan-2026 ","20-Jan-2026 18:04:44","20-Jan-2026 18:05:02","00:18","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","21-Jan-2026 ","21-Jan-2026 18:06:08","21-Jan-2026 18:06:32","00:24","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","22-Jan-2026 ","22-Jan-2026 18:49:45","22-Jan-2026 18:50:08","00:23","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","23-Jan-2026 ","23-Jan-2026 20:50:48","23-Jan-2026 20:51:10","00:22","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","3","Blood alone passed","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","24-Jan-2026 ","24-Jan-2026 23:07:44","24-Jan-2026 23:08:20","00:36","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","25-Jan-2026 ","25-Jan-2026 20:58:21","25-Jan-2026 20:58:46","00:25","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","26-Jan-2026 ","26-Jan-2026 20:36:58","26-Jan-2026 20:37:09","00:11","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","27-Jan-2026 ","27-Jan-2026 20:54:52","27-Jan-2026 20:55:08","00:16","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","28-Jan-2026 ","28-Jan-2026 18:14:23","28-Jan-2026 18:14:40","00:17","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","29-Jan-2026 ","29-Jan-2026 18:50:46","29-Jan-2026 18:51:05","00:19","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","30-Jan-2026 ","30-Jan-2026 18:26:27","30-Jan-2026 18:26:45","00:18","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","31-Jan-2026 ","31-Jan-2026 19:52:40","31-Jan-2026 19:52:54","00:14","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","01-Feb-2026 ","01-Feb-2026 18:40:02","01-Feb-2026 18:40:16","00:14","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","02-Feb-2026 ","02-Feb-2026 19:32:39","02-Feb-2026 19:32:58","00:19","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","03-Feb-2026 ","03-Feb-2026 18:01:25","03-Feb-2026 18:01:39","00:14","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","04-Feb-2026 ","04-Feb-2026 18:59:17","04-Feb-2026 18:59:46","00:29","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","05-Feb-2026 ","05-Feb-2026 18:13:09","05-Feb-2026 18:13:33","00:24","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","06-Feb-2026 ","06-Feb-2026 18:17:15","06-Feb-2026 18:17:32","00:17","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","07-Feb-2026 ","07-Feb-2026 18:55:47","07-Feb-2026 18:56:19","00:32","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","08-Feb-2026 ","08-Feb-2026 18:01:33","08-Feb-2026 18:01:46","00:13","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","09-Feb-2026 ","09-Feb-2026 18:31:24","09-Feb-2026 18:31:36","00:12","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","10-Feb-2026 ","11-Feb-2026 18:49:47","11-Feb-2026 18:50:04","00:17","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","11-Feb-2026 ","11-Feb-2026 18:50:24","11-Feb-2026 18:50:38","00:14","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","12-Feb-2026 ","12-Feb-2026 18:36:48","12-Feb-2026 18:37:03","00:15","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","13-Feb-2026 ","13-Feb-2026 18:44:19","13-Feb-2026 18:44:46","00:27","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","14-Feb-2026 ","15-Feb-2026 19:02:43","15-Feb-2026 19:03:08","00:25","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","15-Feb-2026 ","15-Feb-2026 19:03:35","15-Feb-2026 19:03:54","00:19","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","16-Feb-2026 ","16-Feb-2026 18:24:47","16-Feb-2026 18:24:59","00:12","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","17-Feb-2026 ","17-Feb-2026 18:19:20","17-Feb-2026 18:19:33","00:13","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","18-Feb-2026 ","19-Feb-2026 21:30:15","19-Feb-2026 21:30:32","00:17","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","19-Feb-2026 ","19-Feb-2026 21:30:55","19-Feb-2026 21:31:06","00:11","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","20-Feb-2026 ","20-Feb-2026 18:07:24","20-Feb-2026 18:07:39","00:15","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","21-Feb-2026 ","21-Feb-2026 18:04:27","21-Feb-2026 18:04:45","00:18","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","22-Feb-2026 ","22-Feb-2026 18:27:54","22-Feb-2026 18:28:07","00:13","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","23-Feb-2026 ","23-Feb-2026 20:13:02","23-Feb-2026 20:13:16","00:14","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","24-Feb-2026 ","24-Feb-2026 18:10:58","24-Feb-2026 18:11:27","00:29","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","9","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","25-Feb-2026 ","25-Feb-2026 19:28:29","25-Feb-2026 19:28:55","00:26","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","26-Feb-2026 ","26-Feb-2026 18:36:10","26-Feb-2026 18:36:28","00:18","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","27-Feb-2026 ","28-Feb-2026 22:20:16","28-Feb-2026 22:20:35","00:19","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","28-Feb-2026 ","28-Feb-2026 22:20:57","28-Feb-2026 22:21:08","00:11","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222001","41","3","","01-Mar-2026 ","01-Mar-2026 18:29:02","01-Mar-2026 18:29:21","00:19","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","23-Jan-2026 ","23-Jan-2026 18:44:00","23-Jan-2026 18:44:48","00:48","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","24-Jan-2026 ","24-Jan-2026 20:04:49","24-Jan-2026 20:05:45","00:56","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","25-Jan-2026 ","26-Jan-2026 18:05:41","26-Jan-2026 18:06:13","00:32","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","26-Jan-2026 ","26-Jan-2026 18:06:31","26-Jan-2026 18:06:49","00:18","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","27-Jan-2026 ","27-Jan-2026 22:05:35","27-Jan-2026 22:05:59","00:24","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","28-Jan-2026 ","28-Jan-2026 19:49:36","28-Jan-2026 19:49:50","00:14","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","29-Jan-2026 ","29-Jan-2026 19:33:56","29-Jan-2026 19:34:09","00:13","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","30-Jan-2026 ","30-Jan-2026 18:48:41","30-Jan-2026 18:48:57","00:16","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","31-Jan-2026 ","31-Jan-2026 20:02:38","31-Jan-2026 20:02:51","00:13","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","01-Feb-2026 ","01-Feb-2026 20:59:03","01-Feb-2026 20:59:19","00:16","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","02-Feb-2026 ","02-Feb-2026 18:01:41","02-Feb-2026 18:01:59","00:18","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","03-Feb-2026 ","03-Feb-2026 18:22:38","03-Feb-2026 18:23:07","00:29","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","04-Feb-2026 ","04-Feb-2026 18:59:50","04-Feb-2026 19:00:03","00:13","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","05-Feb-2026 ","05-Feb-2026 19:40:08","05-Feb-2026 19:40:20","00:12","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","06-Feb-2026 ","06-Feb-2026 18:11:13","06-Feb-2026 18:11:32","00:19","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","07-Feb-2026 ","08-Feb-2026 14:02:35","08-Feb-2026 14:03:10","00:35","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","08-Feb-2026 ","08-Feb-2026 18:25:38","08-Feb-2026 18:26:04","00:26","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","09-Feb-2026 ","09-Feb-2026 20:19:15","09-Feb-2026 20:19:25","00:10","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","10-Feb-2026 ","10-Feb-2026 21:54:07","10-Feb-2026 21:54:42","00:35","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","11-Feb-2026 ","11-Feb-2026 18:34:20","11-Feb-2026 18:34:44","00:24","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","12-Feb-2026 ","12-Feb-2026 19:11:56","12-Feb-2026 19:12:14","00:18","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","13-Feb-2026 ","13-Feb-2026 19:51:22","13-Feb-2026 19:51:34","00:12","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","14-Feb-2026 ","14-Feb-2026 18:02:05","14-Feb-2026 18:03:12","01:07","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","15-Feb-2026 ","15-Feb-2026 18:45:30","15-Feb-2026 18:45:56","00:26","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","16-Feb-2026 ","16-Feb-2026 19:01:35","16-Feb-2026 19:02:07","00:32","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","17-Feb-2026 ","17-Feb-2026 19:58:00","17-Feb-2026 19:58:26","00:26","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","39","1","","18-Feb-2026 ","18-Feb-2026 19:35:30","18-Feb-2026 19:36:48","01:18","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","04-Mar-2026 ","04-Mar-2026 18:45:26","04-Mar-2026 18:45:57","00:31","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","05-Mar-2026 ","05-Mar-2026 20:32:08","05-Mar-2026 20:33:10","01:02","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","06-Mar-2026 ","06-Mar-2026 19:51:49","06-Mar-2026 19:52:07","00:18","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","07-Mar-2026 ","07-Mar-2026 20:14:59","07-Mar-2026 20:15:18","00:19","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","08-Mar-2026 ","08-Mar-2026 21:42:48","08-Mar-2026 21:42:58","00:10","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","09-Mar-2026 ","09-Mar-2026 21:47:51","09-Mar-2026 21:48:12","00:21","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","10-Mar-2026 ","10-Mar-2026 21:33:00","10-Mar-2026 21:34:34","01:34","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","11-Mar-2026 ","11-Mar-2026 21:05:27","11-Mar-2026 21:05:46","00:19","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","12-Mar-2026 ","12-Mar-2026 21:40:59","12-Mar-2026 21:41:44","00:45","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","13-Mar-2026 ","13-Mar-2026 19:50:45","13-Mar-2026 19:51:55","01:10","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","14-Mar-2026 ","14-Mar-2026 18:04:37","14-Mar-2026 18:04:50","00:13","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","15-Mar-2026 ","15-Mar-2026 19:58:48","15-Mar-2026 19:59:01","00:13","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","16-Mar-2026 ","16-Mar-2026 20:52:43","16-Mar-2026 20:53:00","00:17","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","17-Mar-2026 ","17-Mar-2026 20:33:05","17-Mar-2026 20:33:21","00:16","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","18-Mar-2026 ","18-Mar-2026 22:02:13","18-Mar-2026 22:02:45","00:32","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","19-Mar-2026 ","19-Mar-2026 21:20:17","19-Mar-2026 21:20:33","00:16","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","20-Mar-2026 ","20-Mar-2026 19:07:44","20-Mar-2026 19:07:56","00:12","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","21-Mar-2026 ","21-Mar-2026 18:42:15","21-Mar-2026 18:42:28","00:13","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","22-Mar-2026 ","22-Mar-2026 19:24:00","22-Mar-2026 19:25:07","01:07","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","23-Mar-2026 ","23-Mar-2026 18:24:50","23-Mar-2026 18:25:19","00:29","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","24-Mar-2026 ","24-Mar-2026 20:58:13","24-Mar-2026 20:58:34","00:21","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","25-Mar-2026 ","25-Mar-2026 18:01:28","25-Mar-2026 18:01:40","00:12","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","26-Mar-2026 ","26-Mar-2026 19:59:46","26-Mar-2026 19:59:59","00:13","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","27-Mar-2026 ","27-Mar-2026 19:05:42","27-Mar-2026 19:06:36","00:54","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","28-Mar-2026 ","28-Mar-2026 21:40:08","28-Mar-2026 21:40:33","00:25","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","29-Mar-2026 ","30-Mar-2026 02:54:17","30-Mar-2026 02:55:12","00:55","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","30-Mar-2026 ","30-Mar-2026 19:29:58","30-Mar-2026 19:30:29","00:31","28","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","31-Mar-2026 ","31-Mar-2026 19:54:16","31-Mar-2026 19:54:28","00:12","29","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","01-Apr-2026 ","01-Apr-2026 19:00:10","01-Apr-2026 19:01:09","00:59","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","02-Apr-2026 ","03-Apr-2026 05:28:24","03-Apr-2026 05:28:44","00:20","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","03-Apr-2026 ","03-Apr-2026 20:36:14","03-Apr-2026 20:36:50","00:36","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","04-Apr-2026 ","04-Apr-2026 18:40:00","04-Apr-2026 18:41:36","01:36","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","05-Apr-2026 ","05-Apr-2026 18:53:00","05-Apr-2026 18:53:58","00:58","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","06-Apr-2026 ","06-Apr-2026 18:09:33","06-Apr-2026 18:10:09","00:36","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","07-Apr-2026 ","07-Apr-2026 19:18:44","07-Apr-2026 19:19:47","01:03","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","08-Apr-2026 ","09-Apr-2026 12:37:30","09-Apr-2026 12:37:48","00:18","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","09-Apr-2026 ","09-Apr-2026 20:55:59","09-Apr-2026 20:56:29","00:30","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","10-Apr-2026 ","10-Apr-2026 22:53:17","10-Apr-2026 22:53:40","00:23","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","11-Apr-2026 ","11-Apr-2026 20:04:52","11-Apr-2026 20:05:06","00:14","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","12-Apr-2026 ","12-Apr-2026 21:58:52","12-Apr-2026 21:59:11","00:19","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","13-Apr-2026 ","13-Apr-2026 21:45:51","13-Apr-2026 21:46:02","00:11","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","14-Apr-2026 ","14-Apr-2026 20:39:25","14-Apr-2026 20:39:58","00:33","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","15-Apr-2026 ","15-Apr-2026 20:14:56","15-Apr-2026 20:16:04","01:08","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","16-Apr-2026 ","16-Apr-2026 20:20:38","16-Apr-2026 20:21:56","01:18","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","17-Apr-2026 ","18-Apr-2026 04:36:28","18-Apr-2026 04:36:51","00:23","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","18-Apr-2026 ","18-Apr-2026 18:45:45","18-Apr-2026 18:46:34","00:49","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","19-Apr-2026 ","19-Apr-2026 21:11:57","19-Apr-2026 21:12:23","00:26","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","20-Apr-2026 ","20-Apr-2026 18:30:44","20-Apr-2026 18:31:27","00:43","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","21-Apr-2026 ","21-Apr-2026 19:33:38","21-Apr-2026 19:34:05","00:27","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","22-Apr-2026 ","23-Apr-2026 05:04:23","23-Apr-2026 05:04:33","00:10","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","23-Apr-2026 ","23-Apr-2026 21:46:23","23-Apr-2026 21:47:03","00:40","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","25-Apr-2026 ","26-Apr-2026 06:44:01","26-Apr-2026 06:44:16","00:15","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","26-Apr-2026 ","26-Apr-2026 19:53:35","26-Apr-2026 19:54:20","00:45","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","27-Apr-2026 ","27-Apr-2026 18:16:59","27-Apr-2026 18:17:38","00:39","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","28-Apr-2026 ","28-Apr-2026 18:27:59","28-Apr-2026 18:28:13","00:14","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","29-Apr-2026 ","29-Apr-2026 20:30:50","29-Apr-2026 20:31:01","00:11","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","30-Apr-2026 ","30-Apr-2026 21:43:01","30-Apr-2026 21:43:29","00:28","58","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","01-May-2026 ","01-May-2026 21:30:29","01-May-2026 21:30:42","00:13","59","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","02-May-2026 ","02-May-2026 22:01:00","02-May-2026 22:01:10","00:10","60","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","03-May-2026 ","03-May-2026 20:11:42","03-May-2026 20:12:16","00:34","61","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","04-May-2026 ","04-May-2026 18:41:10","04-May-2026 18:41:25","00:15","62","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","05-May-2026 ","05-May-2026 19:24:22","05-May-2026 19:24:54","00:32","63","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","06-May-2026 ","06-May-2026 21:53:22","06-May-2026 21:54:12","00:50","64","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","07-May-2026 ","07-May-2026 21:12:19","07-May-2026 21:12:29","00:10","65","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","08-May-2026 ","08-May-2026 18:11:04","08-May-2026 18:11:14","00:10","66","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","09-May-2026 ","09-May-2026 19:52:08","09-May-2026 19:52:17","00:09","67","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","10-May-2026 ","10-May-2026 19:39:21","10-May-2026 19:40:22","01:01","68","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","11-May-2026 ","11-May-2026 18:56:35","11-May-2026 18:56:46","00:11","69","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","12-May-2026 ","12-May-2026 18:17:34","12-May-2026 18:18:06","00:32","70","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","13-May-2026 ","13-May-2026 21:41:52","13-May-2026 21:42:04","00:12","71","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","14-May-2026 ","14-May-2026 20:29:40","14-May-2026 20:30:52","01:12","72","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","15-May-2026 ","15-May-2026 18:44:45","15-May-2026 18:44:59","00:14","73","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","16-May-2026 ","16-May-2026 18:11:24","16-May-2026 18:11:52","00:28","74","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","17-May-2026 ","18-May-2026 18:42:40","18-May-2026 18:43:20","00:40","75","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","18-May-2026 ","18-May-2026 18:43:51","18-May-2026 18:44:00","00:09","76","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","19-May-2026 ","19-May-2026 21:58:19","19-May-2026 21:58:29","00:10","77","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","20-May-2026 ","20-May-2026 18:41:02","20-May-2026 18:41:24","00:22","78","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","21-May-2026 ","21-May-2026 21:05:33","21-May-2026 21:05:54","00:21","79","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","22-May-2026 ","22-May-2026 21:17:24","22-May-2026 21:17:38","00:14","80","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","23-May-2026 ","23-May-2026 18:42:12","23-May-2026 18:42:28","00:16","81","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","24-May-2026 ","24-May-2026 21:24:54","24-May-2026 21:25:21","00:27","82","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","25-May-2026 ","25-May-2026 19:37:39","25-May-2026 19:38:41","01:02","83","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","39","1","","26-May-2026 ","26-May-2026 20:52:27","26-May-2026 20:53:19","00:52","84","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","03-Mar-2026 ","04-Mar-2026 11:19:17","04-Mar-2026 11:53:02","33:45","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","8","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","04-Mar-2026 ","04-Mar-2026 18:04:55","04-Mar-2026 18:05:39","00:44","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","05-Mar-2026 ","05-Mar-2026 18:01:34","05-Mar-2026 18:02:10","00:36","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","06-Mar-2026 ","06-Mar-2026 18:01:58","06-Mar-2026 18:02:42","00:44","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","07-Mar-2026 ","07-Mar-2026 18:52:44","07-Mar-2026 18:53:15","00:31","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","08-Mar-2026 ","08-Mar-2026 19:16:55","08-Mar-2026 19:17:25","00:30","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","09-Mar-2026 ","09-Mar-2026 18:03:55","09-Mar-2026 18:04:22","00:27","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","10-Mar-2026 ","10-Mar-2026 22:05:01","10-Mar-2026 22:05:54","00:53","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","11-Mar-2026 ","11-Mar-2026 19:47:14","11-Mar-2026 19:47:34","00:20","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","12-Mar-2026 ","12-Mar-2026 18:09:02","12-Mar-2026 18:09:41","00:39","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","13-Mar-2026 ","14-Mar-2026 18:47:40","14-Mar-2026 18:48:18","00:38","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","14-Mar-2026 ","14-Mar-2026 18:48:43","14-Mar-2026 18:49:08","00:25","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","16-Mar-2026 ","17-Mar-2026 02:08:04","17-Mar-2026 02:08:39","00:35","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","17-Mar-2026 ","17-Mar-2026 18:27:58","17-Mar-2026 18:28:17","00:19","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","18-Mar-2026 ","18-Mar-2026 18:16:46","18-Mar-2026 18:17:14","00:28","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","19-Mar-2026 ","20-Mar-2026 18:47:51","20-Mar-2026 18:48:14","00:23","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","20-Mar-2026 ","20-Mar-2026 18:48:37","20-Mar-2026 18:48:54","00:17","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","21-Mar-2026 ","21-Mar-2026 18:03:32","21-Mar-2026 18:04:08","00:36","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","7","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222004","62","2","","23-Mar-2026 ","24-Mar-2026 01:29:03","24-Mar-2026 01:29:24","00:21","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","04-Mar-2026 ","04-Mar-2026 20:05:13","04-Mar-2026 20:06:22","01:09","1","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","05-Mar-2026 ","05-Mar-2026 20:56:18","05-Mar-2026 20:56:52","00:34","2","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","06-Mar-2026 ","06-Mar-2026 20:35:33","06-Mar-2026 20:36:03","00:30","3","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","07-Mar-2026 ","07-Mar-2026 21:51:03","07-Mar-2026 21:51:41","00:38","4","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","08-Mar-2026 ","08-Mar-2026 21:58:24","08-Mar-2026 21:58:44","00:20","5","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","09-Mar-2026 ","09-Mar-2026 20:43:38","09-Mar-2026 20:43:55","00:17","6","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","10-Mar-2026 ","10-Mar-2026 21:52:06","10-Mar-2026 21:52:26","00:20","7","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","11-Mar-2026 ","11-Mar-2026 21:26:55","11-Mar-2026 21:27:18","00:23","8","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","12-Mar-2026 ","13-Mar-2026 06:06:13","13-Mar-2026 06:06:39","00:26","9","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","13-Mar-2026 ","13-Mar-2026 20:35:28","13-Mar-2026 20:35:47","00:19","10","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","14-Mar-2026 ","14-Mar-2026 21:12:23","14-Mar-2026 21:12:39","00:16","11","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","15-Mar-2026 ","16-Mar-2026 02:24:42","16-Mar-2026 02:25:07","00:25","12","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","16-Mar-2026 ","16-Mar-2026 19:52:46","16-Mar-2026 19:53:05","00:19","13","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","17-Mar-2026 ","17-Mar-2026 20:44:50","17-Mar-2026 20:45:06","00:16","14","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","18-Mar-2026 ","18-Mar-2026 18:02:48","18-Mar-2026 18:03:12","00:24","15","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","19-Mar-2026 ","19-Mar-2026 18:24:13","19-Mar-2026 18:24:27","00:14","16","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","20-Mar-2026 ","20-Mar-2026 20:53:18","20-Mar-2026 20:53:34","00:16","17","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","21-Mar-2026 ","21-Mar-2026 19:58:33","21-Mar-2026 19:58:52","00:19","18","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","22-Mar-2026 ","22-Mar-2026 20:57:32","22-Mar-2026 20:57:48","00:16","19","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","23-Mar-2026 ","23-Mar-2026 20:25:57","23-Mar-2026 20:26:19","00:22","20","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","24-Mar-2026 ","24-Mar-2026 20:00:09","24-Mar-2026 20:00:26","00:17","21","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","25-Mar-2026 ","25-Mar-2026 19:46:02","25-Mar-2026 19:46:19","00:17","22","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","26-Mar-2026 ","26-Mar-2026 20:34:57","26-Mar-2026 20:35:36","00:39","23","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","27-Mar-2026 ","27-Mar-2026 20:26:42","27-Mar-2026 20:27:00","00:18","24","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","6","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","28-Mar-2026 ","28-Mar-2026 19:58:42","28-Mar-2026 19:58:55","00:13","25","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","29-Mar-2026 ","29-Mar-2026 20:46:26","29-Mar-2026 20:46:38","00:12","26","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","30-Mar-2026 ","30-Mar-2026 22:11:21","30-Mar-2026 22:11:35","00:14","27","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","31-Mar-2026 ","31-Mar-2026 22:46:39","31-Mar-2026 22:47:25","00:46","28","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","01-Apr-2026 ","01-Apr-2026 21:38:53","01-Apr-2026 21:39:31","00:38","29","Patient","BYODHandheld","BYODHandheld","0","","1","Yes","0","","0","","5","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","02-Apr-2026 ","02-Apr-2026 21:22:31","02-Apr-2026 21:22:58","00:27","30","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","03-Apr-2026 ","03-Apr-2026 21:13:09","03-Apr-2026 21:13:24","00:15","31","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","04-Apr-2026 ","04-Apr-2026 21:48:32","04-Apr-2026 21:48:47","00:15","32","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","05-Apr-2026 ","05-Apr-2026 22:11:06","05-Apr-2026 22:11:18","00:12","33","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","06-Apr-2026 ","06-Apr-2026 22:24:02","06-Apr-2026 22:24:13","00:11","34","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","07-Apr-2026 ","07-Apr-2026 21:17:38","07-Apr-2026 21:17:49","00:11","35","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","08-Apr-2026 ","09-Apr-2026 19:34:11","09-Apr-2026 19:35:01","00:50","36","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","09-Apr-2026 ","09-Apr-2026 19:35:23","09-Apr-2026 19:35:44","00:21","37","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","10-Apr-2026 ","10-Apr-2026 20:45:38","10-Apr-2026 20:45:51","00:13","38","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","11-Apr-2026 ","11-Apr-2026 21:18:17","11-Apr-2026 21:18:37","00:20","39","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","12-Apr-2026 ","12-Apr-2026 21:52:59","12-Apr-2026 21:53:16","00:17","40","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","13-Apr-2026 ","13-Apr-2026 20:06:14","13-Apr-2026 20:06:28","00:14","41","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","14-Apr-2026 ","14-Apr-2026 20:32:26","14-Apr-2026 20:33:15","00:49","42","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","15-Apr-2026 ","15-Apr-2026 22:47:23","15-Apr-2026 22:47:48","00:25","43","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","16-Apr-2026 ","16-Apr-2026 22:09:53","16-Apr-2026 22:26:28","16:35","44","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","17-Apr-2026 ","17-Apr-2026 21:45:10","17-Apr-2026 21:45:34","00:24","45","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","18-Apr-2026 ","18-Apr-2026 20:13:56","18-Apr-2026 20:14:28","00:32","46","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","19-Apr-2026 ","19-Apr-2026 21:05:25","19-Apr-2026 21:05:47","00:22","47","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","5","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","20-Apr-2026 ","20-Apr-2026 19:50:05","20-Apr-2026 19:50:31","00:26","48","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","21-Apr-2026 ","21-Apr-2026 21:06:17","21-Apr-2026 21:06:38","00:21","49","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","22-Apr-2026 ","22-Apr-2026 21:58:23","22-Apr-2026 21:58:37","00:14","50","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","1","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","23-Apr-2026 ","23-Apr-2026 20:20:07","23-Apr-2026 20:20:30","00:23","51","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","24-Apr-2026 ","24-Apr-2026 21:02:15","24-Apr-2026 21:02:44","00:29","52","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","25-Apr-2026 ","25-Apr-2026 21:46:33","25-Apr-2026 21:46:44","00:11","53","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","26-Apr-2026 ","26-Apr-2026 21:47:59","26-Apr-2026 21:48:16","00:17","54","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","27-Apr-2026 ","27-Apr-2026 22:14:24","27-Apr-2026 22:14:48","00:24","55","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","28-Apr-2026 ","28-Apr-2026 22:15:05","28-Apr-2026 22:15:20","00:15","56","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","29-Apr-2026 ","29-Apr-2026 21:40:35","29-Apr-2026 21:40:53","00:18","57","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","30-Apr-2026 ","30-Apr-2026 22:25:00","30-Apr-2026 22:25:11","00:11","58","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","01-May-2026 ","01-May-2026 22:29:53","01-May-2026 22:30:10","00:17","59","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","02-May-2026 ","02-May-2026 20:46:50","02-May-2026 20:47:02","00:12","60","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","03-May-2026 ","03-May-2026 22:35:34","03-May-2026 22:35:49","00:15","61","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","04-May-2026 ","05-May-2026 05:52:09","05-May-2026 05:52:35","00:26","62","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","05-May-2026 ","05-May-2026 21:58:12","05-May-2026 21:58:35","00:23","63","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","06-May-2026 ","07-May-2026 08:49:07","07-May-2026 08:49:20","00:13","64","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","07-May-2026 ","07-May-2026 21:53:49","07-May-2026 21:54:04","00:15","65","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","08-May-2026 ","08-May-2026 21:54:15","08-May-2026 21:54:26","00:11","66","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","0","No blood seen","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","09-May-2026 ","09-May-2026 21:16:14","09-May-2026 21:16:33","00:19","67","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","10-May-2026 ","10-May-2026 22:31:35","10-May-2026 22:31:45","00:10","68","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","11-May-2026 ","11-May-2026 22:06:26","11-May-2026 22:06:52","00:26","69","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","12-May-2026 ","12-May-2026 21:01:56","12-May-2026 21:02:12","00:16","70","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","13-May-2026 ","13-May-2026 22:30:52","13-May-2026 22:31:05","00:13","71","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","1","Streaks of blood with stool less than half the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","14-May-2026 ","14-May-2026 21:57:20","14-May-2026 21:57:33","00:13","72","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","15-May-2026 ","15-May-2026 22:18:39","15-May-2026 22:18:59","00:20","73","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","16-May-2026 ","16-May-2026 22:35:15","16-May-2026 22:35:26","00:11","74","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","17-May-2026 ","17-May-2026 19:49:55","17-May-2026 19:51:44","01:49","75","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","2","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","18-May-2026 ","18-May-2026 20:08:02","18-May-2026 20:08:15","00:13","76","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","19-May-2026 ","19-May-2026 23:07:57","19-May-2026 23:08:13","00:16","77","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","20-May-2026 ","20-May-2026 21:05:24","20-May-2026 21:05:35","00:11","78","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","21-May-2026 ","21-May-2026 22:39:47","21-May-2026 22:40:29","00:42","79","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","22-May-2026 ","22-May-2026 22:47:30","22-May-2026 22:47:42","00:12","80","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","23-May-2026 ","23-May-2026 21:43:46","23-May-2026 21:43:56","00:10","81","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","4","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","24-May-2026 ","24-May-2026 22:10:38","24-May-2026 22:10:48","00:10","82","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","25-May-2026 ","25-May-2026 21:58:41","25-May-2026 21:58:55","00:14","83","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","3","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" +"77242113UCO3001","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","33","1","","26-May-2026 ","26-May-2026 21:30:28","26-May-2026 21:30:46","00:18","84","Patient","BYODHandheld","BYODHandheld","0","","0","","0","","1","Yes","10","","","2","Obvious blood with stool most of the time","","","","Czech (Czech Republic)","3","Handheld","","","Participant","","" diff --git a/JanssenScripts/PřejmenujSoubory/Custom.MayoScoreReport.csv b/JanssenScripts/PřejmenujSoubory/Custom.MayoScoreReport.csv new file mode 100644 index 0000000..87bb33f --- /dev/null +++ b/JanssenScripts/PřejmenujSoubory/Custom.MayoScoreReport.csv @@ -0,0 +1,38 @@ +"Protocol","Study Population","Country","Site","Principal Investigator","Participant ID","Baseline Stool Frequency","Visit","Visit Date","Endoscopy Completed?","Endoscopy Date","Bowel Preparation Start Date 1","Bowel Preparation End Date 1","Bowel Preparation Start Date 2","Bowel Preparation End Date 2","Central Endoscopy Score","Local Endoscopy Score","PGA Score","Eligible Day (-1)","Day (-1) Excluded Reason(s)","Eligible Day (-2)","Day (-2) Excluded Reason(s)","Eligible Day (-3)","Day (-3) Excluded Reason(s)","Eligible Day (-4)","Day (-4) Excluded Reason(s)","Eligible Day (-5)","Day (-5) Excluded Reason(s)","Eligible Day (-6)","Day (-6) Excluded Reason(s)","Eligible Day (-7)","Day (-7) Excluded Reason(s)","Eligible Day (-8)","Day (-8) Excluded Reason(s)","Eligible Day (-9)","Day (-9) Excluded Reason(s)","Eligible Day (-10)","Day (-10) Excluded Reason(s)","Eligible Day (-1) Stool Count","Eligible Day (-2) Stool Count","Eligible Day (-3) Stool Count","Eligible Day (-4) Stool Count","Eligible Day (-5) Stool Count","Eligible Day (-6) Stool Count","Eligible Day (-7) Stool Count","Eligible Day (-8) Stool Count","Eligible Day (-9) Stool Count","Eligible Day (-10) Stool Count","Stool Frequency Sub-score","Eligible Day (-1) Rectal Bleeding Score","Eligible Day (-2) Rectal Bleeding Score","Eligible Day (-3) Rectal Bleeding Score","Eligible Day (-4) Rectal Bleeding Score","Eligible Day (-5) Rectal Bleeding Score","Eligible Day (-6) Rectal Bleeding Score","Eligible Day (-7) Rectal Bleeding Score","Eligible Day (-8) Rectal Bleeding Score","Eligible Day (-9) Rectal Bleeding Score","Eligible Day (-10) Rectal Bleeding Score","Rectal Bleeding Sub-score","Partial Mayo Score","Modified Mayo Score","Full Mayo Score","Site Action","Last Mayo Score Submission","Week I-12 Clinical Responder","Week I-12 Clinical Remission","Clinical Flare","Loss of Response","Partial Mayo Response Post Loss of Response","Partial Mayo Response for Clinical Non-Responders" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","1","I-0","19 Feb 2026","Yes","05 Feb 2026","04 Feb 2026","04 Feb 2026","-","-","2","-","3","18 Feb 2026","-","17 Feb 2026","-","16 Feb 2026","-","15 Feb 2026","-","14 Feb 2026","-","13 Feb 2026","-","12 Feb 2026","-","11 Feb 2026","Day Not Applicable for Calculation","10 Feb 2026","Day Not Applicable for Calculation","09 Feb 2026","Day Not Applicable for Calculation","10","8","7","5","7","8","8","-","-","-","3","1","1","1","0","1","1","1","-","-","-","1","7","6","9","-","08 Apr 2026 07:11:25","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","1","I-2","04 Mar 2026","-","-","-","-","-","-","-","-","3","03 Mar 2026","-","02 Mar 2026","-","01 Mar 2026","-","28 Feb 2026","-","27 Feb 2026","-","26 Feb 2026","-","25 Feb 2026","-","24 Feb 2026","Day Not Applicable for Calculation","23 Feb 2026","Day Not Applicable for Calculation","22 Feb 2026","Day Not Applicable for Calculation","5","4","5","4","5","6","6","-","-","-","2","1","0","1","0","1","0","1","-","-","-","1","6","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","1","I-4","18 Mar 2026","-","-","-","-","-","-","-","-","2","17 Mar 2026","-","16 Mar 2026","-","15 Mar 2026","-","14 Mar 2026","-","13 Mar 2026","-","12 Mar 2026","-","11 Mar 2026","-","10 Mar 2026","Day Not Applicable for Calculation","09 Mar 2026","Day Not Applicable for Calculation","08 Mar 2026","Day Not Applicable for Calculation","5","5","5","4","5","4","5","-","-","-","2","1","0","0","1","1","1","0","-","-","-","1","5","","","-","08 Apr 2026 11:04:49","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","1","I-8","05 May 2026","-","-","-","-","-","-","-","-","1","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","Day Not Applicable for Calculation","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","3","3","4","4","5","4","4","-","-","-","2","1","1","1","1","1","1","1","-","-","-","1","4","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012001","1","I-12","13 May 2026","Yes","06 May 2026","05 May 2026","05 May 2026","-","-","1","-","1","12 May 2026","-","11 May 2026","-","10 May 2026","-","09 May 2026","-","08 May 2026","-","07 May 2026","-","06 May 2026","Endoscopy","05 May 2026","Bowel Preparation for Procedure;Day Not Applicable for Calculation","04 May 2026","-","03 May 2026","Day Not Applicable for Calculation","5","4","6","5","5","5","-","-","3","-","2","1","0","1","1","1","1","-","-","1","-","1","4","4","5","-","-","Clinical Responder","No","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","1","I-0","08 Apr 2026","Yes","18 Mar 2026","17 Mar 2026","18 Mar 2026","-","-","2","-","2","07 Apr 2026","-","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","Missing Diary","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","-","31 Mar 2026","Day Not Applicable for Calculation","30 Mar 2026","Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","3","3","4","-","3","3","4","-","-","-","1","0","0","0","-","0","0","1","-","-","-","0","3","3","5","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","1","I-2","23 Apr 2026","-","-","-","-","-","-","-","-","2","22 Apr 2026","Missing Diary","21 Apr 2026","-","20 Apr 2026","-","19 Apr 2026","-","18 Apr 2026","-","17 Apr 2026","-","16 Apr 2026","-","15 Apr 2026","Day Not Applicable for Calculation","14 Apr 2026","Day Not Applicable for Calculation","13 Apr 2026","Day Not Applicable for Calculation","-","3","3","6","5","5","4","-","-","-","2","-","0","0","1","1","1","1","-","-","-","1","5","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012002","1","I-4","06 May 2026","-","-","-","-","-","-","-","-","1","05 May 2026","-","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","Day Not Applicable for Calculation","27 Apr 2026","Day Not Applicable for Calculation","26 Apr 2026","Day Not Applicable for Calculation","6","3","2","3","3","3","3","-","-","-","1","1","0","0","0","1","1","0","-","-","-","0","2","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10001","Matej Falc","CZ100012003","1","I-0","27 May 2026","Yes","13 May 2026","12 May 2026","12 May 2026","-","-","3","-","2","26 May 2026","-","25 May 2026","-","24 May 2026","-","23 May 2026","-","22 May 2026","-","21 May 2026","-","20 May 2026","-","19 May 2026","Day Not Applicable for Calculation","18 May 2026","Day Not Applicable for Calculation","17 May 2026","Day Not Applicable for Calculation","6","9","7","8","9","7","8","-","-","-","3","2","2","2","2","1","1","1","-","-","-","2","7","8","10","-","27 May 2026 07:24:39","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","1","I-0","20 Mar 2026","Yes","19 Feb 2026","-","-","-","-","3","-","3","19 Mar 2026","-","18 Mar 2026","-","17 Mar 2026","-","16 Mar 2026","-","15 Mar 2026","-","14 Mar 2026","-","13 Mar 2026","-","12 Mar 2026","Day Not Applicable for Calculation","11 Mar 2026","Day Not Applicable for Calculation","10 Mar 2026","Day Not Applicable for Calculation","7","7","8","8","7","8","5","-","-","-","3","2","1","1","1","1","1","0","-","-","-","1","7","7","10","-","20 Mar 2026 07:03:23","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","1","I-2","08 Apr 2026","-","-","-","-","-","-","-","-","2","07 Apr 2026","Medication For Diarrhea","06 Apr 2026","Medication For Diarrhea","05 Apr 2026","Medication For Diarrhea","04 Apr 2026","Medication For Diarrhea","03 Apr 2026","Medication For Diarrhea","02 Apr 2026","Medication For Diarrhea","01 Apr 2026","Medication For Diarrhea","31 Mar 2026","Medication For Diarrhea;Day Not Applicable for Calculation","30 Mar 2026","Medication For Diarrhea;Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","-","-","-","-","-","-","-","-","-","-","Non-Evaluable","-","-","-","-","-","-","-","-","-","-","Non-Evaluable","Non-Evaluable","Non-Evaluable","Non-Evaluable","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","1","I-4","15 Apr 2026","-","-","-","-","-","-","-","-","3","14 Apr 2026","-","13 Apr 2026","-","12 Apr 2026","-","11 Apr 2026","-","10 Apr 2026","-","09 Apr 2026","-","08 Apr 2026","-","07 Apr 2026","Medication For Diarrhea;Day Not Applicable for Calculation","06 Apr 2026","Medication For Diarrhea;Day Not Applicable for Calculation","05 Apr 2026","Medication For Diarrhea;Day Not Applicable for Calculation","9","22","20","19","17","18","18","-","-","-","3","1","3","2","2","2","2","2","-","-","-","2","8","","","-","04 May 2026 22:06:03","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062001","1","I-8","18 May 2026","-","-","-","-","-","-","-","-","2","17 May 2026","-","16 May 2026","-","15 May 2026","-","14 May 2026","-","13 May 2026","-","12 May 2026","-","11 May 2026","-","10 May 2026","Day Not Applicable for Calculation","09 May 2026","Day Not Applicable for Calculation","08 May 2026","Day Not Applicable for Calculation","7","5","9","7","7","8","8","-","-","-","3","1","1","1","1","1","1","1","-","-","-","1","6","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10006","Michal Konecny","CZ100062002","1","I-0","26 May 2026","Yes","14 May 2026","13 May 2026","13 May 2026","-","-","2","-","2","25 May 2026","-","24 May 2026","-","23 May 2026","-","22 May 2026","-","21 May 2026","-","20 May 2026","-","19 May 2026","-","18 May 2026","Day Not Applicable for Calculation","17 May 2026","Day Not Applicable for Calculation","16 May 2026","Day Not Applicable for Calculation","8","8","6","7","7","6","7","-","-","-","3","2","2","2","2","2","2","2","-","-","-","2","7","7","9","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","1","I-0","05 May 2026","Yes","24 Apr 2026","23 Apr 2026","23 Apr 2026","-","-","2","-","2","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","Day Not Applicable for Calculation","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","5","5","5","5","5","5","5","-","-","-","2","1","1","1","1","1","1","1","-","-","-","1","5","5","7","-","05 May 2026 11:19:40","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10009","Jiri Pumprla","CZ100092001","1","I-2","19 May 2026","-","-","-","-","-","-","-","-","1","18 May 2026","-","17 May 2026","-","16 May 2026","-","15 May 2026","-","14 May 2026","-","13 May 2026","-","12 May 2026","-","11 May 2026","Day Not Applicable for Calculation","10 May 2026","Day Not Applicable for Calculation","09 May 2026","Day Not Applicable for Calculation","5","4","5","5","5","4","6","-","-","-","2","1","1","1","1","1","1","1","-","-","-","1","4","","","-","19 May 2026 10:38:25","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","5","I-0","07 Apr 2026","Yes","24 Mar 2026","22 Mar 2026","22 Mar 2026","-","-","2","-","2","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","-","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","-","31 Mar 2026","-","30 Mar 2026","Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","28 Mar 2026","Day Not Applicable for Calculation","8","11","5","9","11","10","13","-","-","-","3","1","2","2","2","2","2","2","-","-","-","2","7","7","9","-","04 May 2026 08:44:52","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","5","I-2","22 Apr 2026","-","-","-","-","-","-","-","-","2","21 Apr 2026","-","20 Apr 2026","-","19 Apr 2026","-","18 Apr 2026","-","17 Apr 2026","-","16 Apr 2026","-","15 Apr 2026","-","14 Apr 2026","Day Not Applicable for Calculation","13 Apr 2026","Day Not Applicable for Calculation","12 Apr 2026","Day Not Applicable for Calculation","7","5","6","6","7","8","2","-","-","-","1","1","0","1","1","1","2","0","-","-","-","1","4","","","-","04 May 2026 08:45:07","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10012","Stefan Konecny","CZ100122001","5","I-4","07 May 2026","-","-","-","-","-","-","-","-","1","06 May 2026","-","05 May 2026","-","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","Day Not Applicable for Calculation","28 Apr 2026","Day Not Applicable for Calculation","27 Apr 2026","Day Not Applicable for Calculation","8","7","7","8","4","11","7","-","-","-","1","2","1","1","1","0","1","1","-","-","-","1","3","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","1","I-0","24 Mar 2026","Yes","12 Mar 2026","11 Mar 2026","11 Mar 2026","-","-","2","-","2","23 Mar 2026","-","22 Mar 2026","-","21 Mar 2026","-","20 Mar 2026","-","19 Mar 2026","-","18 Mar 2026","-","17 Mar 2026","-","16 Mar 2026","Day Not Applicable for Calculation","15 Mar 2026","Day Not Applicable for Calculation","14 Mar 2026","Day Not Applicable for Calculation","8","6","5","7","6","7","6","-","-","-","3","1","1","1","0","1","1","1","-","-","-","1","6","6","8","-","05 Apr 2026 22:41:27","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","1","I-2","08 Apr 2026","-","-","-","-","-","-","-","-","2","07 Apr 2026","-","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","-","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","-","31 Mar 2026","Day Not Applicable for Calculation","30 Mar 2026","Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","5","2","3","6","5","5","5","-","-","-","2","0","0","0","0","1","1","0","-","-","-","0","4","","","-","27 May 2026 12:53:52","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10013","David Stepek","CZ100132001","1","I-4","21 Apr 2026","-","-","-","-","-","-","-","-","0","20 Apr 2026","-","19 Apr 2026","-","18 Apr 2026","-","17 Apr 2026","-","16 Apr 2026","-","15 Apr 2026","-","14 Apr 2026","-","13 Apr 2026","Day Not Applicable for Calculation","12 Apr 2026","Day Not Applicable for Calculation","11 Apr 2026","Day Not Applicable for Calculation","4","3","4","3","3","4","4","-","-","-","2","0","0","0","0","0","0","0","-","-","-","0","2","","","-","27 May 2026 12:54:41","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","1","I-0","12 May 2026","Yes","21 Apr 2026","20 Apr 2026","21 Apr 2026","-","-","2","-","2","11 May 2026","-","10 May 2026","-","09 May 2026","-","08 May 2026","-","07 May 2026","-","06 May 2026","-","05 May 2026","Missing Diary","04 May 2026","Day Not Applicable for Calculation","03 May 2026","Day Not Applicable for Calculation","02 May 2026","Day Not Applicable for Calculation","2","1","1","1","1","2","-","-","-","-","0","0","0","0","0","0","0","-","-","-","-","0","2","2","4","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10013","David Stepek","CZ100132002","1","I-2","26 May 2026","-","-","-","-","-","-","-","-","1","25 May 2026","-","24 May 2026","Missing Diary","23 May 2026","-","22 May 2026","-","21 May 2026","-","20 May 2026","-","19 May 2026","-","18 May 2026","Missing Diary;Day Not Applicable for Calculation","17 May 2026","Day Not Applicable for Calculation","16 May 2026","Day Not Applicable for Calculation","1","-","1","2","1","2","2","-","-","-","1","0","-","0","0","0","0","0","-","-","-","0","2","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adolescent","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","1","Unscheduled 1","04 May 2026","Yes","20 Apr 2026","12 Apr 2026","15 Apr 2026","-","-","2","-","3","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","-","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","24 Apr 2026","Day Not Applicable for Calculation","5","6","6","7","6","3","3","-","-","-","2","0","0","0","0","0","0","0","-","-","-","0","5","4","7","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adolescent","Czech Republic","DD5-CZ10020","Lucie Gonsorcikova","CZ100201001","1","I-0","18 May 2026","Yes","01 May 2026","01 May 2026","01 May 2026","-","-","2","-","3","17 May 2026","-","16 May 2026","-","15 May 2026","-","14 May 2026","-","13 May 2026","-","12 May 2026","-","11 May 2026","-","10 May 2026","Day Not Applicable for Calculation","09 May 2026","Day Not Applicable for Calculation","08 May 2026","Day Not Applicable for Calculation","6","6","6","6","6","6","6","-","-","-","3","0","0","0","0","0","0","0","-","-","-","0","6","5","8","-","18 May 2026 08:38:55","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","1","I-0","07 Apr 2026","Yes","16 Mar 2026","15 Mar 2026","16 Mar 2026","-","-","3","-","3","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","-","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","-","31 Mar 2026","-","30 Mar 2026","Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","28 Mar 2026","Day Not Applicable for Calculation","11","11","10","11","11","10","9","-","-","-","3","2","2","2","2","2","2","2","-","-","-","2","8","8","11","-","20 Apr 2026 09:27:58","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","1","I-2","20 Apr 2026","-","-","-","-","-","-","-","-","3","19 Apr 2026","-","18 Apr 2026","-","17 Apr 2026","-","16 Apr 2026","-","15 Apr 2026","-","14 Apr 2026","-","13 Apr 2026","-","12 Apr 2026","Day Not Applicable for Calculation","11 Apr 2026","Day Not Applicable for Calculation","10 Apr 2026","Day Not Applicable for Calculation","8","7","9","8","8","7","8","-","-","-","3","2","2","1","1","1","2","1","-","-","-","1","7","","","-","20 Apr 2026 09:29:01","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10021","Martin Bortlik","CZ100212001","1","I-4","05 May 2026","-","-","-","-","-","-","-","-","1","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","Day Not Applicable for Calculation","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","6","6","6","6","7","7","6","-","-","-","3","0","0","1","1","1","1","1","-","-","-","1","5","","","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222002","1","I-0","19 Feb 2026","Yes","11 Feb 2026","10 Feb 2026","11 Feb 2026","-","-","2","-","2","18 Feb 2026","-","17 Feb 2026","-","16 Feb 2026","-","15 Feb 2026","-","14 Feb 2026","-","13 Feb 2026","-","12 Feb 2026","-","11 Feb 2026","Endoscopy;Bowel Preparation for Procedure;Day Not Applicable for Calculation","10 Feb 2026","Bowel Preparation for Procedure;Day Not Applicable for Calculation","09 Feb 2026","Day Not Applicable for Calculation","3","2","2","3","4","3","2","-","-","-","1","1","1","0","0","0","2","2","-","-","-","1","4","4","6","-","19 Feb 2026 15:41:35","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","1","I-0","09 Mar 2026","Yes","11 Feb 2026","10 Feb 2026","11 Feb 2026","-","-","2","-","2","08 Mar 2026","-","07 Mar 2026","-","06 Mar 2026","-","05 Mar 2026","-","04 Mar 2026","-","03 Mar 2026","Missing Diary","02 Mar 2026","Missing Diary","01 Mar 2026","Missing Diary;Day Not Applicable for Calculation","28 Feb 2026","Missing Diary;Day Not Applicable for Calculation","27 Feb 2026","Missing Diary;Day Not Applicable for Calculation","7","7","6","6","7","-","-","-","-","-","3","2","2","2","2","2","-","-","-","-","-","2","7","7","9","-","22 Mar 2026 18:34:58","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","1","I-2","27 Mar 2026","-","-","-","-","-","-","-","-","2","26 Mar 2026","-","25 Mar 2026","-","24 Mar 2026","-","23 Mar 2026","-","22 Mar 2026","-","21 Mar 2026","-","20 Mar 2026","-","19 Mar 2026","Day Not Applicable for Calculation","18 Mar 2026","Day Not Applicable for Calculation","17 Mar 2026","Day Not Applicable for Calculation","7","3","3","3","5","5","5","-","-","-","2","0","0","1","1","1","1","2","-","-","-","1","5","","","-","27 Mar 2026 07:22:31","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","1","I-4","08 Apr 2026","-","-","-","-","-","-","-","-","2","07 Apr 2026","-","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","-","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","-","31 Mar 2026","Day Not Applicable for Calculation","30 Mar 2026","Day Not Applicable for Calculation","29 Mar 2026","Day Not Applicable for Calculation","3","3","4","4","5","4","3","-","-","-","2","1","0","0","2","1","1","2","-","-","-","1","5","","","-","08 Apr 2026 07:59:35","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222003","1","I-8","04 May 2026","-","-","-","-","-","-","-","-","2","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","-","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","24 Apr 2026","Missing Diary;Day Not Applicable for Calculation","3","5","3","3","3","2","3","-","-","-","1","0","0","0","0","0","0","0","-","-","-","0","3","","","-","04 May 2026 07:52:47","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","1","I-0","09 Apr 2026","Yes","08 Apr 2026","31 Mar 2026","01 Apr 2026","-","-","2","-","2","08 Apr 2026","Endoscopy","07 Apr 2026","-","06 Apr 2026","-","05 Apr 2026","-","04 Apr 2026","-","03 Apr 2026","-","02 Apr 2026","-","01 Apr 2026","Bowel Preparation for Procedure;Day Not Applicable for Calculation","31 Mar 2026","Bowel Preparation for Procedure;Day Not Applicable for Calculation","30 Mar 2026","-","-","3","3","4","3","4","3","-","-","3","1","-","2","2","2","2","2","2","-","-","2","2","5","5","7","-","-","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","1","I-2","22 Apr 2026","-","-","-","-","-","-","-","-","2","21 Apr 2026","-","20 Apr 2026","-","19 Apr 2026","-","18 Apr 2026","-","17 Apr 2026","-","16 Apr 2026","-","15 Apr 2026","-","14 Apr 2026","Day Not Applicable for Calculation","13 Apr 2026","Day Not Applicable for Calculation","12 Apr 2026","Day Not Applicable for Calculation","3","3","5","3","2","3","2","-","-","-","1","1","2","2","1","1","1","2","-","-","-","1","4","","","-","05 May 2026 07:29:35","N/A","N/A","N/A","N/A","N/A","N/A" +"77242113UCO3001","Adult","Czech Republic","DD5-CZ10022","Petr Hrabak","CZ100222005","1","I-4","05 May 2026","-","-","-","-","-","-","-","-","2","04 May 2026","-","03 May 2026","-","02 May 2026","-","01 May 2026","-","30 Apr 2026","-","29 Apr 2026","-","28 Apr 2026","-","27 Apr 2026","Day Not Applicable for Calculation","26 Apr 2026","Day Not Applicable for Calculation","25 Apr 2026","Day Not Applicable for Calculation","4","2","2","2","2","2","2","-","-","-","1","1","1","1","1","2","1","1","-","-","-","1","4","","","-","05 May 2026 07:28:55","N/A","N/A","N/A","N/A","N/A","N/A" diff --git a/Knihovny/EmailMessagingGraph.py b/Knihovny/EmailMessagingGraph.py new file mode 100644 index 0000000..0023a62 --- /dev/null +++ b/Knihovny/EmailMessagingGraph.py @@ -0,0 +1,111 @@ +""" +EmailMessagingGraph.py +---------------------- +Private Microsoft Graph mail sender +Application permissions, shared mailbox +""" + +import base64 +import msal +import requests +from functools import lru_cache +from pathlib import Path +from typing import Union, List + + +# ========================= +# PRIVATE CONFIG (ONLY YOU) +# ========================= +TENANT_ID = "7d269944-37a4-43a1-8140-c7517dc426e9" +CLIENT_ID = "4b222bfd-78c9-4239-a53f-43006b3ed07f" +CLIENT_SECRET = "Txg8Q~MjhocuopxsJyJBhPmDfMxZ2r5WpTFj1dfk" +SENDER = "reports@buzalka.cz" + + +AUTHORITY = f"https://login.microsoftonline.com/{TENANT_ID}" +SCOPE = ["https://graph.microsoft.com/.default"] + + +@lru_cache(maxsize=1) +def _get_token() -> str: + app = msal.ConfidentialClientApplication( + CLIENT_ID, + authority=AUTHORITY, + client_credential=CLIENT_SECRET, + ) + + token = app.acquire_token_for_client(scopes=SCOPE) + + if "access_token" not in token: + raise RuntimeError(f"Graph auth failed: {token}") + + return token["access_token"] + + +def send_mail( + to: Union[str, List[str]], + subject: str, + body: str = "", + *, + html: bool = False, + attachments: Union[str, Path, List[Union[str, Path]], None] = None, +): + """ + Send email via Microsoft Graph. + + :param to: email or list of emails + :param subject: subject + :param body: email body (default empty) + :param html: True = HTML, False = plain text + :param attachments: file path or list of file paths to attach + """ + + if isinstance(to, str): + to = [to] + + if attachments is None: + attachments = [] + elif isinstance(attachments, (str, Path)): + attachments = [attachments] + + attachment_payloads = [] + for path in attachments: + path = Path(path) + attachment_payloads.append({ + "@odata.type": "#microsoft.graph.fileAttachment", + "name": path.name, + "contentType": "application/octet-stream", + "contentBytes": base64.b64encode(path.read_bytes()).decode(), + }) + + payload = { + "message": { + "subject": subject, + "body": { + "contentType": "HTML" if html else "Text", + "content": body, + }, + "toRecipients": [ + {"emailAddress": {"address": addr}} for addr in to + ], + **({"attachments": attachment_payloads} if attachment_payloads else {}), + }, + "saveToSentItems": "true", + } + + headers = { + "Authorization": f"Bearer {_get_token()}", + "Content-Type": "application/json", + } + + r = requests.post( + f"https://graph.microsoft.com/v1.0/users/{SENDER}/sendMail", + headers=headers, + json=payload, + timeout=30, + ) + + if r.status_code != 202: + raise RuntimeError( + f"sendMail failed [{r.status_code}]: {r.text}" + ) diff --git a/Knihovny/najdi_dropbox.py b/Knihovny/najdi_dropbox.py new file mode 100644 index 0000000..a6444d7 --- /dev/null +++ b/Knihovny/najdi_dropbox.py @@ -0,0 +1,62 @@ +import winreg +import json +import os + + +def get_dropbox_root() -> str: + """ + Vrátí kořenovou cestu složky Dropbox na tomto počítači. + + Dropbox může být nainstalován na různých discích (C:, U:, Z: …), + ale struktura složek uvnitř zůstává vždy stejná. Tato funkce zjistí + aktuální umístění, takže ostatní skripty nemusí cestu napevno zadávat. + + Postup hledání (v tomto pořadí): + 1. Registr HKCU\\Software\\Dropbox\\ks — hlavní klíč, hodnota "Personal" + je uložena jako byte array v kódování UTF-16 LE. + 2. Registr HKCU\\Software\\Dropbox\\ks1 — alternativní klíč používaný + novějšími verzemi klienta Dropbox. + 3. Soubor info.json v %APPDATA%\\Dropbox\\ nebo %LOCALAPPDATA%\\Dropbox\\ + — záložní metoda, pokud registr cestu neobsahuje. + + Vrací: + str: Absolutní cesta ke kořenové složce Dropboxu, např. "U:\\Dropbox". + + Vyvolá: + RuntimeError: Pokud se cestu nepodaří zjistit žádnou z metod. + + Příklad použití: + from Knihovny.najdi_dropbox import get_dropbox_root + import os + + ROOT = get_dropbox_root() + PACIENTI = os.path.join(ROOT, "Ordinace", "Pacienti") + """ + + # Metoda 1 a 2: registr HKCU\Software\Dropbox\ks a ks1 + for subkey in (r"Software\Dropbox\ks", r"Software\Dropbox\ks1"): + try: + with winreg.OpenKey(winreg.HKEY_CURRENT_USER, subkey) as key: + value, _ = winreg.QueryValueEx(key, "Personal") + path = bytes(value).decode("utf-16-le").rstrip("\x00") + if path: + return path + except (OSError, UnicodeDecodeError): + continue + + # Metoda 3: záložní — info.json v AppData + for base in (os.getenv("APPDATA", ""), os.getenv("LOCALAPPDATA", "")): + info_path = os.path.join(base, "Dropbox", "info.json") + if os.path.isfile(info_path): + with open(info_path, encoding="utf-8") as f: + info = json.load(f) + path = (info.get("personal") or info.get("business") or {}).get("path", "") + if path: + return path + + raise RuntimeError("Nepodařilo se zjistit cestu k Dropboxu.") + + +if __name__ == "__main__": + root = get_dropbox_root() + print(f"Dropbox root: {root}") diff --git a/Medidata/.env b/Medidata/.env new file mode 100644 index 0000000..b800fab --- /dev/null +++ b/Medidata/.env @@ -0,0 +1,5 @@ +IMEDIDATA_USERNAME=vladimir.buzalka +IMEDIDATA_PASSWORD=Mar2026Ax162q8+ +DOWNLOAD_DIR=./downloads + + diff --git a/Medidata/Tests/download_report.py b/Medidata/Tests/download_report.py new file mode 100644 index 0000000..c1860e9 --- /dev/null +++ b/Medidata/Tests/download_report.py @@ -0,0 +1,489 @@ +""" +download_report.py +NAHRAZENO skriptem download_edc_datalistings.py + +Původně: stahování Data Listing reportů pro studii MDD3003 (CZE). +""" + +import os +import sys +from datetime import datetime, timedelta +from pathlib import Path +from dotenv import load_dotenv +from playwright.sync_api import sync_playwright, TimeoutError as PWTimeout +import tkinter as tk +from tkinter import simpledialog + +load_dotenv(Path(__file__).parent / ".env") + +USERNAME = os.getenv("IMEDIDATA_USERNAME", "vladimir.buzalka") +PASSWORD = os.getenv("IMEDIDATA_PASSWORD", "") +DOWNLOAD_DIR = Path(__file__).parent / "downloads" +AUTH_FILE = Path(__file__).parent / "auth.json" +AUTH_MAX_AGE_DAYS = 7 + +LOGIN_URL = "https://login.imedidata.com/login" +SELECT_ROLE_URL = ( + "https://jnjja.mdsol.com/MedidataRave/SelectRole.aspx" + "?client_division_uuid=e5de55d5-a414-4bd1-9abe-18e96fd5475d" + "&study_group_uuid=b0793ca6-33ec-44e8-883b-6fc1a4b671c4" + "&studygroup_id=107981" +) + +STUDY_NAME = "42847922MDD3003" +SITE_GROUP = "CZE" +FORM_NAMES = [ + "Date of Visit", + "Vital Signs", + "Interim Investigator Signature", +] +REPORT_ID = 92 # _EDC Std Rpt - Data Listing (Data Stream) + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def auth_valid(): + if not AUTH_FILE.exists(): + return False + age = datetime.now() - datetime.fromtimestamp(AUTH_FILE.stat().st_mtime) + return age < timedelta(days=AUTH_MAX_AGE_DAYS) + + +def wait_load(page, extra_ms=1000): + """Čeká na 'load' event + extra pauza. Rave nikdy nedosáhne networkidle.""" + try: + page.wait_for_load_state("load", timeout=20_000) + except PWTimeout: + pass + page.wait_for_timeout(extra_ms) + + +def dbg(page, label): + print(f"[{label}] URL: {page.url}") + + +# --------------------------------------------------------------------------- +# Login +# --------------------------------------------------------------------------- + +def _ask_otp_popup(): + """Zobrazí GUI dialog pro zadání OKTA OTP kódu.""" + root = tk.Tk() + root.withdraw() + root.lift() + root.attributes("-topmost", True) + otp = simpledialog.askstring( + "OKTA MFA", + "Zadej OTP kód z OKTA (6 číslic):", + parent=root, + ) + root.destroy() + return (otp or "").strip() + + +def do_login(page, context): + print("Přihlašuji se do iMedidata...") + page.goto(LOGIN_URL) + wait_load(page, 500) + dbg(page, "login-page") + + # Pole username a password mají jméno session[username] / session[password] + page.wait_for_selector('input[name="session[username]"]', timeout=10_000) + page.fill('input[name="session[username]"]', USERNAME) + page.fill('input[name="session[password]"]', PASSWORD) + page.click('button[type="submit"]') + + # Čekáme na přesměrování — může jít přes OKTA nebo rovnou na home + wait_load(page, 2000) + dbg(page, "after-signin") + + # OKTA MFA? + if _okta_mfa_present(page): + print("\n*** OKTA MFA vyžadována! ***") + otp = _ask_otp_popup() + if not otp: + print("CHYBA: OTP nebylo zadáno.") + sys.exit(1) + _fill_otp(page, otp) + # Čekáme na zpracování OTP a redirect zpět na iMedidata + wait_load(page, 3000) + dbg(page, "after-otp") + + # Počkáme až budeme na home.imedidata.com + try: + page.wait_for_url("**/home.imedidata.com**", timeout=30_000) + except PWTimeout: + dbg(page, "wait-home-timeout") + + dbg(page, "final-login") + + if "home.imedidata.com" not in page.url: + print("CHYBA: Přihlášení se nezdařilo! Zkontroluj heslo nebo OKTA kód.") + input("Zmáčkni Enter pro ukončení...") + sys.exit(1) + + context.storage_state(path=str(AUTH_FILE)) + print("Session uložena do auth.json") + + +def _okta_mfa_present(page): + if "okta" in page.url.lower(): + return True + for sel in [ + 'input[name="answer"]', + 'input[name*="otp"]', + 'input[name*="code"]', + 'input[placeholder*="code" i]', + ]: + if page.query_selector(sel): + return True + return False + + +def _fill_otp(page, otp): + for sel in [ + 'input[name="answer"]', + 'input[name*="otp"]', + 'input[name*="code"]', + 'input[type="tel"]', + 'input[placeholder*="code" i]', + ]: + el = page.query_selector(sel) + if el: + el.fill(otp) + page.keyboard.press("Enter") + return + # Záložní: zkusíme první viditelný text input + page.keyboard.type(otp) + page.keyboard.press("Enter") + + +# --------------------------------------------------------------------------- +# Navigace po přihlášení +# --------------------------------------------------------------------------- + +def go_to_select_role(page): + """Přejde na SelectRole stránku a vrátí True pokud jsme tam skutečně.""" + print(f"Navigace na SelectRole...") + try: + page.goto(SELECT_ROLE_URL) + except Exception: + # Rave dělá server-side redirect (ERR_ABORTED) — zkontrolujeme URL až po načtení + pass + wait_load(page, 1500) + dbg(page, "select-role") + return "login" not in page.url.lower() and "okta" not in page.url.lower() + + +def select_role(page): + """Vybere Site Manager a klikne Continue.""" + print("Vybírám roli Site Manager...") + + # Počkáme na select element + try: + page.wait_for_selector("select", timeout=10_000) + except PWTimeout: + dbg(page, "no-select-found") + return + + # Najdeme select s option Site Manager + selects = page.query_selector_all("select") + found = False + for sel_el in selects: + opts = sel_el.query_selector_all("option") + for opt in opts: + txt = (opt.inner_text() or "").strip() + if "site manager" in txt.lower(): + sel_el.select_option(label=txt) + found = True + print(f" Vybráno: '{txt}'") + break + if found: + break + + if not found: + print(" VAROVÁNÍ: Option 'Site Manager' nenalezena, zkouším kliknout na text...") + try: + page.get_by_text("Site Manager", exact=False).first.click() + except Exception as e: + print(f" {e}") + + # Klikneme Continue + for btn_sel in [ + 'input[value="Continue"]', + 'input[type="submit"]', + 'button:has-text("Continue")', + 'button[type="submit"]', + ]: + try: + btn = page.query_selector(btn_sel) + if btn: + btn.click() + break + except Exception: + continue + + wait_load(page, 2000) + dbg(page, "after-role") + + +def navigate_to_reporter(page): + print("Klikám na Reporter...") + try: + page.wait_for_selector('a:has-text("Reporter")', timeout=15_000) + page.click('a:has-text("Reporter")') + wait_load(page, 1500) + dbg(page, "reporter") + except PWTimeout: + dbg(page, "reporter-not-found") + raise + + +def open_report(page): + print(f"Klikám na report ID={REPORT_ID} (Data Listing - Data Stream)...") + selector = f'a[href="PromptsPage.aspx?ReportID={REPORT_ID}"]' + try: + page.wait_for_selector(selector, timeout=15_000) + page.click(selector) + wait_load(page, 2000) + dbg(page, "report-opened") + except PWTimeout: + dbg(page, "report-not-found") + raise + + +# --------------------------------------------------------------------------- +# Parametry reportu +# --------------------------------------------------------------------------- + +def set_study_param(page): + """Rozbalí Study panel a vybere 42847922MDD3003.""" + print(f" Parametr Study: {STUDY_NAME}") + + page.click('#PromptsBox_st_ShowHideBtn') + page.wait_for_timeout(1500) + + # Checkbox index 0 = 42847922MDD3003 (ověřeno dříve) + page.wait_for_selector('#PromptsBox_st_FrontEndCBList_0', timeout=10_000) + cb = page.locator('#PromptsBox_st_FrontEndCBList_0') + if not cb.is_checked(): + cb.check() + wait_load(page, 3000) + dbg(page, "after-study") + + +def set_site_group_param(page): + """Rozbalí Site Group, vybere CZE a zaškrtne Include Sub Site Groups.""" + print(f" Parametr Site Group: {SITE_GROUP}") + + # Rozbalit Site Group panel + page.click('#PromptsBox_sg_ShowHideBtn') + page.wait_for_timeout(1500) + + # Vybrat CZE a spustit change event (jinak postback nepřijde) + page.wait_for_selector('#PromptsBox_sg_List', timeout=10_000) + page.select_option('#PromptsBox_sg_List', label=SITE_GROUP) + page.evaluate("document.querySelector('#PromptsBox_sg_List').dispatchEvent(new Event('change', {bubbles:true}))") + wait_load(page, 2000) + + # Include Sub Site Groups + print(" Include Sub Site Groups: zapnuto") + cb = page.locator('#PromptsBox_sg_CheckBox') + if not cb.is_checked(): + cb.check() + page.evaluate("document.querySelector('#PromptsBox_sg_CheckBox').dispatchEvent(new Event('change', {bubbles:true}))") + wait_load(page, 2000) + + # Zavřít panel = potvrzení výběru, spustí postback pro Form + page.click('#PromptsBox_sg_ShowHideBtn') + wait_load(page, 3000) + dbg(page, "after-site-group") + + +def set_form_param(page, form_name): + """Rozbalí Form panel (pokud je zavřený) a zaškrtne formulář. + Panel je SingleSelection=1, takže nový výběr automaticky odznačí předchozí.""" + print(f" Parametr Form: {form_name}") + + # Otevřít panel jen pokud je zavřený (kontrola přes style.display) + is_closed = page.locator('#PromptsBox_fm2_div').evaluate('el => el.style.display') == 'none' + if is_closed: + page.click('#PromptsBox_fm2_ShowHideBtn') + page.wait_for_timeout(2000) + + # Po předchozím stažení je panel v "locked" módu. + # 1. klik na tužku → vymaže výběr, tlačítko se změní na oko + # 2. klik na oko → načte seznam všech formulářů + if page.locator('#PromptsBox_fm2_PageModeBtn').is_visible(): + page.click('#PromptsBox_fm2_PageModeBtn') # tužka → oko + page.wait_for_timeout(1000) + page.click('#PromptsBox_fm2_PageModeBtn') # oko → načte formuláře + page.wait_for_timeout(2000) + + # Vyhledat formulář — klik zajistí focus, Enter spustí ajaxSelectionGridSearchBoxOnKeypress + search = page.locator('#PromptsBox_fm2_SearchTxt') + search.wait_for(state='visible', timeout=10_000) + search.click() + search.fill(form_name) + search.press('Enter') + + # Počkáme až AJAX přepíše DOM se seznamem výsledků + cb_locator = page.locator('input[id^="PromptsBox_fm2_FrontEndCBList_"]').first + try: + cb_locator.wait_for(state='visible', timeout=8_000) + except PWTimeout: + print(f" VAROVÁNÍ: '{form_name}' nenalezen nebo timeout!") + return + + # SingleSelection=1: klik na nový checkbox automaticky odznačí předchozí + # Locator se vyhodnotí čerstvě — žádný stale element handle + if not cb_locator.is_checked(): + cb_locator.click() + print(f" '{form_name}' zaškrtnuto") + wait_load(page, 500) + + +# --------------------------------------------------------------------------- +# Submit a download +# --------------------------------------------------------------------------- + +def submit_and_download(page, context, form_name): + print("Odesílám report (čekám na nové okno)...") + + with context.expect_page() as new_page_info: + page.locator('input[value="Submit Report"], button:has-text("Submit Report")').first.click() + + new_page = new_page_info.value + new_page.wait_for_url(lambda url: url != 'about:blank', timeout=30_000) + # Čekáme až se zobrazí Download File — stránka nejdřív ukazuje "Loading" + print(" Čekám na vygenerování reportu...") + new_page.wait_for_selector( + 'input[value="Download File"], button:has-text("Download File")', + timeout=300_000 # až 5 minut pro velké reporty + ) + new_page.wait_for_timeout(500) + dbg(new_page, "download-window") + + # Nastavení parametrů stahování + print(" Nastavuji parametry stahování...") + + # Separator: čárka (default) + sep = new_page.query_selector('input[name*="Separator"], input[name*="separator"]') + if sep: + sep.fill(',') + + # File type: .csv + # Formulář je v iframu — najdeme správný frame + target_frame = new_page.main_frame + for frame in new_page.frames: + if frame.query_selector('select') or frame.query_selector('input[value="Download File"]'): + target_frame = frame + print(f" Frame nalezen: {frame.url}") + break + + # File type: .csv (application/vnd.ms-excel) + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + val = opt.get_attribute('value') or '' + txt = opt.inner_text() or '' + if 'vnd.ms-excel' in val or 'vnd.ms-excel' in txt: + sel.select_option(value=val) + print(" File type: .csv (application/vnd.ms-excel)") + break + + # Export type: attachment + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + if 'attachment' in (opt.get_attribute('value') or '').lower(): + sel.select_option(value='attachment') + break + + # Save as Unicode: necháme nezaškrtnuté (default) + + timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M") + form_slug = form_name.replace(" ", "") + filename = f"{timestamp}_EDC_MDD3003_{form_slug}_DataListing.csv" + output_path = DOWNLOAD_DIR / filename + + print("Stahuji CSV...") + with new_page.expect_download(timeout=60_000) as dl_info: + btn = target_frame.query_selector('input[value="Download File"], button:has-text("Download File")') + if btn: + btn.click() + else: + new_page.locator('input[value="Download File"], button:has-text("Download File")').first.click() + + download = dl_info.value + download.save_as(str(output_path)) + print(f"\nHotovo! Soubor uložen: {output_path}") + + try: + new_page.close() + print("Stahovací okno zavřeno.") + except Exception: + pass + + return output_path + + +# --------------------------------------------------------------------------- +# Hlavní flow +# --------------------------------------------------------------------------- + +def run(): + if not PASSWORD: + print("Chyba: nastav IMEDIDATA_PASSWORD v souboru .env") + sys.exit(1) + + DOWNLOAD_DIR.mkdir(exist_ok=True) + + with sync_playwright() as p: + browser = p.chromium.launch(headless=False, slow_mo=200) + ctx_kwargs = {"accept_downloads": True} + + use_saved = auth_valid() + if use_saved: + print("Načítám uloženou session (auth.json)...") + ctx_kwargs["storage_state"] = str(AUTH_FILE) + + context = browser.new_context(**ctx_kwargs) + page = context.new_page() + + # Přejdeme na SelectRole + logged_in = go_to_select_role(page) + + if not logged_in: + if use_saved: + print("Session expirovala, mažu auth.json a přihlašuji znovu...") + AUTH_FILE.unlink(missing_ok=True) + do_login(page, context) + go_to_select_role(page) + + # Krok 4: výběr role → přiřadí session ID + select_role(page) + + # Krok 5: Reporter + navigate_to_reporter(page) + + # Krok 6: otevření reportu + open_report(page) + + # Krok 7: nastavení parametrů (Study a Site Group jednou, Form v smyčce) + print("Nastavuji parametry reportu...") + set_study_param(page) + set_site_group_param(page) + + # Krok 8: smyčka přes formuláře + for form_name in FORM_NAMES: + print(f"\n=== Stahuji formulář: {form_name} ===") + set_form_param(page, form_name) + submit_and_download(page, context, form_name) + + browser.close() + print("Prohlížeč zavřen.") + + +if __name__ == "__main__": + run() diff --git a/Medidata/Tests/download_uco3001.py b/Medidata/Tests/download_uco3001.py new file mode 100644 index 0000000..e70cabc --- /dev/null +++ b/Medidata/Tests/download_uco3001.py @@ -0,0 +1,440 @@ +""" +download_uco3001.py +NAHRAZENO skriptem download_edc_datalistings.py + +Původně: stahování Data Listing reportů (ReportID=92) pro studii UCO3001. +""" + +import os +import sys +from datetime import datetime, timedelta +from pathlib import Path +from dotenv import load_dotenv +from playwright.sync_api import sync_playwright, TimeoutError as PWTimeout +import tkinter as tk +from tkinter import simpledialog + +load_dotenv(Path(__file__).parent / ".env") + +USERNAME = os.getenv("IMEDIDATA_USERNAME", "vladimir.buzalka") +PASSWORD = os.getenv("IMEDIDATA_PASSWORD", "") +DOWNLOAD_DIR = Path(__file__).parent / "downloads" +AUTH_FILE = Path(__file__).parent / "auth.json" +AUTH_MAX_AGE_DAYS = 7 + +LOGIN_URL = "https://login.imedidata.com/login" +SELECT_ROLE_URL = ( + "https://jnjja.mdsol.com/MedidataRave/SelectRole.aspx" + "?client_division_uuid=e5de55d5-a414-4bd1-9abe-18e96fd5475d" + "&study_group_uuid=b0793ca6-33ec-44e8-883b-6fc1a4b671c4" + "&studygroup_id=107981" +) + +STUDY_SEARCH = "77242113UCO3001" # hledáme podle podřetězce v názvu studie +REPORT_ID = 92 # _EDC Std Rpt - Data Listing (Data Stream) + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def auth_valid(): + if not AUTH_FILE.exists(): + return False + age = datetime.now() - datetime.fromtimestamp(AUTH_FILE.stat().st_mtime) + return age < timedelta(days=AUTH_MAX_AGE_DAYS) + + +def wait_load(page, extra_ms=1000): + try: + page.wait_for_load_state("load", timeout=20_000) + except PWTimeout: + pass + page.wait_for_timeout(extra_ms) + + +def dbg(page, label): + print(f"[{label}] URL: {page.url}") + + +# --------------------------------------------------------------------------- +# Login +# --------------------------------------------------------------------------- + +def _ask_otp_popup(): + root = tk.Tk() + root.withdraw() + root.lift() + root.attributes("-topmost", True) + otp = simpledialog.askstring("OKTA MFA", "Zadej OTP kód z OKTA (6 číslic):", parent=root) + root.destroy() + return (otp or "").strip() + + +def do_login(page, context): + print("Přihlašuji se do iMedidata...") + page.goto(LOGIN_URL) + wait_load(page, 500) + page.wait_for_selector('input[name="session[username]"]', timeout=10_000) + page.fill('input[name="session[username]"]', USERNAME) + page.fill('input[name="session[password]"]', PASSWORD) + page.click('button[type="submit"]') + wait_load(page, 2000) + dbg(page, "after-signin") + + if _okta_mfa_present(page): + print("\n*** OKTA MFA vyžadována! ***") + otp = _ask_otp_popup() + if not otp: + print("CHYBA: OTP nebylo zadáno.") + sys.exit(1) + _fill_otp(page, otp) + wait_load(page, 3000) + + try: + page.wait_for_url("**/home.imedidata.com**", timeout=30_000) + except PWTimeout: + dbg(page, "wait-home-timeout") + + if "home.imedidata.com" not in page.url: + print("CHYBA: Přihlášení se nezdařilo!") + sys.exit(1) + + context.storage_state(path=str(AUTH_FILE)) + print("Session uložena do auth.json") + + +def _okta_mfa_present(page): + if "okta" in page.url.lower(): + return True + for sel in ['input[name="answer"]', 'input[name*="otp"]', + 'input[name*="code"]', 'input[placeholder*="code" i]']: + if page.query_selector(sel): + return True + return False + + +def _fill_otp(page, otp): + for sel in ['input[name="answer"]', 'input[name*="otp"]', + 'input[name*="code"]', 'input[type="tel"]', 'input[placeholder*="code" i]']: + el = page.query_selector(sel) + if el: + el.fill(otp) + page.keyboard.press("Enter") + return + page.keyboard.type(otp) + page.keyboard.press("Enter") + + +# --------------------------------------------------------------------------- +# Navigace +# --------------------------------------------------------------------------- + +def go_to_select_role(page): + print("Navigace na SelectRole...") + try: + page.goto(SELECT_ROLE_URL) + except Exception: + pass + wait_load(page, 1500) + dbg(page, "select-role") + return "login" not in page.url.lower() and "okta" not in page.url.lower() + + +def select_role(page): + print("Vybírám roli Site Manager...") + try: + page.wait_for_selector("select", timeout=10_000) + except PWTimeout: + return + + for sel_el in page.query_selector_all("select"): + for opt in sel_el.query_selector_all("option"): + txt = (opt.inner_text() or "").strip() + if "site manager" in txt.lower(): + sel_el.select_option(label=txt) + print(f" Vybráno: '{txt}'") + break + + for btn_sel in ['input[value="Continue"]', 'input[type="submit"]', + 'button:has-text("Continue")', 'button[type="submit"]']: + btn = page.query_selector(btn_sel) + if btn: + btn.click() + break + + wait_load(page, 2000) + dbg(page, "after-role") + + +def navigate_to_reporter(page): + print("Klikám na Reporter...") + page.wait_for_selector('a:has-text("Reporter")', timeout=15_000) + page.click('a:has-text("Reporter")') + wait_load(page, 1500) + dbg(page, "reporter") + + +def open_report(page): + print(f"Otevírám report ID={REPORT_ID} (Data Listing - Data Stream)...") + selector = f'a[href="PromptsPage.aspx?ReportID={REPORT_ID}"]' + page.wait_for_selector(selector, timeout=15_000) + page.click(selector) + wait_load(page, 2000) + dbg(page, "report-opened") + + +# --------------------------------------------------------------------------- +# Parametry reportu +# --------------------------------------------------------------------------- + +def set_study_param(page): + """Rozbalí Study panel a vybere studii podle podřetězce STUDY_SEARCH.""" + print(f" Parametr Study: hledám '{STUDY_SEARCH}'...") + + page.click('#PromptsBox_st_ShowHideBtn') + page.wait_for_timeout(1500) + + # Projdeme checkboxy a hledáme label obsahující STUDY_SEARCH + page.wait_for_selector('input[id^="PromptsBox_st_FrontEndCBList_"]', timeout=10_000) + checkboxes = page.query_selector_all('input[id^="PromptsBox_st_FrontEndCBList_"]') + + found = False + for cb in checkboxes: + cb_id = cb.get_attribute("id") + # Label je ve stejné nebo sousední — hledáme přes JS innerText rodiče + label_text = page.evaluate( + """id => { + const el = document.getElementById(id); + if (!el) return ''; + const row = el.closest('tr') || el.closest('td') || el.parentElement; + return row ? row.innerText : ''; + }""", + cb_id + ) + print(f" [{cb_id}] label: {label_text.strip()[:80]}") + if STUDY_SEARCH.upper() in label_text.upper(): + if not page.locator(f"#{cb_id}").is_checked(): + page.locator(f"#{cb_id}").check() + print(f" Nalezeno a zaškrtnuto: '{label_text.strip()}'") + found = True + break + + if not found: + # Záloha: zkusíme index 0 a varujeme + print(f" VAROVÁNÍ: Studie '{STUDY_SEARCH}' nenalezena! Zkouším index 0...") + cb0 = page.locator('#PromptsBox_st_FrontEndCBList_0') + if not cb0.is_checked(): + cb0.check() + + wait_load(page, 3000) + dbg(page, "after-study") + + +def set_site_group_param(page, country: str): + """Rozbalí Site Group, vybere zadanou zemi a zaškrtne Include Sub Site Groups.""" + print(f" Parametr Site Group: {country}") + + page.click('#PromptsBox_sg_ShowHideBtn') + page.wait_for_timeout(1500) + + page.wait_for_selector('#PromptsBox_sg_List', timeout=10_000) + page.select_option('#PromptsBox_sg_List', label=country) + page.evaluate( + "document.querySelector('#PromptsBox_sg_List').dispatchEvent(new Event('change', {bubbles:true}))" + ) + wait_load(page, 2000) + + cb = page.locator('#PromptsBox_sg_CheckBox') + if not cb.is_checked(): + cb.check() + page.evaluate( + "document.querySelector('#PromptsBox_sg_CheckBox').dispatchEvent(new Event('change', {bubbles:true}))" + ) + wait_load(page, 2000) + + # Zavřít panel = potvrzení → spustí postback pro Form + page.click('#PromptsBox_sg_ShowHideBtn') + wait_load(page, 3000) + dbg(page, "after-site-group") + + +def set_form_param(page, form_name: str): + """Vybere formulář v Form panelu.""" + print(f" Parametr Form: {form_name}") + + is_closed = page.locator('#PromptsBox_fm2_div').evaluate('el => el.style.display') == 'none' + if is_closed: + page.click('#PromptsBox_fm2_ShowHideBtn') + page.wait_for_timeout(2000) + + if page.locator('#PromptsBox_fm2_PageModeBtn').is_visible(): + page.click('#PromptsBox_fm2_PageModeBtn') + page.wait_for_timeout(1000) + page.click('#PromptsBox_fm2_PageModeBtn') + page.wait_for_timeout(2000) + + search = page.locator('#PromptsBox_fm2_SearchTxt') + search.wait_for(state='visible', timeout=10_000) + search.click() + search.fill(form_name) + page.wait_for_timeout(2000) + search.press('Enter') + page.wait_for_timeout(2000) + + cb_locator = page.locator('input[id^="PromptsBox_fm2_FrontEndCBList_"]').first + try: + cb_locator.wait_for(state='visible', timeout=8_000) + except PWTimeout: + print(f" VAROVÁNÍ: '{form_name}' nenalezen!") + return + + if not cb_locator.is_checked(): + cb_locator.click() + print(f" '{form_name}' zaškrtnuto") + page.wait_for_timeout(2000) + + +# --------------------------------------------------------------------------- +# Submit a download +# --------------------------------------------------------------------------- + +def submit_and_download(page, context, form_name: str, country: str | None): + print("Odesílám report...") + + with context.expect_page() as new_page_info: + page.locator('input[value="Submit Report"], button:has-text("Submit Report")').first.click() + + new_page = new_page_info.value + new_page.wait_for_url(lambda url: url != 'about:blank', timeout=30_000) + + print(" Čekám na vygenerování reportu (max 5 min)...") + new_page.wait_for_selector( + 'input[value="Download File"], button:has-text("Download File")', + timeout=300_000 + ) + new_page.wait_for_timeout(500) + dbg(new_page, "download-window") + + # Najdeme správný frame + target_frame = new_page.main_frame + for frame in new_page.frames: + if frame.query_selector('select') or frame.query_selector('input[value="Download File"]'): + target_frame = frame + break + + # File type: .csv (application/vnd.ms-excel) + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + val = opt.get_attribute('value') or '' + if 'vnd.ms-excel' in val: + sel.select_option(value=val) + print(" File type: .csv (application/vnd.ms-excel)") + break + + # Export type: attachment + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + if 'attachment' in (opt.get_attribute('value') or '').lower(): + sel.select_option(value='attachment') + break + + timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M") + country_slug = country if country else "ALL" + form_slug = form_name.replace(" ", "").replace("/", "-").replace("(", "").replace(")", "") + filename = f"{timestamp}_EDC_UCO3001_{country_slug}_{form_slug}_DataListing.csv" + output_path = DOWNLOAD_DIR / filename + + print("Stahuji CSV...") + with new_page.expect_download(timeout=60_000) as dl_info: + btn = target_frame.query_selector('input[value="Download File"], button:has-text("Download File")') + if btn: + btn.click() + else: + new_page.locator('input[value="Download File"], button:has-text("Download File")').first.click() + + dl_info.value.save_as(str(output_path)) + print(f"\nHotovo! Soubor uložen: {output_path}") + + try: + new_page.close() + except Exception: + pass + + return output_path + + +# --------------------------------------------------------------------------- +# Hlavní funkce +# --------------------------------------------------------------------------- + +def download_datalisting_reports_3001(form_name: str, country: str | None = None): + """ + Stáhne Data Listing report pro studii UCO3001. + + Args: + form_name: Název formuláře, např. "Trial Disposition (Completion / Discontinuation)" + country: Kód site group, např. "CZE". Pokud None, filtr země se nenastaví (všechny). + """ + if not PASSWORD: + print("Chyba: nastav IMEDIDATA_PASSWORD v souboru .env") + sys.exit(1) + + DOWNLOAD_DIR.mkdir(exist_ok=True) + + with sync_playwright() as p: + browser = p.chromium.launch(headless=False, slow_mo=200) + ctx_kwargs = {"accept_downloads": True} + + use_saved = auth_valid() + if use_saved: + print("Načítám uloženou session (auth.json)...") + ctx_kwargs["storage_state"] = str(AUTH_FILE) + + context = browser.new_context(**ctx_kwargs) + page = context.new_page() + + logged_in = go_to_select_role(page) + + if not logged_in: + if use_saved: + print("Session expirovala, přihlašuji znovu...") + AUTH_FILE.unlink(missing_ok=True) + do_login(page, context) + go_to_select_role(page) + + select_role(page) + navigate_to_reporter(page) + open_report(page) + + print("\nNastavuji parametry reportu...") + set_study_param(page) + + if country: + set_site_group_param(page, country) + else: + print(" Parametr Site Group: přeskočen (všechny země)") + + print(f"\n=== Stahuji formulář: {form_name} ===") + set_form_param(page, form_name) + output = submit_and_download(page, context, form_name, country) + + browser.close() + print("Prohlížeč zavřen.") + return output + + +# --------------------------------------------------------------------------- +# CLI +# --------------------------------------------------------------------------- + +if __name__ == "__main__": + # Příklady spuštění: + # python download_uco3001.py + # python download_uco3001.py CZE + + country_arg = sys.argv[1] if len(sys.argv) > 1 else None + download_datalisting_reports_3001( + form_name="Trial Disposition (Completion / Discontinuation)", + country=country_arg, + ) diff --git a/Medidata/Tests/edc_import.py b/Medidata/Tests/edc_import.py new file mode 100644 index 0000000..b53674a --- /dev/null +++ b/Medidata/Tests/edc_import.py @@ -0,0 +1,451 @@ +""" +Import EDC CSV reportů do MongoDB. + +Použití: + python edc_import.py report.csv + python edc_import.py reports/*.csv + python edc_import.py report.csv --host mongodb://192.168.1.100:27017 --db klinicka_studie +""" + +import argparse +import csv +import glob +import logging +import os +import re +import sys +from datetime import datetime, timezone +from pathlib import Path + +from pymongo import MongoClient, ASCENDING +from pymongo.errors import PyMongoError + +# --------------------------------------------------------------------------- +# Logging +# --------------------------------------------------------------------------- +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s %(levelname)s %(message)s", + handlers=[ + logging.FileHandler("edc_import.log", encoding="utf-8"), + logging.StreamHandler(open(sys.stdout.fileno(), mode="w", encoding="utf-8", closefd=False)), + ], +) +log = logging.getLogger(__name__) + +# --------------------------------------------------------------------------- +# Mapování pevných CSV sloupců na MongoDB cesty +# --------------------------------------------------------------------------- +FIXED_FIELDS = { + "StudyName": "study", + "SiteGroupName": "site.group", + "SiteID": "site.id", + "SiteNumber": "site.number", + "Site": "site.name", + "SubjectID": "subject.id", + "Subject": "subject.label", + "CRFVersionID": "form.crfVersionId", + "InstanceID": "form.instanceId", + "InstanceName": "form.instanceName", + "FolderSeq": "form.folderSeq", + "Page": "form.page", + "RecordID": "form.recordId", + "RecordPosition": "form.recordPosition", + "LastModifiedDate": "lastModified", + "PrintDateTime": "importedAt", +} + +# Sloupce, které jdou do _meta (ostatní administrativní) +META_FIELDS = {"RunUser", "VersionNumber", "FilterField"} + +# Pole, která se převedou na int +INT_FIELDS = {"Elapsed days"} + +# Formáty datumů, které zkusíme parsovat +DATE_FORMATS = [ + "%d %b %Y %H:%M:%S", # 20 MAY 2026 12:06:18 + "%d %b %Y %H:%M:%S:%f", # 10 Aug 2025 18:13:22:080 (EDC query dates) + "%Y%m%d %H:%M:%S.%f", # 20250810 18:13:22.080 (sortable query dates) + "%Y-%m-%d %H:%M:%S", # 2026-05-20 12:06:28 + "%Y-%m-%dT%H:%M:%S", + "%Y-%m-%dT%H:%M:%S.%fZ", + "%d/%m/%Y %H:%M:%S", + "%m/%d/%Y %H:%M:%S", + "%m/%d/%Y %I:%M:%S %p", # 5/20/2026 1:23:27 PM +] + +# --------------------------------------------------------------------------- +# QueryDetails — detekce a mapování +# --------------------------------------------------------------------------- +QUERY_DETAIL_MARKER = "QueryID(ReQry)" + +QUERY_META_FIELDS = { + "StudyParameter", "SiteGroupParameter", "SiteNumberParameter", "SiteParameter", + "SubjectParameter", "SubjectStatusParameter", "FolderParameter", "FormParameter", + "FieldParameter", "MarkingGroupParameter", "QueryStatusParameter", + "IncludeInactivePagesParameter", "PageSDVParameter", "PageFrozenParameter", + "PageLockedParameter", "StartDateParameter", "EndDateParameter", + "MilestoneParameter", "ReportTypeParameter", "VersionNumber", "TimeZone", + "RunUser", "ErrorString", + # Sortable dates — redundantní, parsujeme z hlavních sloupců + "OpenedDateSrtble", "AnsweredDateSrtble", "ClosedDateSrtble", + # Agregátní počty — jdou do meta + "VisitSiteLevel", "VisitCountryLevel", "VisitStudyLevel", + "PageSubjectLevel", "PageSiteLevel", "PageCountryLevel", "PageStudyLevel", + "Queries (Op/Ans/SDV)", +} + + +def is_query_details(fieldnames: list[str]) -> bool: + return QUERY_DETAIL_MARKER in fieldnames + + +def map_query_row(row: dict, source_file: str) -> dict: + """Přemapuje řádek QueryDetails reportu na MongoDB dokument.""" + + def val(col: str) -> str: + return (row.get(col) or "").strip() + + def int_or_none(col: str): + v = val(col) + if v == "": + return None + try: + return int(v) + except ValueError: + return v + + def date_or_str(col: str): + v = val(col) + if not v: + return None + parsed = parse_date(v) + return parsed if parsed else v + + meta = {k: row[k].strip() for k in QUERY_META_FIELDS if row.get(k, "").strip()} + + doc = { + "study": val("StudyParameter"), + "site": { + "group": val("Country/Region"), + "number": val("Site Number"), + "name": val("Sites"), + }, + "subject": { + "label": val("Subjects"), + "status": val("Subject Status"), + }, + "visit": val("Visits"), + "page": val("Pages"), + "recordPosition": int_or_none("RecordPosition"), + "field": val("Field"), + "queryGroup": val("Query Group"), + "queryId": val(QUERY_DETAIL_MARKER), + "queryStatus": val("QueryStatus"), + "openedBy": val("Opened By"), + "openedDate": date_or_str("Opened Date"), + "answeredBy": val("Answered By") or None, + "answeredDate": date_or_str("Answered Date"), + "closedBy": val("Closed By") or None, + "closedDate": date_or_str("Closed Date"), + "daysNotYetClosed": int_or_none("DaysNotYetClosed"), + "daysToAnswer": int_or_none("Days to Answer"), + "daysToClose": int_or_none("Days to Close"), + "queryText": val("QueryText"), + "answerText": val("Answer Text (if any)") or None, + "importedAt": date_or_str("PrintDateTime"), + "sourceFile": source_file, + "_meta": meta, + } + + # Odstraň None hodnoty z top-level (ne z nested) + return {k: v for k, v in doc.items() if v is not None or k in ("queryId",)} + + +def ensure_query_indexes(collection) -> None: + collection.create_index([("queryId", ASCENDING)], unique=True, sparse=True) + collection.create_index([("subject.label", ASCENDING)]) + collection.create_index([("site.number", ASCENDING)]) + collection.create_index([("queryStatus", ASCENDING)]) + collection.create_index([("openedDate", ASCENDING)]) + + +def ensure_snapshot_indexes(collection) -> None: + """Indexy pro queries_snapshots — unikátní kombinace queryId + snapshotDate.""" + collection.create_index( + [("queryId", ASCENDING), ("snapshotDate", ASCENDING)], + unique=True, + ) + collection.create_index([("snapshotDate", ASCENDING)]) + collection.create_index([("queryStatus", ASCENDING)]) + collection.create_index([("site.number", ASCENDING)]) + collection.create_index([("subject.label", ASCENDING)]) + + +def extract_snapshot_date(filename: str) -> str: + """ + Vytáhne datum ze jména souboru. + '2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv' → '2026-05-20' + Fallback: dnešní datum. + """ + stem = Path(filename).name + match = re.match(r"(\d{4}-\d{2}-\d{2})", stem) + if match: + return match.group(1) + return datetime.now(timezone.utc).strftime("%Y-%m-%d") + + +def parse_date(value: str) -> str | None: + """Pokusí se převést string na ISO 8601; jinak vrátí None.""" + value = value.strip() + for fmt in DATE_FORMATS: + try: + dt = datetime.strptime(value, fmt) + return dt.replace(tzinfo=timezone.utc).isoformat() + except ValueError: + continue + return None + + +def set_nested(doc: dict, path: str, value: str) -> None: + """Nastaví hodnotu v nested dict podle tečkové cesty, např. 'site.id'.""" + parts = path.split(".") + for part in parts[:-1]: + doc = doc.setdefault(part, {}) + doc[parts[-1]] = value + + +def collection_name_from_filename(filename: str) -> str: + """ + Odvodí název kolekce z názvu souboru. + '2026-05-20_15-09_EDC_MDD3003_InterimInvestigatorSignature_DataListing.csv' → 'MDD3003_InterimInvestigatorSignature' + '2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv' → 'MDD3003_QueryDetails' + """ + stem = Path(filename).stem + # Se suffixem _DataListing + match = re.search(r"EDC_(.+?)_DataListing", stem, re.IGNORECASE) + if match: + return match.group(1) + # Bez suffixu _DataListing (např. QueryDetails) + match = re.search(r"EDC_(.+)$", stem, re.IGNORECASE) + if match: + return match.group(1) + return stem + + +def map_row(row: dict, source_file: str) -> dict: + """Přemapuje jeden CSV řádek na MongoDB dokument.""" + doc: dict = {} + meta: dict = {} + fields: dict = {} + + # Zjisti všechny klíče pro FieldNValue/FieldNLabel + field_keys = set(row.keys()) + + for col, value in row.items(): + value = value.strip() if value else "" + + # Pevná pole + if col in FIXED_FIELDS: + path = FIXED_FIELDS[col] + + if path == "form.folderSeq": + try: + value = int(value) + except (ValueError, TypeError): + pass + elif path == "form.recordPosition": + try: + value = int(value) + except (ValueError, TypeError): + pass + elif path in ("lastModified", "importedAt"): + parsed = parse_date(value) + value = parsed if parsed else value + + set_nested(doc, path, value) + continue + + # Meta pole + if col in META_FIELDS: + if value: + meta[col] = value + continue + + # FieldNLabel / FieldNValue jsou zpracovány níže + if re.match(r"^Field\d+(Value|Label)$", col): + continue + + # Zbývající neznámé pevné sloupce také do meta + if not re.match(r"^Field\d+", col): + if value: + meta[col] = value + + # Zpracuj páry Field1Value/Field1Label ... Field300Value/Field300Label + n = 1 + while True: + val_key = f"Field{n}Value" + lbl_key = f"Field{n}Label" + if val_key not in field_keys and lbl_key not in field_keys: + break + label = (row.get(lbl_key) or "").strip() + value = (row.get(val_key) or "").strip() + if label and value: + # Pokus o převod čísel + if label in INT_FIELDS: + try: + fields[label] = int(value) + except ValueError: + fields[label] = value + else: + # Pokus o datum + parsed = parse_date(value) + fields[label] = parsed if parsed else value + n += 1 + + doc["fields"] = fields + doc["sourceFile"] = source_file + if meta: + doc["_meta"] = meta + + return doc + + +def ensure_indexes(collection) -> None: + collection.create_index([("form.recordId", ASCENDING)], unique=True, sparse=True) + collection.create_index([("subject.id", ASCENDING)]) + collection.create_index([("site.id", ASCENDING)]) + collection.create_index([("study", ASCENDING)]) + collection.create_index([("lastModified", ASCENDING)]) + + +def import_file( + csv_path: str, + collection, + snapshot_col=None, + snapshot_date: str | None = None, +) -> tuple[int, int, int]: + """ + Importuje jeden CSV soubor. Vrátí (inserted, updated, errors). + snapshot_col: pokud je zadán, pro QueryDetails se zapíše i daily snapshot. + """ + inserted = updated = errors = 0 + source_file = Path(csv_path).name + + with open(csv_path, encoding="utf-8", newline="") as f: + reader = csv.DictReader(f, delimiter=",", quotechar='"') + query_mode = is_query_details(reader.fieldnames or []) + + for line_no, row in enumerate(reader, start=2): + try: + if query_mode: + doc = map_query_row(row, source_file) + upsert_key = {"queryId": doc["queryId"]} + + # Snapshot — upsert na (queryId, snapshotDate) + if snapshot_col is not None and snapshot_date: + snap_doc = {**doc, "snapshotDate": snapshot_date} + snapshot_col.update_one( + {"queryId": doc["queryId"], "snapshotDate": snapshot_date}, + {"$set": snap_doc}, + upsert=True, + ) + else: + doc = map_row(row, source_file) + record_id = doc.get("form", {}).get("recordId") + upsert_key = {"form.recordId": record_id} if record_id else None + + if upsert_key: + result = collection.update_one( + upsert_key, + {"$set": doc}, + upsert=True, + ) + if result.upserted_id: + inserted += 1 + else: + updated += 1 + else: + collection.insert_one(doc) + inserted += 1 + + except PyMongoError as e: + errors += 1 + log.error("Řádek %d v %s: MongoDB chyba: %s", line_no, csv_path, e) + except Exception as e: + errors += 1 + log.error("Řádek %d v %s: %s", line_no, csv_path, e) + + return inserted, updated, errors + + +def main() -> None: + parser = argparse.ArgumentParser(description="Import EDC CSV reportů do MongoDB") + parser.add_argument("files", nargs="+", help="CSV soubory nebo glob vzor") + parser.add_argument("--host", default="mongodb://192.168.1.76:27017", help="MongoDB URI") + parser.add_argument("--db", default="edc", help="Název databáze") + args = parser.parse_args() + + # Rozbal glob vzory (důležité na Windows kde shell sám neglobuje) + paths: list[str] = [] + for pattern in args.files: + expanded = glob.glob(pattern) + paths.extend(expanded if expanded else [pattern]) + + if not paths: + log.error("Žádné soubory nenalezeny.") + sys.exit(1) + + client = MongoClient(args.host, serverSelectionTimeoutMS=5000) + try: + client.admin.command("ping") + except Exception as e: + log.error("Nelze se připojit k MongoDB (%s): %s", args.host, e) + sys.exit(1) + + db = client[args.db] + + total_inserted = total_updated = total_errors = 0 + + for csv_path in paths: + if not os.path.isfile(csv_path): + log.warning("Soubor neexistuje, přeskakuji: %s", csv_path) + continue + + # Detekuj typ souboru a vyber kolekci + indexy + with open(csv_path, encoding="utf-8", newline="") as f: + fieldnames = csv.DictReader(f).fieldnames or [] + if is_query_details(fieldnames): + col_name = "queries" + collection = db[col_name] + ensure_query_indexes(collection) + snapshot_col = db["queries_snapshots"] + ensure_snapshot_indexes(snapshot_col) + snapshot_date = extract_snapshot_date(csv_path) + log.info("Importuji: %s → %s.%s + queries_snapshots [%s]", + csv_path, args.db, col_name, snapshot_date) + else: + col_name = collection_name_from_filename(csv_path) + collection = db[col_name] + ensure_indexes(collection) + snapshot_col = None + snapshot_date = None + log.info("Importuji: %s → %s.%s", csv_path, args.db, col_name) + + inserted, updated, errors = import_file( + csv_path, collection, snapshot_col, snapshot_date + ) + total_inserted += inserted + total_updated += updated + total_errors += errors + log.info(" nové: %d aktualizované: %d chyby: %d", inserted, updated, errors) + + log.info("=" * 60) + log.info("Celkem — nové: %d aktualizované: %d chyby: %d", + total_inserted, total_updated, total_errors) + + client.close() + + +if __name__ == "__main__": + main() diff --git a/Medidata/create_report_v1.0.md b/Medidata/create_report_v1.0.md new file mode 100644 index 0000000..e2cc0be --- /dev/null +++ b/Medidata/create_report_v1.0.md @@ -0,0 +1,43 @@ +# create_report_v1.0.md + +**Skript:** `create_report_v1.0.py` +**Verze:** 1.0 +**Datum:** 2026-06-01 + +## Popis + +Generuje Excel EDC DataListing report pro studii **77242113UCO3001** z MongoDB (db: `edc`). + +## Výstup + +`Medidata/reports/YYYY-MM-DD 77242113UCO3001 EDC DataListing v1.0.xlsx` + +Stará verze se automaticky přesune do `reports/TRASH/`. + +## Listy + +| List | Kolekce MongoDB | Záznamy (CZE) | +|------|----------------|---------------| +| DateofVisit | UCO3001.DateofVisit | 55 | +| ConcomitantTherapy | UCO3001.ConcomitantTherapy | 91 | +| TrialDisposition | UCO3001.TrialDispositionCompletion-Discontinuation | 3 | + +## Sloupce (každý list) + +**Pevné:** SiteNumber · SiteName · Subject · Visit · FolderSeq · RecordPos · LastModified + +**Dynamické:** všechny klíče z `fields{}` v pořadí výskytu v MongoDB + +## Formátování + +- Záhlaví: tmavomodrý fill, bílý tučný text, Calibri 10 +- Data: Calibri 10, tenké ohraničení +- Zmrazení řádku 1, autofilter, šířky sloupců auto (max 55) +- Datumy: DD-MMM-YYYY (čas jen pokud != 00:00) + +## Spuštění + +``` +cd Medidata +python create_report_v1.0.py +``` diff --git a/Medidata/create_report_v1.0.py b/Medidata/create_report_v1.0.py new file mode 100644 index 0000000..9d47e6d --- /dev/null +++ b/Medidata/create_report_v1.0.py @@ -0,0 +1,210 @@ +""" +create_report_v1.0.py +Verze: 1.0 +Datum: 2026-06-01 +Popis: Excel EDC DataListing report pro studii UCO3001 z MongoDB (db: edc). + Jeden list per kolekce (DateofVisit / ConcomitantTherapy / TrialDisposition). + Sloupce: SiteNumber, SiteName, Subject, Visit, FolderSeq, RecordPos, + LastModified + dynamické fields.* z MongoDB. + Výstup: reports/YYYY-MM-DD 77242113UCO3001 EDC DataListing v1.0.xlsx +""" + +import shutil +from datetime import datetime +from pathlib import Path + +from openpyxl import Workbook +from openpyxl.styles import Alignment, Border, Font, PatternFill, Side +from openpyxl.utils import get_column_letter +from pymongo import ASCENDING, MongoClient + +# ── Konfigurace ─────────────────────────────────────────────────────────────── + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "edc" +STUDY_FULL = "77242113UCO3001" +VERSION = "1.0" + +OUTPUT_DIR = Path(__file__).parent / "reports" +TRASH_DIR = OUTPUT_DIR / "TRASH" + +COLLECTIONS = [ + "UCO3001.DateofVisit", + "UCO3001.ConcomitantTherapy", + "UCO3001.TrialDispositionCompletion-Discontinuation", +] + +# ── Formátování ─────────────────────────────────────────────────────────────── + +HEADER_FILL = PatternFill("solid", fgColor="1F4E79") +HEADER_FONT = Font(bold=True, color="FFFFFF", name="Calibri", size=10) +DATA_FONT = Font(name="Calibri", size=10) +THIN = Side(style="thin", color="CCCCCC") +BORDER = Border(left=THIN, right=THIN, top=THIN, bottom=THIN) + +# ── Pevné sloupce ───────────────────────────────────────────────────────────── + +FIXED_COLS = [ + ("SiteNumber", lambda d: d.get("site", {}).get("number", "")), + ("SiteName", lambda d: d.get("site", {}).get("name", "")), + ("Subject", lambda d: d.get("subject", {}).get("label", "")), + ("Visit", lambda d: d.get("form", {}).get("instanceName", "")), + ("FolderSeq", lambda d: d.get("form", {}).get("folderSeq", "")), + ("RecordPos", lambda d: d.get("form", {}).get("recordPosition", "")), + ("LastModified", lambda d: _fmt(d.get("lastModified", ""))), +] + + +# ── Helpers ─────────────────────────────────────────────────────────────────── + +def _fmt(value: str) -> str: + """ISO datetime string → 'DD-MMM-YYYY' nebo 'DD-MMM-YYYY HH:MM'.""" + if not value: + return "" + try: + dt = datetime.fromisoformat(value) + if dt.hour == 0 and dt.minute == 0 and dt.second == 0: + return dt.strftime("%d-%b-%Y") + return dt.strftime("%d-%b-%Y %H:%M") + except Exception: + return value + + +def _fmt_field(value) -> str: + """Naformátuje hodnotu z fields{} — datum nebo string.""" + if isinstance(value, str) and "T" in value and value.endswith(("+00:00", "Z")): + return _fmt(value) + return value if value is not None else "" + + +COLS_LAST_CT = [ + "CMTRT_ATC1", "CMTRT_ATC2", "CMTRT_ATC3", "CMTRT_ATC4", + "CMTRT_RXPREF", "CMTRT_TRADE_NAME", + "CMTRT_ATC1_CODE", "CMTRT_ATC2_CODE", "CMTRT_ATC3_CODE", "CMTRT_ATC4_CODE", + "CMTRT_RXPREF_CODE", "CMTRT_TRADE_NAME_CODE", +] + + +def _field_keys(docs: list, last: list | None = None) -> list: + """Vrátí seznam unikátních klíčů z fields{} — klíče v `last` přesunuty na konec.""" + seen = set() + keys = [] + for doc in docs: + for k in doc.get("fields", {}).keys(): + if k not in seen: + seen.add(k) + keys.append(k) + if last: + tail = [k for k in last if k in seen] + keys = [k for k in keys if k not in set(tail)] + tail + return keys + + +def _sheet_name(collection: str) -> str: + """UCO3001.SomeName → SomeName (max 31 znaků pro Excel).""" + name = collection.split(".", 1)[-1] + abbreviations = { + "TrialDispositionCompletion-Discontinuation": "TrialDisposition", + } + return abbreviations.get(name, name)[:31] + + +# ── Zápis listu ─────────────────────────────────────────────────────────────── + +def write_sheet(ws, docs: list, last_cols: list | None = None) -> None: + fixed_names = [c[0] for c in FIXED_COLS] + field_keys = _field_keys(docs, last=last_cols) + all_headers = fixed_names + field_keys + + # záhlaví + for col_i, header in enumerate(all_headers, 1): + cell = ws.cell(row=1, column=col_i, value=header) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.border = BORDER + cell.alignment = Alignment(horizontal="center", vertical="center") + ws.row_dimensions[1].height = 18 + ws.freeze_panes = "A2" + + # data + for row_i, doc in enumerate(docs, 2): + fields = doc.get("fields", {}) + + for col_i, (_, getter) in enumerate(FIXED_COLS, 1): + cell = ws.cell(row=row_i, column=col_i, value=getter(doc)) + cell.font = DATA_FONT + cell.border = BORDER + cell.alignment = Alignment(vertical="top") + + for col_off, key in enumerate(field_keys): + col_i = len(FIXED_COLS) + col_off + 1 + cell = ws.cell(row=row_i, column=col_i, value=_fmt_field(fields.get(key, ""))) + cell.font = DATA_FONT + cell.border = BORDER + cell.alignment = Alignment(vertical="top") + + # autofilter + if all_headers: + ws.auto_filter.ref = f"A1:{get_column_letter(len(all_headers))}1" + + # šířky sloupců + widths = {i: len(h) for i, h in enumerate(all_headers, 1)} + for doc in docs: + fields = doc.get("fields", {}) + for col_i, (_, getter) in enumerate(FIXED_COLS, 1): + widths[col_i] = max(widths[col_i], len(str(getter(doc)))) + for col_off, key in enumerate(field_keys): + col_i = len(FIXED_COLS) + col_off + 1 + widths[col_i] = max(widths[col_i], len(str(fields.get(key, "")))) + + for col_i, w in widths.items(): + ws.column_dimensions[get_column_letter(col_i)].width = min(w + 2, 55) + + +# ── Main ────────────────────────────────────────────────────────────────────── + +def main() -> None: + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + db = client[DB_NAME] + + wb = Workbook() + wb.remove(wb.active) + + for coll_name in COLLECTIONS: + docs = list(db[coll_name].find( + {}, + {"_id": 0, "sourceFile": 0, "history": 0}, + sort=[ + ("site.number", ASCENDING), + ("subject.label", ASCENDING), + ("form.folderSeq", ASCENDING), + ("form.recordPosition", ASCENDING), + ], + )) + ws = wb.create_sheet(title=_sheet_name(coll_name)) + last = COLS_LAST_CT if "ConcomitantTherapy" in coll_name else None + write_sheet(ws, docs, last_cols=last) + print(f" {coll_name}: {len(docs)} zaznamu -> list '{ws.title}'") + + client.close() + + OUTPUT_DIR.mkdir(exist_ok=True) + TRASH_DIR.mkdir(exist_ok=True) + + # přesun starých verzí do TRASH + pattern = f"* {STUDY_FULL} EDC DataListing *.xlsx" + for old in OUTPUT_DIR.glob(pattern): + dest = TRASH_DIR / old.name + shutil.move(str(old), str(dest)) + print(f" Přesunuto do TRASH: {old.name}") + + today = datetime.now().strftime("%Y-%m-%d") + filename = f"{today} {STUDY_FULL} EDC DataListing v{VERSION}.xlsx" + out_path = OUTPUT_DIR / filename + wb.save(str(out_path)) + print(f"\nUloženo: {out_path}") + + +if __name__ == "__main__": + main() diff --git a/Medidata/debug_shots/after-role.png b/Medidata/debug_shots/after-role.png new file mode 100644 index 0000000..b4fff29 Binary files /dev/null and b/Medidata/debug_shots/after-role.png differ diff --git a/Medidata/debug_shots/after-site-group.png b/Medidata/debug_shots/after-site-group.png new file mode 100644 index 0000000..eb73db3 Binary files /dev/null and b/Medidata/debug_shots/after-site-group.png differ diff --git a/Medidata/debug_shots/after-study.png b/Medidata/debug_shots/after-study.png new file mode 100644 index 0000000..effa038 Binary files /dev/null and b/Medidata/debug_shots/after-study.png differ diff --git a/Medidata/debug_shots/download-window.png b/Medidata/debug_shots/download-window.png new file mode 100644 index 0000000..bb3827f Binary files /dev/null and b/Medidata/debug_shots/download-window.png differ diff --git a/Medidata/debug_shots/report-opened.png b/Medidata/debug_shots/report-opened.png new file mode 100644 index 0000000..799ef1a Binary files /dev/null and b/Medidata/debug_shots/report-opened.png differ diff --git a/Medidata/debug_shots/reporter.png b/Medidata/debug_shots/reporter.png new file mode 100644 index 0000000..1911c42 Binary files /dev/null and b/Medidata/debug_shots/reporter.png differ diff --git a/Medidata/debug_shots/select-role.png b/Medidata/debug_shots/select-role.png new file mode 100644 index 0000000..740c69d Binary files /dev/null and b/Medidata/debug_shots/select-role.png differ diff --git a/Medidata/download_edc_datalistings.py b/Medidata/download_edc_datalistings.py new file mode 100644 index 0000000..1bf803e --- /dev/null +++ b/Medidata/download_edc_datalistings.py @@ -0,0 +1,501 @@ +""" +download_edc_datalistings.py +Verze: 2.0 +Datum: 2026-05-27 + +Univerzální stahování EDC Data Listing reportů (ReportID=92) z Medidata Rave. + +Parametry: + study – vyhledávací řetězec studie (např. "77242113UCO3001") + forms – seznam názvů formulářů ke stažení + country – kód země / site group (např. "CZE"), None = všechny + +Prohlížeč se otevře jednou, přihlásí se, a stáhne všechny formuláře v jedné session. + +Použití: + from download_edc import download_datalisting + + download_datalisting( + study="77242113UCO3001", + forms=["Date of Visit", "Concomitant Therapy"], + country="CZE", + ) +""" + +import os +import re +import sys +from datetime import datetime, timedelta +from pathlib import Path +from dotenv import load_dotenv +from playwright.sync_api import sync_playwright, TimeoutError as PWTimeout +import tkinter as tk +from tkinter import simpledialog + +load_dotenv(Path(__file__).parent / ".env") + +USERNAME = os.getenv("IMEDIDATA_USERNAME", "vladimir.buzalka") +PASSWORD = os.getenv("IMEDIDATA_PASSWORD", "") +DOWNLOAD_DIR = Path(__file__).parent / "downloads" +AUTH_FILE = Path(__file__).parent / "auth.json" +AUTH_MAX_AGE_DAYS = 7 + +LOGIN_URL = "https://login.imedidata.com/login" +SELECT_ROLE_URL = ( + "https://jnjja.mdsol.com/MedidataRave/SelectRole.aspx" + "?client_division_uuid=e5de55d5-a414-4bd1-9abe-18e96fd5475d" + "&study_group_uuid=b0793ca6-33ec-44e8-883b-6fc1a4b671c4" + "&studygroup_id=107981" +) + +REPORT_ID = 92 + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def auth_valid(): + if not AUTH_FILE.exists(): + return False + age = datetime.now() - datetime.fromtimestamp(AUTH_FILE.stat().st_mtime) + return age < timedelta(days=AUTH_MAX_AGE_DAYS) + + +def wait_load(page, extra_ms=1000): + try: + page.wait_for_load_state("load", timeout=20_000) + except PWTimeout: + pass + page.wait_for_timeout(extra_ms) + + +def dbg(page, label): + print(f"[{label}] URL: {page.url}") + try: + from pathlib import Path + shots = Path(__file__).parent / "debug_shots" + shots.mkdir(exist_ok=True) + path = shots / f"{label}.png" + page.screenshot(path=str(path), full_page=True) + print(f"[{label}] screenshot: {path}") + except Exception as e: + print(f"[{label}] screenshot failed: {e}") + + +def extract_study_label(study_search: str) -> str: + match = re.search(r'[A-Z]+\d+$', study_search) + return match.group(0) if match else study_search + + +# --------------------------------------------------------------------------- +# Login +# --------------------------------------------------------------------------- + +def _ask_otp_popup(): + root = tk.Tk() + root.withdraw() + root.lift() + root.attributes("-topmost", True) + otp = simpledialog.askstring("OKTA MFA", "Zadej OTP kód z OKTA (6 číslic):", parent=root) + root.destroy() + return (otp or "").strip() + + +def do_login(page, context): + print("Přihlašuji se do iMedidata...") + page.goto(LOGIN_URL) + wait_load(page, 500) + page.wait_for_selector('input[name="session[username]"]', timeout=10_000) + page.fill('input[name="session[username]"]', USERNAME) + page.fill('input[name="session[password]"]', PASSWORD) + page.click('button[type="submit"]') + wait_load(page, 2000) + dbg(page, "after-signin") + + if _okta_mfa_present(page): + print("\n*** OKTA MFA vyžadována! ***") + otp = _ask_otp_popup() + if not otp: + print("CHYBA: OTP nebylo zadáno.") + sys.exit(1) + _fill_otp(page, otp) + wait_load(page, 3000) + + try: + page.wait_for_url("**/home.imedidata.com**", timeout=30_000) + except PWTimeout: + dbg(page, "wait-home-timeout") + + if "home.imedidata.com" not in page.url: + print("CHYBA: Přihlášení se nezdařilo!") + sys.exit(1) + + context.storage_state(path=str(AUTH_FILE)) + print("Session uložena do auth.json") + + +def _okta_mfa_present(page): + if "okta" in page.url.lower(): + return True + for sel in ['input[name="answer"]', 'input[name*="otp"]', + 'input[name*="code"]', 'input[placeholder*="code" i]']: + if page.query_selector(sel): + return True + return False + + +def _fill_otp(page, otp): + for sel in ['input[name="answer"]', 'input[name*="otp"]', + 'input[name*="code"]', 'input[type="tel"]', 'input[placeholder*="code" i]']: + el = page.query_selector(sel) + if el: + el.fill(otp) + page.keyboard.press("Enter") + return + page.keyboard.type(otp) + page.keyboard.press("Enter") + + +# --------------------------------------------------------------------------- +# Navigace +# --------------------------------------------------------------------------- + +def go_to_select_role(page): + print("Navigace na SelectRole...") + try: + page.goto(SELECT_ROLE_URL) + except Exception: + pass + wait_load(page, 1500) + dbg(page, "select-role") + return "login" not in page.url.lower() and "okta" not in page.url.lower() + + +def select_role(page): + print("Vybírám roli Site Manager...") + try: + page.wait_for_selector("select", timeout=10_000) + except PWTimeout: + return + + for sel_el in page.query_selector_all("select"): + for opt in sel_el.query_selector_all("option"): + txt = (opt.inner_text() or "").strip() + if "site manager" in txt.lower(): + sel_el.select_option(label=txt) + print(f" Vybráno: '{txt}'") + break + + clicked = False + for btn_sel in ['input[value="Continue"]', 'input[type="submit"]', + 'button:has-text("Continue")', 'button[type="submit"]']: + try: + btn = page.query_selector(btn_sel) + except Exception: + continue + if btn: + try: + with page.expect_navigation(timeout=15_000): + btn.click() + clicked = True + break + except PWTimeout: + print(f" Click on {btn_sel} nezpůsobil navigaci, zkouším další...") + continue + + if not clicked: + print(" Fallback: submituji formulář přes JS...") + try: + with page.expect_navigation(timeout=15_000): + page.evaluate("document.forms[0] && document.forms[0].submit()") + except PWTimeout: + print(" JS submit fallback také neprošel.") + + wait_load(page, 1500) + dbg(page, "after-role") + + +def navigate_to_reporter(page): + print("Klikám na Reporter...") + page.wait_for_selector('a:has-text("Reporter")', timeout=15_000) + page.click('a:has-text("Reporter")') + wait_load(page, 1500) + dbg(page, "reporter") + + +def open_report(page): + print(f"Otevírám report ID={REPORT_ID} (Data Listing - Data Stream)...") + selector = f'a[href="PromptsPage.aspx?ReportID={REPORT_ID}"]' + page.wait_for_selector(selector, timeout=15_000) + page.click(selector) + wait_load(page, 2000) + dbg(page, "report-opened") + + +# --------------------------------------------------------------------------- +# Parametry reportu +# --------------------------------------------------------------------------- + +def set_study_param(page, study_search: str): + print(f" Parametr Study: hledám '{study_search}'...") + + page.click('#PromptsBox_st_ShowHideBtn') + page.wait_for_timeout(1500) + + page.wait_for_selector('input[id^="PromptsBox_st_FrontEndCBList_"]', timeout=10_000) + checkboxes = page.query_selector_all('input[id^="PromptsBox_st_FrontEndCBList_"]') + + found = False + for cb in checkboxes: + cb_id = cb.get_attribute("id") + label_text = page.evaluate( + """id => { + const el = document.getElementById(id); + if (!el) return ''; + const row = el.closest('tr') || el.closest('td') || el.parentElement; + return row ? row.innerText : ''; + }""", + cb_id + ) + print(f" [{cb_id}] label: {label_text.strip()[:80]}") + if study_search.upper() in label_text.upper(): + if not page.locator(f"#{cb_id}").is_checked(): + page.locator(f"#{cb_id}").check() + print(f" Nalezeno a zaškrtnuto: '{label_text.strip()}'") + found = True + break + + if not found: + print(f" VAROVÁNÍ: Studie '{study_search}' nenalezena! Zkouším index 0...") + cb0 = page.locator('#PromptsBox_st_FrontEndCBList_0') + if not cb0.is_checked(): + cb0.check() + + wait_load(page, 3000) + dbg(page, "after-study") + + +def set_site_group_param(page, country: str): + print(f" Parametr Site Group: {country}") + + page.click('#PromptsBox_sg_ShowHideBtn') + page.wait_for_timeout(1500) + + page.wait_for_selector('#PromptsBox_sg_List', timeout=10_000) + page.select_option('#PromptsBox_sg_List', label=country) + page.evaluate( + "document.querySelector('#PromptsBox_sg_List').dispatchEvent(new Event('change', {bubbles:true}))" + ) + wait_load(page, 2000) + + cb = page.locator('#PromptsBox_sg_CheckBox') + if not cb.is_checked(): + cb.check() + page.evaluate( + "document.querySelector('#PromptsBox_sg_CheckBox').dispatchEvent(new Event('change', {bubbles:true}))" + ) + wait_load(page, 2000) + + page.click('#PromptsBox_sg_ShowHideBtn') + wait_load(page, 3000) + dbg(page, "after-site-group") + + +def set_form_param(page, form_name: str): + print(f" Parametr Form: {form_name}") + + is_closed = page.locator('#PromptsBox_fm2_div').evaluate('el => el.style.display') == 'none' + if is_closed: + page.click('#PromptsBox_fm2_ShowHideBtn') + page.wait_for_timeout(2000) + + if page.locator('#PromptsBox_fm2_PageModeBtn').is_visible(): + page.click('#PromptsBox_fm2_PageModeBtn') + page.wait_for_timeout(1000) + page.click('#PromptsBox_fm2_PageModeBtn') + page.wait_for_timeout(2000) + + search = page.locator('#PromptsBox_fm2_SearchTxt') + search.wait_for(state='visible', timeout=10_000) + search.click() + search.fill(form_name) + page.wait_for_timeout(2000) + search.press('Enter') + page.wait_for_timeout(2000) + + cb_locator = page.locator('input[id^="PromptsBox_fm2_FrontEndCBList_"]').first + try: + cb_locator.wait_for(state='visible', timeout=8_000) + except PWTimeout: + print(f" VAROVÁNÍ: '{form_name}' nenalezen!") + return + + if not cb_locator.is_checked(): + cb_locator.click() + print(f" '{form_name}' zaškrtnuto") + page.wait_for_timeout(2000) + + +# --------------------------------------------------------------------------- +# Submit a download +# --------------------------------------------------------------------------- + +def submit_and_download(page, context, form_name: str, country: str | None, study_label: str): + print("Odesílám report...") + + with context.expect_page() as new_page_info: + page.locator('input[value="Submit Report"], button:has-text("Submit Report")').first.click() + + new_page = new_page_info.value + new_page.wait_for_url(lambda url: url != 'about:blank', timeout=30_000) + + print(" Čekám na vygenerování reportu (max 5 min)...") + new_page.wait_for_selector( + 'input[value="Download File"], button:has-text("Download File")', + timeout=300_000 + ) + new_page.wait_for_timeout(500) + dbg(new_page, "download-window") + + target_frame = new_page.main_frame + for frame in new_page.frames: + if frame.query_selector('select') or frame.query_selector('input[value="Download File"]'): + target_frame = frame + break + + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + val = opt.get_attribute('value') or '' + if 'vnd.ms-excel' in val: + sel.select_option(value=val) + print(" File type: .csv (application/vnd.ms-excel)") + break + + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + if 'attachment' in (opt.get_attribute('value') or '').lower(): + sel.select_option(value='attachment') + break + + timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M") + country_slug = country if country else "ALL" + form_slug = form_name.replace(" ", "").replace("/", "-").replace("(", "").replace(")", "") + filename = f"{timestamp}_EDC_{study_label}_{country_slug}_{form_slug}_DataListing.csv" + output_path = DOWNLOAD_DIR / filename + + print("Stahuji CSV...") + with new_page.expect_download(timeout=60_000) as dl_info: + btn = target_frame.query_selector('input[value="Download File"], button:has-text("Download File")') + if btn: + btn.click() + else: + new_page.locator('input[value="Download File"], button:has-text("Download File")').first.click() + + dl_info.value.save_as(str(output_path)) + print(f" Uloženo: {output_path}") + + try: + new_page.close() + except Exception: + pass + + return output_path + + +# --------------------------------------------------------------------------- +# Hlavní funkce +# --------------------------------------------------------------------------- + +def download_datalisting(study: str, forms: list[str], country: str | None = None): + """ + Stáhne EDC Data Listing reporty pro zadanou studii. + + Args: + study: Vyhledávací řetězec studie, např. "77242113UCO3001" + forms: Seznam názvů formulářů ke stažení + country: Kód site group, např. "CZE". None = všechny země. + """ + if not PASSWORD: + print("Chyba: nastav IMEDIDATA_PASSWORD v souboru .env") + sys.exit(1) + + if not forms: + print("Žádné formuláře ke stažení.") + return [] + + DOWNLOAD_DIR.mkdir(exist_ok=True) + study_label = extract_study_label(study) + results = [] + + with sync_playwright() as p: + browser = p.chromium.launch( + headless=False, + slow_mo=200, + args=["--start-maximized"], + ) + ctx_kwargs = {"accept_downloads": True, "no_viewport": True} + + use_saved = auth_valid() + if use_saved: + print("Načítám uloženou session (auth.json)...") + ctx_kwargs["storage_state"] = str(AUTH_FILE) + + context = browser.new_context(**ctx_kwargs) + page = context.new_page() + + logged_in = go_to_select_role(page) + + if not logged_in: + if use_saved: + print("Session expirovala, přihlašuji znovu...") + AUTH_FILE.unlink(missing_ok=True) + do_login(page, context) + go_to_select_role(page) + + select_role(page) + navigate_to_reporter(page) + open_report(page) + + prompts_url = page.url + + print("\nNastavuji parametry reportu...") + set_study_param(page, study) + + if country: + set_site_group_param(page, country) + else: + print(" Parametr Site Group: přeskočen (všechny země)") + + for i, form_name in enumerate(forms): + print(f"\n=== [{i+1}/{len(forms)}] Stahuji formulář: {form_name} ===") + + if i > 0: + print("Navigace zpět na report...") + page.goto(prompts_url) + wait_load(page, 2000) + set_study_param(page, study) + if country: + set_site_group_param(page, country) + + set_form_param(page, form_name) + output = submit_and_download(page, context, form_name, country, study_label) + results.append(output) + + browser.close() + print(f"\nHotovo! Staženo {len(results)} formulářů. Prohlížeč zavřen.") + + return results + + +# --------------------------------------------------------------------------- +# CLI +# --------------------------------------------------------------------------- + +if __name__ == "__main__": + country_arg = sys.argv[1] if len(sys.argv) > 1 else None + download_datalisting( + study="77242113UCO3001", + forms=["Trial Disposition (Completion / Discontinuation)"], + country=country_arg, + ) diff --git a/Medidata/download_query_details.py b/Medidata/download_query_details.py new file mode 100644 index 0000000..32295f7 --- /dev/null +++ b/Medidata/download_query_details.py @@ -0,0 +1,483 @@ +import os +import sys +from datetime import datetime, timedelta +from pathlib import Path +from dotenv import load_dotenv +from playwright.sync_api import sync_playwright, TimeoutError as PWTimeout +import tkinter as tk +from tkinter import simpledialog + +load_dotenv(Path(__file__).parent / ".env") + +USERNAME = os.getenv("IMEDIDATA_USERNAME", "vladimir.buzalka") +PASSWORD = os.getenv("IMEDIDATA_PASSWORD", "") +DOWNLOAD_DIR = Path(__file__).parent / "downloads" +AUTH_FILE = Path(__file__).parent / "auth.json" +AUTH_MAX_AGE_DAYS = 7 + +LOGIN_URL = "https://login.imedidata.com/login" +SELECT_ROLE_URL = ( + "https://jnjja.mdsol.com/MedidataRave/SelectRole.aspx" + "?client_division_uuid=e5de55d5-a414-4bd1-9abe-18e96fd5475d" + "&study_group_uuid=b0793ca6-33ec-44e8-883b-6fc1a4b671c4" + "&studygroup_id=107981" +) + +STUDY_NAME = "42847922MDD3003" +SITE_GROUP = "CZE" +REPORT_ID = 164 # _EDC Std Rpt - Query Details (Data Stream) + +# Query Status: libovolná kombinace z ["Open", "Answered", "Closed", "Canceled"] +QUERY_STATUSES = [] # prázdné = Default: All (nefiltrovat) + +# Milestone: vždy dostupný "Final", ostatní závisí na studii +MILESTONES = ["Final"] + +# Datum ve formátu DD-Mon-YYYY (např. "01-Jan-2024"), prázdný řetězec = bez filtru +START_DATE = "" +END_DATE = "" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def auth_valid(): + if not AUTH_FILE.exists(): + return False + age = datetime.now() - datetime.fromtimestamp(AUTH_FILE.stat().st_mtime) + return age < timedelta(days=AUTH_MAX_AGE_DAYS) + + +def wait_load(page, extra_ms=1000): + try: + page.wait_for_load_state("load", timeout=20_000) + except PWTimeout: + pass + page.wait_for_timeout(extra_ms) + + +def dbg(page, label): + print(f"[{label}] URL: {page.url}") + + +# --------------------------------------------------------------------------- +# Login +# --------------------------------------------------------------------------- + +def _ask_otp_popup(): + root = tk.Tk() + root.withdraw() + root.lift() + root.attributes("-topmost", True) + otp = simpledialog.askstring( + "OKTA MFA", + "Zadej OTP kód z OKTA (6 číslic):", + parent=root, + ) + root.destroy() + return (otp or "").strip() + + +def do_login(page, context): + print("Přihlašuji se do iMedidata...") + page.goto(LOGIN_URL) + wait_load(page, 500) + dbg(page, "login-page") + + page.wait_for_selector('input[name="session[username]"]', timeout=10_000) + page.fill('input[name="session[username]"]', USERNAME) + page.fill('input[name="session[password]"]', PASSWORD) + page.click('button[type="submit"]') + + wait_load(page, 2000) + dbg(page, "after-signin") + + if _okta_mfa_present(page): + print("\n*** OKTA MFA vyžadována! ***") + otp = _ask_otp_popup() + if not otp: + print("CHYBA: OTP nebylo zadáno.") + sys.exit(1) + _fill_otp(page, otp) + wait_load(page, 3000) + dbg(page, "after-otp") + + try: + page.wait_for_url("**/home.imedidata.com**", timeout=30_000) + except PWTimeout: + dbg(page, "wait-home-timeout") + + dbg(page, "final-login") + + if "home.imedidata.com" not in page.url: + print("CHYBA: Přihlášení se nezdařilo!") + input("Zmáčkni Enter pro ukončení...") + sys.exit(1) + + context.storage_state(path=str(AUTH_FILE)) + print("Session uložena do auth.json") + + +def _okta_mfa_present(page): + if "okta" in page.url.lower(): + return True + for sel in [ + 'input[name="answer"]', + 'input[name*="otp"]', + 'input[name*="code"]', + 'input[placeholder*="code" i]', + ]: + try: + if page.query_selector(sel): + return True + except Exception: + # Page navigated during selector, skip + pass + return False + + +def _fill_otp(page, otp): + for sel in [ + 'input[name="answer"]', + 'input[name*="otp"]', + 'input[name*="code"]', + 'input[type="tel"]', + 'input[placeholder*="code" i]', + ]: + try: + el = page.query_selector(sel) + if el: + el.fill(otp) + page.keyboard.press("Enter") + return + except Exception: + # Page navigated, continue to next selector + pass + try: + page.keyboard.type(otp) + page.keyboard.press("Enter") + except Exception: + pass + + +# --------------------------------------------------------------------------- +# Navigace +# --------------------------------------------------------------------------- + +def go_to_select_role(page): + print("Navigace na SelectRole...") + try: + page.goto(SELECT_ROLE_URL) + except Exception: + pass + wait_load(page, 1500) + dbg(page, "select-role") + return "login" not in page.url.lower() and "okta" not in page.url.lower() + + +def select_role(page): + print("Vybírám roli Site Manager...") + try: + page.wait_for_selector("select", timeout=10_000) + except PWTimeout: + return + + selects = page.query_selector_all("select") + found = False + for sel_el in selects: + opts = sel_el.query_selector_all("option") + for opt in opts: + txt = (opt.inner_text() or "").strip() + if "site manager" in txt.lower(): + sel_el.select_option(label=txt) + found = True + print(f" Vybráno: '{txt}'") + break + if found: + break + + if not found: + try: + page.get_by_text("Site Manager", exact=False).first.click() + except Exception as e: + print(f" {e}") + + for btn_sel in [ + 'input[value="Continue"]', + 'input[type="submit"]', + 'button:has-text("Continue")', + 'button[type="submit"]', + ]: + try: + btn = page.query_selector(btn_sel) + if btn: + btn.click() + break + except Exception: + continue + + wait_load(page, 2000) + dbg(page, "after-role") + + +def navigate_to_reporter(page): + print("Klikám na Reporter...") + try: + page.wait_for_selector('a:has-text("Reporter")', timeout=15_000) + page.click('a:has-text("Reporter")') + wait_load(page, 1500) + dbg(page, "reporter") + except PWTimeout: + dbg(page, "reporter-not-found") + raise + + +def open_report(page): + print(f"Klikám na report ID={REPORT_ID} (Query Details)...") + selector = f'a[href="PromptsPage.aspx?ReportID={REPORT_ID}"]' + try: + page.wait_for_selector(selector, timeout=15_000) + page.click(selector) + wait_load(page, 2000) + dbg(page, "report-opened") + except PWTimeout: + dbg(page, "report-not-found") + raise + + +# --------------------------------------------------------------------------- +# Parametry reportu +# --------------------------------------------------------------------------- + +def set_study_param(page): + print(f" Parametr Study: {STUDY_NAME}") + page.click('#PromptsBox_st_ShowHideBtn') + page.wait_for_timeout(1500) + page.wait_for_selector('#PromptsBox_st_FrontEndCBList_0', timeout=10_000) + cb = page.locator('#PromptsBox_st_FrontEndCBList_0') + if not cb.is_checked(): + cb.check() + wait_load(page, 3000) + dbg(page, "after-study") + + +def set_site_group_param(page): + print(f" Parametr Site Group: {SITE_GROUP}") + page.click('#PromptsBox_sg_ShowHideBtn') + page.wait_for_timeout(1500) + page.wait_for_selector('#PromptsBox_sg_List', timeout=10_000) + page.select_option('#PromptsBox_sg_List', label=SITE_GROUP) + page.evaluate("document.querySelector('#PromptsBox_sg_List').dispatchEvent(new Event('change', {bubbles:true}))") + wait_load(page, 2000) + + print(" Include Sub Site Groups: zapnuto") + cb = page.locator('#PromptsBox_sg_CheckBox') + if not cb.is_checked(): + cb.check() + page.evaluate("document.querySelector('#PromptsBox_sg_CheckBox').dispatchEvent(new Event('change', {bubbles:true}))") + wait_load(page, 2000) + + page.click('#PromptsBox_sg_ShowHideBtn') + wait_load(page, 3000) + dbg(page, "after-site-group") + + +def set_query_status_param(page): + if not QUERY_STATUSES: + print(" Parametr Query Status: All (přeskočeno)") + return + + print(f" Parametr Query Status: {', '.join(QUERY_STATUSES)}") + page.click('#PromptsBox_qu_ShowHideBtn') + page.wait_for_timeout(1500) + + # Počkáme na načtení checkboxů + page.wait_for_selector('input[id^="PromptsBox_qu_FrontEndCBList_"]', timeout=10_000) + + # Zaškrtneme požadované statusy podle labelu + label_map = {"Open": 0, "Answered": 1, "Closed": 2, "Canceled": 3} + for status in QUERY_STATUSES: + idx = label_map.get(status) + if idx is None: + print(f" VAROVÁNÍ: neznámý status '{status}'") + continue + cb = page.locator(f'#PromptsBox_qu_FrontEndCBList_{idx}') + if not cb.is_checked(): + cb.check() + print(f" '{status}' zaškrtnuto") + + wait_load(page, 1000) + + +def set_milestone_param(page): + print(f" Parametr Milestone: {', '.join(MILESTONES)}") + + # Otevřít panel pokud je zavřený + is_closed = page.locator('#PromptsBox_ms_div').evaluate('el => el.style.display') == 'none' + if is_closed: + page.click('#PromptsBox_ms_ShowHideBtn') + page.wait_for_timeout(2000) + + # Po předchozím výběru: tužka → oko → načtení seznamu + if page.locator('#PromptsBox_ms_PageModeBtn').is_visible(): + page.click('#PromptsBox_ms_PageModeBtn') # tužka → oko + page.wait_for_timeout(1000) + page.click('#PromptsBox_ms_PageModeBtn') # oko → načte milestony + page.wait_for_timeout(2000) + + for milestone in MILESTONES: + search = page.locator('#PromptsBox_ms_SearchTxt') + search.wait_for(state='visible', timeout=10_000) + search.click() + search.fill(milestone) + search.press('Enter') + + cb = page.locator('input[id^="PromptsBox_ms_FrontEndCBList_"]').first + try: + cb.wait_for(state='visible', timeout=8_000) + except PWTimeout: + print(f" VAROVÁNÍ: '{milestone}' nenalezen!") + continue + + if not cb.is_checked(): + cb.click() + print(f" '{milestone}' zaškrtnuto") + wait_load(page, 500) + + +def set_date_param(page, panel_id, date_value, label): + if not date_value: + return + print(f" Parametr {label}: {date_value}") + page.click(f'#{panel_id}_ShowHideBtn') + page.wait_for_timeout(1000) + date_input = page.locator(f'#{panel_id}_DatePickerTxt') + date_input.wait_for(state='visible', timeout=10_000) + date_input.click() + date_input.fill(date_value) + date_input.press('Tab') + page.wait_for_timeout(500) + + +# --------------------------------------------------------------------------- +# Submit a download +# --------------------------------------------------------------------------- + +def submit_and_download(page, context): + print("Odesílám report (čekám na nové okno)...") + + with context.expect_page() as new_page_info: + page.locator('input[value="Submit Report"], button:has-text("Submit Report")').first.click() + + new_page = new_page_info.value + new_page.wait_for_url(lambda url: url != 'about:blank', timeout=30_000) + print(" Čekám na vygenerování reportu...") + new_page.wait_for_selector( + 'input[value="Download File"], button:has-text("Download File")', + timeout=300_000 + ) + new_page.wait_for_timeout(500) + dbg(new_page, "download-window") + + print(" Nastavuji parametry stahování...") + + target_frame = new_page.main_frame + for frame in new_page.frames: + if frame.query_selector('select') or frame.query_selector('input[value="Download File"]'): + target_frame = frame + print(f" Frame nalezen: {frame.url}") + break + + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + val = opt.get_attribute('value') or '' + txt = opt.inner_text() or '' + if 'vnd.ms-excel' in val or 'vnd.ms-excel' in txt: + sel.select_option(value=val) + print(" File type: .csv (application/vnd.ms-excel)") + break + + for sel in target_frame.query_selector_all('select'): + for opt in sel.query_selector_all('option'): + if 'attachment' in (opt.get_attribute('value') or '').lower(): + sel.select_option(value='attachment') + break + + timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M") + filename = f"{timestamp}_EDC_MDD3003_QueryDetails.csv" + output_path = DOWNLOAD_DIR / filename + + print("Stahuji CSV...") + with new_page.expect_download(timeout=60_000) as dl_info: + btn = target_frame.query_selector('input[value="Download File"], button:has-text("Download File")') + if btn: + btn.click() + else: + new_page.locator('input[value="Download File"], button:has-text("Download File")').first.click() + + download = dl_info.value + download.save_as(str(output_path)) + print(f"\nHotovo! Soubor uložen: {output_path}") + + try: + new_page.close() + print("Stahovací okno zavřeno.") + except Exception: + pass + + return output_path + + +# --------------------------------------------------------------------------- +# Hlavní flow +# --------------------------------------------------------------------------- + +def run(): + if not PASSWORD: + print("Chyba: nastav IMEDIDATA_PASSWORD v souboru .env") + sys.exit(1) + + DOWNLOAD_DIR.mkdir(exist_ok=True) + + with sync_playwright() as p: + browser = p.chromium.launch(headless=False, slow_mo=200) + ctx_kwargs = {"accept_downloads": True} + + use_saved = auth_valid() + if use_saved: + print("Načítám uloženou session (auth.json)...") + ctx_kwargs["storage_state"] = str(AUTH_FILE) + + context = browser.new_context(**ctx_kwargs) + page = context.new_page() + + logged_in = go_to_select_role(page) + + if not logged_in: + if use_saved: + print("Session expirovala, mažu auth.json a přihlašuji znovu...") + AUTH_FILE.unlink(missing_ok=True) + do_login(page, context) + go_to_select_role(page) + + select_role(page) + navigate_to_reporter(page) + open_report(page) + + print("Nastavuji parametry reportu...") + set_study_param(page) + set_site_group_param(page) + set_query_status_param(page) + set_milestone_param(page) + set_date_param(page, 'PromptsBox_sd', START_DATE, "Start Date") + set_date_param(page, 'PromptsBox_ed', END_DATE, "End Date") + + submit_and_download(page, context) + + browser.close() + print("Prohlížeč zavřen.") + + +if __name__ == "__main__": + run() diff --git a/Medidata/edc_import.log b/Medidata/edc_import.log new file mode 100644 index 0000000..f4fe7f3 --- /dev/null +++ b/Medidata/edc_import.log @@ -0,0 +1,29 @@ +2026-05-20 17:56:21,647 ERROR Nelze se připojit k MongoDB (mongodb://localhost:27017): localhost:27017: [WinError 10061] No connection could be made because the target machine actively refused it (configured timeouts: socketTimeoutMS: 20000.0ms, connectTimeoutMS: 20000.0ms), Timeout: 5.0s, Topology Description: ]> +2026-05-20 17:56:45,268 INFO Importuji: downloads/2026-05-20_15-09_EDC_MDD3003_DateofVisit_DataListing.csv → edc.MDD3003_DateofVisit +2026-05-20 17:56:48,052 INFO nové: 381 aktualizované: 0 chyby: 0 +2026-05-20 17:56:48,052 INFO ============================================================ +2026-05-20 17:56:48,052 INFO Celkem — nové: 381 aktualizované: 0 chyby: 0 +2026-05-20 18:12:48,691 INFO Importuji: downloads/2026-05-20_15-21_EDC_MDD3003_QueryDetails.csv → edc.2026-05-20_15-21_EDC_MDD3003_QueryDetails +2026-05-20 18:12:48,739 INFO nové: 4 aktualizované: 0 chyby: 0 +2026-05-20 18:12:48,801 INFO Importuji: downloads/2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv → edc.2026-05-20_15-23_EDC_MDD3003_QueryDetails +2026-05-20 18:13:03,331 INFO nové: 2091 aktualizované: 0 chyby: 0 +2026-05-20 18:13:03,332 INFO ============================================================ +2026-05-20 18:13:03,332 INFO Celkem — nové: 2095 aktualizované: 0 chyby: 0 +2026-05-20 18:13:31,267 INFO Importuji: downloads/2026-05-20_15-21_EDC_MDD3003_QueryDetails.csv → edc.MDD3003_QueryDetails +2026-05-20 18:13:31,306 INFO nové: 4 aktualizované: 0 chyby: 0 +2026-05-20 18:13:31,354 INFO Importuji: downloads/2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv → edc.MDD3003_QueryDetails +2026-05-20 18:13:45,497 INFO nové: 2087 aktualizované: 4 chyby: 0 +2026-05-20 18:13:45,497 INFO ============================================================ +2026-05-20 18:13:45,497 INFO Celkem — nové: 2091 aktualizované: 4 chyby: 0 +2026-05-20 18:14:06,652 INFO Importuji: downloads/2026-05-20_15-21_EDC_MDD3003_QueryDetails.csv → edc.queries +2026-05-20 18:14:06,683 INFO nové: 4 aktualizované: 0 chyby: 0 +2026-05-20 18:14:06,727 INFO Importuji: downloads/2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv → edc.queries +2026-05-20 18:14:22,340 INFO nové: 2087 aktualizované: 4 chyby: 0 +2026-05-20 18:14:22,340 INFO ============================================================ +2026-05-20 18:14:22,340 INFO Celkem — nové: 2091 aktualizované: 4 chyby: 0 +2026-05-20 21:56:49,619 INFO Importuji: downloads/2026-05-20_15-21_EDC_MDD3003_QueryDetails.csv → edc.queries + queries_snapshots [2026-05-20] +2026-05-20 21:56:49,670 INFO nové: 0 aktualizované: 4 chyby: 0 +2026-05-20 21:56:49,711 INFO Importuji: downloads/2026-05-20_15-23_EDC_MDD3003_QueryDetails.csv → edc.queries + queries_snapshots [2026-05-20] +2026-05-20 21:57:07,554 INFO nové: 0 aktualizované: 2091 chyby: 0 +2026-05-20 21:57:07,554 INFO ============================================================ +2026-05-20 21:57:07,554 INFO Celkem — nové: 0 aktualizované: 2095 chyby: 0 diff --git a/Medidata/forms_MDD3003_CZE.json b/Medidata/forms_MDD3003_CZE.json new file mode 100644 index 0000000..d66395d --- /dev/null +++ b/Medidata/forms_MDD3003_CZE.json @@ -0,0 +1,21 @@ +{ + "_meta": { + "study": "42847922MDD3003", + "site_group": "CZE", + "report": "_EDC Std Rpt - Data Listing (Data Stream), ReportID=92", + "total_forms": 97, + "pages": 5, + "note": "Kompletni seznam nacist z PromptsPage po vyberu Study+SiteGroup, Form panel, 5 stranek po 20 (posledni 17)" + }, + "known_forms": [ + "Acknowledgement Reporting Form", + "Acknowledgement Upload Form", + "Adverse Event of Special Interest", + "Adverse Events/Serious Aes", + "Alcohol Test", + "Arizona Sexual Experiences Scale Summary", + "Arizona Sexual Experiences Scale-Female", + "Arizona Sexual Experiences Scale-Male", + "Date of Visit" + ] +} diff --git a/Medidata/import_to_mongo.py b/Medidata/import_to_mongo.py new file mode 100644 index 0000000..cc60751 --- /dev/null +++ b/Medidata/import_to_mongo.py @@ -0,0 +1,297 @@ +""" +import_to_mongo.py +Verze: 1.0 +Datum: 2026-05-27 + +Import EDC Data Listing CSV do MongoDB (databáze: edc). + +Kolekce: {STUDY}.{FormName} (např. UCO3001.ConcomitantTherapy) +Filtr: pouze řádky s SiteGroupName == "CZE" +Historie: při změně fields se stará verze uloží do pole history[] +Po importu přesune zpracované CSV do downloads/Zpracovano/ + +Použití: + python import_to_mongo.py # importuje všechny CSV z downloads/ + python import_to_mongo.py downloads/konkretni.csv # jeden soubor +""" + +import csv +import re +import shutil +import sys +from datetime import datetime, timezone +from pathlib import Path + +from pymongo import MongoClient, ASCENDING + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "edc" +DOWNLOADS_DIR = Path(__file__).parent / "downloads" +PROCESSED_DIR = DOWNLOADS_DIR / "Zpracovano" + +COUNTRY_FILTER = "CZE" + +# --------------------------------------------------------------------------- +# Mapování pevných CSV sloupců +# --------------------------------------------------------------------------- + +FIXED_FIELDS = { + "SiteGroupName": "site.group", + "SiteID": "site.id", + "SiteNumber": "site.number", + "Site": "site.name", + "SubjectID": "subject.id", + "Subject": "subject.label", + "CRFVersionID": "form.crfVersionId", + "InstanceID": "form.instanceId", + "InstanceName": "form.instanceName", + "FolderSeq": "form.folderSeq", + "Page": "form.page", + "RecordID": "form.recordId", + "RecordPosition": "form.recordPosition", + "LastModifiedDate": "lastModified", +} + +INT_CAST = {"form.folderSeq", "form.recordPosition"} + +META_FIELDS = { + "StudyName", "SiteGroupParameter", "SiteNumberParameter", "SiteParameter", + "SubjectParameter", "FormParameter", "FieldParameter", "FilterField", + "FilterValue", "StartDateParameter", "EndDateParameter", "RunUser", + "VersionNumber", "PrintDateTime", "TimeZone", "LastModifiedDateSortable", + "StartDateSortable", "EndDateSortable", "ErrorMsg", +} + +DATE_FORMATS = [ + "%d %b %Y %H:%M:%S", + "%d %b %Y %H:%M:%S:%f", + "%d %b %Y", + "%d %B %Y", + "%Y%m%d %H:%M:%S.%f", + "%Y-%m-%d %H:%M:%S", + "%m/%d/%Y %I:%M:%S %p", +] + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def parse_date(value: str) -> str | None: + value = value.strip() + for fmt in DATE_FORMATS: + try: + dt = datetime.strptime(value, fmt) + return dt.replace(tzinfo=timezone.utc).isoformat() + except ValueError: + continue + return None + + +def set_nested(doc: dict, path: str, value) -> None: + parts = path.split(".") + for part in parts[:-1]: + doc = doc.setdefault(part, {}) + doc[parts[-1]] = value + + +def extract_snapshot_date(filename: str) -> str: + match = re.match(r"(\d{4}-\d{2}-\d{2})", Path(filename).name) + return match.group(1) if match else datetime.now().strftime("%Y-%m-%d") + + +def parse_collection_name(filename: str) -> str | None: + """ + Z názvu souboru odvodí kolekci ve formátu STUDY.FormName. + Vrátí None pro QueryDetails (mají vlastní flow). + """ + stem = Path(filename).stem + if "QueryDetails" in stem: + return None + match = re.search( + r"EDC_(\w+?)_(?:ALL_|CZE_|[A-Z]{2,3}_)?(.+?)_DataListing", + stem, re.IGNORECASE, + ) + if match: + study, form = match.group(1), match.group(2) + return f"{study}.{form}" + return None + + +# --------------------------------------------------------------------------- +# CSV → dokument +# --------------------------------------------------------------------------- + +def map_row(row: dict) -> dict: + doc: dict = {} + fields: dict = {} + field_keys = set(row.keys()) + + for col, value in row.items(): + value = value.strip() if value else "" + + if col in FIXED_FIELDS: + path = FIXED_FIELDS[col] + if path in INT_CAST: + try: + value = int(value) + except (ValueError, TypeError): + pass + elif path == "lastModified": + parsed = parse_date(value) + value = parsed if parsed else value + set_nested(doc, path, value) + continue + + if col in META_FIELDS: + continue + + if re.match(r"^Field\d+(Value|Label)$", col): + continue + + n = 1 + while True: + val_key = f"Field{n}Value" + lbl_key = f"Field{n}Label" + if val_key not in field_keys and lbl_key not in field_keys: + break + label = (row.get(lbl_key) or "").strip() + value = (row.get(val_key) or "").strip() + if label and value: + parsed = parse_date(value) + fields[label] = parsed if parsed else value + n += 1 + + doc["fields"] = fields + return doc + + +# --------------------------------------------------------------------------- +# Import jednoho souboru +# --------------------------------------------------------------------------- + +def import_file(csv_path: str, db) -> dict: + filename = Path(csv_path).name + col_name = parse_collection_name(filename) + if col_name is None: + print(f" Preskakuji (QueryDetails): {filename}") + return {"skipped": True} + + snapshot_date = extract_snapshot_date(filename) + collection = db[col_name] + + inserted = changed = unchanged = filtered_out = 0 + + with open(csv_path, encoding="utf-8", newline="") as f: + reader = csv.DictReader(f, delimiter=",", quotechar='"') + + for row in reader: + site_group = (row.get("SiteGroupName") or "").strip() + if site_group != COUNTRY_FILTER: + filtered_out += 1 + continue + + doc = map_row(row) + record_id = doc.get("form", {}).get("recordId") + if not record_id: + continue + + doc["sourceFile"] = filename + + existing = collection.find_one({"form.recordId": record_id}) + + if existing is None: + doc["firstSeen"] = snapshot_date + doc["lastSeen"] = snapshot_date + doc["history"] = [] + collection.insert_one(doc) + inserted += 1 + + elif existing.get("fields") != doc["fields"]: + old_entry = { + "date": existing.get("lastSeen", snapshot_date), + "fields": existing["fields"], + } + update_doc = {k: v for k, v in doc.items()} + update_doc["lastSeen"] = snapshot_date + collection.update_one( + {"_id": existing["_id"]}, + { + "$push": {"history": old_entry}, + "$set": update_doc, + }, + ) + changed += 1 + + else: + collection.update_one( + {"_id": existing["_id"]}, + {"$set": {"lastSeen": snapshot_date, "sourceFile": filename}}, + ) + unchanged += 1 + + collection.create_index([("form.recordId", ASCENDING)], unique=True) + collection.create_index([("subject.label", ASCENDING)]) + collection.create_index([("site.number", ASCENDING)]) + + stats = { + "collection": col_name, + "snapshot": snapshot_date, + "inserted": inserted, + "changed": changed, + "unchanged": unchanged, + "filtered_out": filtered_out, + } + print(f" {col_name} [{snapshot_date}]: +{inserted} new, ~{changed} changed, ={unchanged} same, -{filtered_out} non-CZE") + return stats + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + paths: list[Path] = [] + + if len(sys.argv) > 1: + for arg in sys.argv[1:]: + p = Path(arg) + if p.is_file(): + paths.append(p) + else: + print(f"Soubor nenalezen: {arg}") + else: + paths = sorted(DOWNLOADS_DIR.glob("*_DataListing.csv")) + + if not paths: + print("Zadne CSV soubory k importu.") + return + + print(f"Nalezeno {len(paths)} souboru.\n") + + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + db = client[DB_NAME] + + PROCESSED_DIR.mkdir(exist_ok=True) + + total = {"inserted": 0, "changed": 0, "unchanged": 0} + + for csv_path in paths: + print(f"Import: {csv_path.name}") + stats = import_file(str(csv_path), db) + if not stats.get("skipped"): + for k in total: + total[k] += stats.get(k, 0) + + dest = PROCESSED_DIR / csv_path.name + shutil.move(str(csv_path), str(dest)) + print(f" -> presunut do Zpracovano/") + + client.close() + + print(f"\nCelkem: +{total['inserted']} new, ~{total['changed']} changed, ={total['unchanged']} same") + + +if __name__ == "__main__": + main() diff --git a/Medidata/mdd3003_forms.json b/Medidata/mdd3003_forms.json new file mode 100644 index 0000000..3c5be93 --- /dev/null +++ b/Medidata/mdd3003_forms.json @@ -0,0 +1,103 @@ +{ + "study": "42847922MDD3003", + "report_id": 92, + "forms": [ + "Acknowledgement Reporting Form", + "Acknowledgement Upload Form", + "Adverse Event of Special Interest", + "Adverse Events/Serious Aes", + "Alcohol Test", + "Arizona Sexual Experiences Scale Summary", + "Arizona Sexual Experiences Scale-Female", + "Arizona Sexual Experiences Scale-Male", + "Change in Background Antidepressant", + "Clinical Global Impression - S (Depression)", + "Clinical Outcome Assessments Completion Status", + "Columbia-Suicide Severity Rating Scale - Baseline/Screening Version", + "Columbia-Suicide Severity Rating Scale - Since Last Visit", + "Comments", + "Concomitant Therapy / Medication", + "Date of Visit", + "Death Information", + "Demographics", + "Derivation (operational form)", + "Drug Expiry Information", + "Drug Testing", + "DSL Index Page (Must have for DSL functionality; not visible to the sites) (operational form)", + "DUMMY (operational form)", + "Educational Level", + "Enrollment", + "EQ-5D-5L", + "Evaluation of Response - Induction Phase", + "Evaluation of Response - Stabilization Phase", + "General Medical History", + "Inclusion/Exclusion Criteria", + "Insomnia Severity Index", + "Insomnia Severity Index (Clinician Version)", + "Integrated Medication Kit Accountability Information Double Blind Maintenance", + "Integrated Medication Kit Accountability Information Double Blind Part 1", + "Integrated Medication Kit Accountability Information Open Label Part 2", + "Interim Investigator Signature", + "IRT Stratification", + "Local Chemistry (Unscheduled)", + "Local Hematology (Unscheduled)", + "Local Labs for Background Antidepressant Compliance", + "Menstrual Cycle Tracking", + "Menstrual Cycle Tracking Log", + "MGH ATRQ, Geriatric, Section I and II", + "MGH ATRQ, Non-Geriatric, Section I and II", + "MGH-ATRQ - Summary", + "MGH-ATRQ - Therapy Questions", + "Mini-Mental State Examination", + "Neurologic Examination", + "Patient Global Impression of Change - Depression/Insomnia", + "Patient Global Impression of Severity - Insomnia", + "Patient Health Questionnaire - 9 Item", + "Perceived Treatment Group Assignment", + "Periodic Investigator's EDC Review Acknowledgement", + "Physical Examination", + "Physician Withdrawal Checklist (PWC)", + "Pregnancy Test", + "Preplanned Surgeries/Procedures", + "Procedures", + "PROMIS - Sleep Disturbance", + "Protocol Amendment Implementation (Operational Form)", + "Psychiatric History for Major Depressive Disorder", + "Psychotherapy", + "Psychotherapy v2.0", + "Randomization", + "Relapse - MAJOR DEPRESSIVE DISORDER", + "Relapse Criteria", + "Relapse Criteria Unscheduled", + "Relevant Additional Drug Therapies", + "Relevant information Selection", + "Relevant Local Laboratory", + "Relevant Local Laboratory Data", + "Relevant Medical History", + "Relevant Preplanned Surgeries/Procedures", + "Relevant Procedures", + "Relevant Study Medication", + "Relevant Tests", + "Safety Report Form", + "SCID-CT", + "SCID-CT Insomnia Disorder Supplemental", + "Sheehan Disability Scale", + "SIGH-D-17", + "Site Independent Qualification Assessment", + "Site/Invest Identification", + "Structured Interview Guide for the Montgomery-Asberg Depression Rating Scale", + "Study Drug Administration Double Blind Maintenance", + "Study Drug Administration Double Blind Part 1", + "Study Drug Administration Open Label Part 2 - Induction", + "Study Drug Administration Open Label Part 2 - Stabilization", + "Subject", + "Subject Site Switch", + "Treatment Disposition", + "Treatment Unblinding", + "Trial Disposition Completion/ Discontinuation", + "Unscheduled Assessments", + "Unsuccessful Contact Attempts", + "Vital Signs", + "Vital Signs (Unscheduled)" + ] +} diff --git a/Medidata/reports/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx b/Medidata/reports/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx new file mode 100644 index 0000000..3efbaf6 Binary files /dev/null and b/Medidata/reports/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx differ diff --git a/Medidata/reports/TRASH/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx b/Medidata/reports/TRASH/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx new file mode 100644 index 0000000..b584d67 Binary files /dev/null and b/Medidata/reports/TRASH/2026-06-01 77242113UCO3001 EDC DataListing v1.0.xlsx differ diff --git a/Medidata/reports_catalog.json b/Medidata/reports_catalog.json new file mode 100644 index 0000000..d93d6e5 --- /dev/null +++ b/Medidata/reports_catalog.json @@ -0,0 +1,58 @@ +[ + {"name": "_EDC Std Rpt - Changes/Queries after SDV", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=97"}, + {"name": "_EDC Std Rpt - Changes/Queries after SDV", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=98"}, + {"name": "_EDC Std Rpt - Clinical Safety Case Report", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=93"}, + {"name": "_EDC Std Rpt - CTMS Activities Listing", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=111"}, + {"name": "_EDC Std Rpt - Data Cleaning Progress and Finalization", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=102"}, + {"name": "_EDC Std Rpt - Data Cleaning Progress and Finalization", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=105"}, + {"name": "_EDC Std Rpt - Data Cleaning Progress Visit Detail", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=113"}, + {"name": "_EDC Std Rpt - Data Cleaning Progress Visit Detail", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=112"}, + {"name": "_EDC Std Rpt - Data Listing", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=92"}, + {"name": "_EDC Std Rpt - Data Listing", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=99"}, + {"name": "_EDC Std Rpt - eCRF Version Comparison", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=127"}, + {"name": "_EDC Std Rpt - eCRF Version Comparison", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=128"}, + {"name": "_EDC Std Rpt - Expected eCRF Fields Not Entered", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=130"}, + {"name": "_EDC Std Rpt - Expected eCRF Fields Not Entered", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=129"}, + {"name": "_EDC Std Rpt - GMS SAE Report", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=91"}, + {"name": "_EDC Std Rpt - ICF Log Listing", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=132"}, + {"name": "_EDC Std Rpt - ICF Log Listing", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=131"}, + {"name": "_EDC Std Rpt - Inactivated Datalist", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=133"}, + {"name": "_EDC Std Rpt - Inactivated Datalist", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=134"}, + {"name": "_EDC Std Rpt - Inactive DataPages", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=136"}, + {"name": "_EDC Std Rpt - Inactive DataPages", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=135"}, + {"name": "_EDC Std Rpt - J&J CAR-T SAE Report", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=137"}, + {"name": "_EDC Std Rpt - Local Lab Normal Ranges", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=138"}, + {"name": "_EDC Std Rpt - Medical Affairs SAE Report", "description": "For MA Pre-Configured Library", "type": "Global", "url": "PromptsPage.aspx?ReportID=139"}, + {"name": "_EDC Std Rpt - Missing Pages", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=141"}, + {"name": "_EDC Std Rpt - Missing Pages", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=140"}, + {"name": "_EDC Std Rpt - Missing Visits", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=149"}, + {"name": "_EDC Std Rpt - Missing Visits", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=148"}, + {"name": "_EDC Std Rpt - Monitor SDV Planning", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=151"}, + {"name": "_EDC Std Rpt - Monitor SDV Planning", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=150"}, + {"name": "_EDC Std Rpt - Non Conformant Data Listing", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=152"}, + {"name": "_EDC Std Rpt - Pages to Review / SDV / Freeze", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=154"}, + {"name": "_EDC Std Rpt - Pages to Review / SDV / Freeze", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=153"}, + {"name": "_EDC Std Rpt - Query Aging", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=156"}, + {"name": "_EDC Std Rpt - Query Aging", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=155"}, + {"name": "_EDC Std Rpt - Query Details", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=157"}, + {"name": "_EDC Std Rpt - Query Details", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=164"}, + {"name": "_EDC Std Rpt - Query Trend", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=168"}, + {"name": "_EDC Std Rpt - Query Trend", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=166"}, + {"name": "_EDC Std Rpt - Re-UAT Compare Report", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=195"}, + {"name": "_EDC Std Rpt - Safety Gateway Cover Sheet", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=171"}, + {"name": "_EDC Std Rpt - Safety Gateway e2b XML Case Report", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=172"}, + {"name": "_EDC Std Rpt - Safety Gateway Reconciliation", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=179"}, + {"name": "_EDC Std Rpt - Safety Gateway System Configuration", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=194"}, + {"name": "_EDC Std Rpt - SafetyGateway Mapping Configuration", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=180"}, + {"name": "_EDC Std Rpt - Self Evident Corrections", "description": "", "type": "Global", "url": "PromptsPage.aspx?ReportID=178"}, + {"name": "_EDC Std Rpt - Self Evident Corrections", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=177"}, + {"name": "_EDC Std Rpt - Signature History Report", "description": "", "type": "Global/Data Stream", "url": "PromptsPage.aspx?ReportID=176"}, + {"name": "_EDC Std Rpt - Site Payment", "description": "", "type": "Data Stream", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "_EDC Std Rpt - Special Characters", "description": "", "type": "Global/Data Stream", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "360 Data Cleaning Progress Dashboard", "description": "Track eCRF Data Cleaning Progress", "type": "Dashboard", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "360 Enrollment Tracking Dashboard", "description": "Track Subject Enrollment Performance", "type": "Dashboard", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "360 Query Management Dashboard", "description": "Manage Queries", "type": "Dashboard", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "Audit Trail", "description": "Audit Trail Report", "type": "Standard", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "Data Listing", "description": "Data Listing Report", "type": "Standard", "url": "PromptsPage.aspx?ReportID=null"}, + {"name": "Stream-Query Detail", "description": "Query Detail Report", "type": "Stream", "url": "PromptsPage.aspx?ReportID=null"} +] diff --git a/Medidata/run_download_edc_datalistings.py b/Medidata/run_download_edc_datalistings.py new file mode 100644 index 0000000..b65f725 --- /dev/null +++ b/Medidata/run_download_edc_datalistings.py @@ -0,0 +1,11 @@ +from download_edc_datalistings import download_datalisting + +download_datalisting( + study="77242113UCO3001", + forms=[ + "Trial Disposition (Completion / Discontinuation)", + "Date of Visit", + "Concomitant Therapy", + ], + country="CZE", +) diff --git a/Medidata/uco3001_forms.json b/Medidata/uco3001_forms.json new file mode 100644 index 0000000..662fb8c --- /dev/null +++ b/Medidata/uco3001_forms.json @@ -0,0 +1,77 @@ +{ + "study": "77242113UCO3001", + "report_id": 92, + "forms": [ + "Acknowledgement Reporting Form", + "Acknowledgement Upload Form", + "Additional Liver Event Assessment Forms", + "Advanced Therapy Treatment Failure Reason", + "Adverse Events/Serious AEs", + "Alcohol Consumption", + "Axial Spondyloarthropathy Diagnosis Information", + "Clinical Outcome Assessments Completion Status", + "Concomitant Therapy", + "Consents / Withdrawal of Consents for Optional Research", + "Corticosteroid, Immunomodulator And Oral Aminosalicylates History", + "Date of Visit", + "Death Information", + "Demographics", + "Derivation (operational form)", + "DSL Index Page (Must have for DSL functionality; not visible to the sites) (operational form)", + "DUMMY (operational form)", + "Endoscopy Information", + "Enrollment", + "Family History specific to Hepatic Event", + "Food/Liquid Fasting Compliance", + "General Medical History", + "GI Related Surgeries and Procedures", + "Group Selection", + "Hepatic Event - Other Risk Factors", + "History of GI Past Related Surgeries/Procedures", + "Inclusion/Exclusion Criteria", + "Integrated Medication Kit Accountability Information", + "Interim Investigator Signature", + "Intestinal Ultrasound", + "Limitation on Retention of Samples", + "Liver Biopsy", + "Liver Chemistry Abnormalities Assessment Form", + "Liver Event Case of AEs", + "Liver Event Chemistry Analytes", + "Liver Event Level 1 Analytes", + "Liver Event Level 2 Analytes", + "Liver Event Workup Completion Status", + "Liver Imaging Assessment", + "Liver-related Signs and Symptoms of Hypersensitivity", + "Liver-related Signs and Symptoms of Liver Injury", + "Medical Encounters", + "Medical History: Liver-related Diseases", + "Periodic Investigator's EDC Review Acknowledgement", + "Pharmacokinetics, Pharmacodynamic and Biomarker Sample Collection", + "Preplanned Surgeries/Procedures", + "Protocol Amendment Implementation (Operational Form)", + "Randomization", + "Relevant Additional Drug Therapies", + "Relevant Information Selection", + "Relevant Local Laboratory", + "Relevant Local Laboratory Data", + "Relevant Procedures", + "Relevant Study Medication", + "Relevant Tests", + "Safety Report Form", + "Screening for Tuberculosis", + "Site/Invest Identification", + "Study Drug Administration", + "Subject", + "Subject Site Switch", + "Substance Use Alcohol", + "Substance Use Tobacco/Nicotine", + "Treatment Disposition (End of treatment)", + "Treatment Unblinding", + "Trial Disposition (Completion / Discontinuation)", + "Tuberculosis Testing and Results", + "Ulcerative Colitis Disease History", + "Ulcerative Colitis Medication History", + "Unscheduled Assessments", + "Vital Signs" + ] +} diff --git a/Panorama/Downloads/Zpracovano/2026-05-26_13-22-25 42847922MDD3003 Panorama Deviations and Issues.xlsx b/Panorama/Downloads/Zpracovano/2026-05-26_13-22-25 42847922MDD3003 Panorama Deviations and Issues.xlsx new file mode 100644 index 0000000..6de5721 Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-26_13-22-25 42847922MDD3003 Panorama Deviations and Issues.xlsx differ diff --git a/Panorama/Downloads/Zpracovano/2026-05-26_13-58-01 77242113UCO3001 Panorama Deviations and Issues.xlsx b/Panorama/Downloads/Zpracovano/2026-05-26_13-58-01 77242113UCO3001 Panorama Deviations and Issues.xlsx new file mode 100644 index 0000000..0d86e5b Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-26_13-58-01 77242113UCO3001 Panorama Deviations and Issues.xlsx differ diff --git a/Panorama/Downloads/Zpracovano/2026-05-26_15-58-56 77242113UCO3001 Site Visit Details.xlsx b/Panorama/Downloads/Zpracovano/2026-05-26_15-58-56 77242113UCO3001 Site Visit Details.xlsx new file mode 100644 index 0000000..6695348 Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-26_15-58-56 77242113UCO3001 Site Visit Details.xlsx differ diff --git a/Panorama/Downloads/Zpracovano/2026-05-26_15-59-45 77242113UCO3001 FUL details.xlsx b/Panorama/Downloads/Zpracovano/2026-05-26_15-59-45 77242113UCO3001 FUL details.xlsx new file mode 100644 index 0000000..f713a22 Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-26_15-59-45 77242113UCO3001 FUL details.xlsx differ diff --git a/Panorama/Downloads/Zpracovano/2026-05-28_11-32-29 PANORAMA Site Contacts.xlsx b/Panorama/Downloads/Zpracovano/2026-05-28_11-32-29 PANORAMA Site Contacts.xlsx new file mode 100644 index 0000000..7ea7300 Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-28_11-32-29 PANORAMA Site Contacts.xlsx differ diff --git a/Panorama/Downloads/Zpracovano/2026-05-28_11-40-23 PANORAMA Site Contacts.xlsx b/Panorama/Downloads/Zpracovano/2026-05-28_11-40-23 PANORAMA Site Contacts.xlsx new file mode 100644 index 0000000..1fdb88b Binary files /dev/null and b/Panorama/Downloads/Zpracovano/2026-05-28_11-40-23 PANORAMA Site Contacts.xlsx differ diff --git a/Panorama/import_to_mongo.py b/Panorama/import_to_mongo.py new file mode 100644 index 0000000..76832f0 --- /dev/null +++ b/Panorama/import_to_mongo.py @@ -0,0 +1,354 @@ +""" +Import Panorama XLSX reportů do MongoDB (databáze: Panorama). + +Podporované typy: + - Issues & Deviations → kolekce IssuesAndDeviations (klíč: ID / fuzzy+hash) + - Site Visit Details → kolekce Visits (klíč: Site Visit ID (Technical)) + - FUL details → kolekce FUL (klíč: SVR Document Number) + - PANORAMA Site Contacts → kolekce contacts (klíč: Contact Identifier) + +Filtr: pouze řádky s Country Name == "Czechia" +Historie: při změně fields se stará verze uloží do pole history[] + +Použití: + python import_to_mongo.py # importuje všechny xlsx z Downloads/ + python import_to_mongo.py Downloads/konkretni.xlsx # jeden soubor +""" + +import hashlib +import re +import shutil +import sys +from datetime import datetime, date +from pathlib import Path + +import openpyxl +from pymongo import MongoClient, ASCENDING +from rapidfuzz import fuzz + +FUZZY_FIELDS = ("Description", "Comments", "Action Taken") +FUZZY_MIN_FIELDS = 2 # počet polí, která musí dosáhnout prahu +FUZZY_THRESHOLD = 90.0 # % shoda pro pole v 2-of-3 logice +FALLBACK_DESC_THRESHOLD = 95.0 # % shoda Description, když chybí druhé pole + +MONGO_URI = "mongodb://192.168.1.76:27017" +DB_NAME = "Panorama" +DOWNLOADS_DIR = Path(__file__).parent / "Downloads" +PROCESSED_DIR = DOWNLOADS_DIR / "Zpracovano" + +COUNTRY_FILTER = "Czechia" # None = všechny země +HEADER_ROW = 5 # 0-indexed řádek s hlavičkou +DATA_START_ROW = 6 # 0-indexed první datový řádek + +REPORT_TYPES = { + "IssuesAndDeviations": { + "pattern": re.compile(r"Deviations and Issues\.xlsx$", re.IGNORECASE), + "collection": "IssuesAndDeviations", + "upsert_key": "ID", + "indexes": [ + "fields.Country Name", "fields.Site ID", "fields.Status", + "fields.Brief Description - Subject ID", + ], + }, + "Visits": { + "pattern": re.compile(r"Site Visit Details\.xlsx$", re.IGNORECASE), + "collection": "Visits", + "upsert_key": "Site Visit ID (Technical)", + "indexes": [ + "fields.Country Name", "fields.Site ID", + "fields.Site Visit Status", "fields.Site Visit Type", + ], + }, + "FUL": { + "pattern": re.compile(r"FUL details\.xlsx$", re.IGNORECASE), + "collection": "FUL", + "upsert_key": "SVR Document Number", + "indexes": [ + "fields.Country Name", "fields.Site ID", + "fields.FUL Missing?", "fields.FUL Document Status", + ], + }, + "contacts": { + "pattern": re.compile(r"PANORAMA Site Contacts\.xlsx$", re.IGNORECASE), + "collection": "contacts", + "upsert_key": None, + "composite_keys": ["Contact Identifier", "Protocol ID", "Site ID", "Contact Role"], + "no_country_filter": True, + "indexes": [ + "fields.Country Name", "fields.Site ID", + "fields.Protocol ID", "fields.Contact Role", + "fields.Contact Email Address", "fields.Contact Identifier", + ], + }, +} + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def extract_snapshot_date(filename: str) -> str: + match = re.match(r"(\d{4}-\d{2}-\d{2})", Path(filename).name) + return match.group(1) if match else datetime.now().strftime("%Y-%m-%d") + + +def fuzzy_match_existing(collection, fields: dict): + """Najde existující záznam pomocí fuzzy match nad Description/Comments/Action Taken. + Vrací existující dokument nebo None. + """ + candidates = collection.find({ + "fields.Part": fields.get("Part"), + "fields.Protocol ID": fields.get("Protocol ID"), + "fields.Site ID": fields.get("Site ID"), + "fields.Create Date": fields.get("Create Date"), + "fields.Brief Description - Subject ID": fields.get("Brief Description - Subject ID"), + "fields.ID": None, + }) + + new_vals = {f: (fields.get(f) or "").strip() for f in FUZZY_FIELDS} + + for cand in candidates: + cand_fields = cand.get("fields", {}) + cand_vals = {f: (cand_fields.get(f) or "").strip() for f in FUZZY_FIELDS} + + scores = {} + for f in FUZZY_FIELDS: + if new_vals[f] and cand_vals[f]: + scores[f] = fuzz.ratio(new_vals[f], cand_vals[f]) + + passing = [f for f, s in scores.items() if s >= FUZZY_THRESHOLD] + + if len(scores) >= FUZZY_MIN_FIELDS and len(passing) >= FUZZY_MIN_FIELDS: + return cand + if len(scores) < FUZZY_MIN_FIELDS and "Description" in scores and scores["Description"] >= FALLBACK_DESC_THRESHOLD: + return cand + + return None + + +def detect_report_type(filename: str) -> dict | None: + for cfg in REPORT_TYPES.values(): + if cfg["pattern"].search(filename): + return cfg + return None + + +def clean_value(val): + """Převede datetime na ISO string, None nechá, zbytek strip.""" + if val is None: + return None + if isinstance(val, datetime): + return val.isoformat() + if isinstance(val, date): + return val.isoformat() + if isinstance(val, str): + val = val.strip() + return val if val else None + return val + + +# --------------------------------------------------------------------------- +# Import jednoho souboru +# --------------------------------------------------------------------------- + +def import_file(xlsx_path: str, collection, report_cfg: dict) -> dict: + filename = Path(xlsx_path).name + snapshot_date = extract_snapshot_date(filename) + upsert_key = report_cfg["upsert_key"] + collection_name = report_cfg["collection"] + use_fuzzy = (collection_name == "IssuesAndDeviations") + apply_country_filter = COUNTRY_FILTER and not report_cfg.get("no_country_filter") + + wb = openpyxl.load_workbook(xlsx_path, read_only=True) + ws = wb[wb.sheetnames[0]] + rows = list(ws.iter_rows(values_only=True)) + wb.close() + + header = rows[HEADER_ROW] + + data_rows = [r for r in rows[DATA_START_ROW:] if any(v is not None for v in r)] + xlsx_count = len(data_rows) + + inserted = changed = unchanged = filtered_out = 0 + + for row in data_rows: + raw = dict(zip(header, row)) + + country = (raw.get("Country Name") or "") + if apply_country_filter and country != COUNTRY_FILTER: + filtered_out += 1 + continue + + fields = {} + for k, v in raw.items(): + if k is None: + continue + fields[k] = clean_value(v) + + composite_keys = report_cfg.get("composite_keys") + record_id = raw.get(upsert_key) if upsert_key else None + has_id = record_id is not None + + if composite_keys: + key_parts = [str(raw.get(k) or "").strip() for k in composite_keys] + h = hashlib.sha1("|".join(key_parts).encode("utf-8")).hexdigest()[:16] + record_id = f"C-{h}" + existing = collection.find_one({"record_id": record_id}) + elif has_id: + record_id = str(int(record_id)) if isinstance(record_id, (int, float)) else str(record_id).strip() + existing = collection.find_one({"record_id": record_id}) + elif use_fuzzy: + existing = fuzzy_match_existing(collection, fields) + if existing is not None: + record_id = existing["record_id"] + else: + key_parts = [ + str(raw.get("Part") or ""), + str(raw.get("Site ID") or ""), + str(raw.get("Create Date") or ""), + str(raw.get("Description") or ""), + str(raw.get("Brief Description - Subject ID") or ""), + str(raw.get("Comments") or ""), + str(raw.get("Action Taken") or ""), + ] + h = hashlib.sha1("|".join(key_parts).encode("utf-8")).hexdigest()[:16] + record_id = f"H-{h}" + else: + filtered_out += 1 + continue + + if existing is None: + doc = { + "record_id": record_id, + "fields": fields, + "sourceFile": filename, + "firstSeen": snapshot_date, + "lastSeen": snapshot_date, + "history": [], + } + collection.insert_one(doc) + inserted += 1 + + elif existing.get("fields") != fields: + old_entry = { + "date": existing.get("lastSeen", snapshot_date), + "fields": existing["fields"], + } + collection.update_one( + {"_id": existing["_id"]}, + { + "$push": {"history": old_entry}, + "$set": { + "fields": fields, + "sourceFile": filename, + "lastSeen": snapshot_date, + }, + }, + ) + changed += 1 + + else: + collection.update_one( + {"_id": existing["_id"]}, + {"$set": {"lastSeen": snapshot_date, "sourceFile": filename}}, + ) + unchanged += 1 + + processed = inserted + changed + unchanged + filtered_out + protocol_id = None + for row in data_rows[:50]: + raw = dict(zip(header, row)) + pid = raw.get("Protocol ID") + if pid: + protocol_id = str(pid).strip() + break + db_count = collection.count_documents({"fields.Protocol ID": protocol_id}) if protocol_id else None + + stats = { + "snapshot": snapshot_date, + "inserted": inserted, + "changed": changed, + "unchanged": unchanged, + "filtered_out": filtered_out, + "xlsx_count": xlsx_count, + "db_count": db_count, + "protocol_id": protocol_id, + } + print(f" {collection_name} [{snapshot_date}]: +{inserted} new, ~{changed} changed, ={unchanged} same, -{filtered_out} non-CZ") + + expected_in_db = xlsx_count - filtered_out + + if processed != xlsx_count: + print(f" !!! VAROVANI: zpracovano {processed} radku, ale v XLSX je {xlsx_count} datovych radku") + if db_count is not None and db_count != expected_in_db and not report_cfg.get("composite_keys"): + print(f" !!! VAROVANI: v DB je {db_count} dokumentu pro Protocol ID {protocol_id}, ocekavano {expected_in_db} (XLSX {xlsx_count} - filtered {filtered_out})") + + return stats + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + paths: list[Path] = [] + + if len(sys.argv) > 1: + for arg in sys.argv[1:]: + p = Path(arg) + if p.is_file(): + paths.append(p) + else: + print(f"Soubor nenalezen: {arg}") + else: + paths = sorted(DOWNLOADS_DIR.glob("*.xlsx")) + + if not paths: + print("Zadne XLSX soubory k importu.") + return + + print(f"Nalezeno {len(paths)} souboru.\n") + + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + client.admin.command("ping") + db = client[DB_NAME] + + collections_cache: dict[str, any] = {} + + def get_collection(cfg: dict): + name = cfg["collection"] + if name not in collections_cache: + col = db[name] + col.create_index([("record_id", ASCENDING)], unique=True) + for idx_field in cfg["indexes"]: + col.create_index([(idx_field, ASCENDING)]) + collections_cache[name] = col + return collections_cache[name] + + PROCESSED_DIR.mkdir(exist_ok=True) + + total = {"inserted": 0, "changed": 0, "unchanged": 0} + + for xlsx_path in paths: + report_cfg = detect_report_type(xlsx_path.name) + if report_cfg is None: + print(f"PRESKAKUJI (neznamy typ): {xlsx_path.name}") + continue + + collection = get_collection(report_cfg) + print(f"Import: {xlsx_path.name} -> {report_cfg['collection']}") + stats = import_file(str(xlsx_path), collection, report_cfg) + for k in total: + total[k] += stats.get(k, 0) + + dest = PROCESSED_DIR / xlsx_path.name + shutil.move(str(xlsx_path), str(dest)) + print(f" -> presunut do Zpracovano/") + + client.close() + + print(f"\nCelkem: +{total['inserted']} new, ~{total['changed']} changed, ={total['unchanged']} same") + + +if __name__ == "__main__": + main() diff --git a/VTMFTimelyFillingEvidence/EAT and Timely Filing Inclusion Exclusion List v27.0.xlsm b/VTMFTimelyFillingEvidence/EAT and Timely Filing Inclusion Exclusion List v27.0.xlsm new file mode 100644 index 0000000..d03ecb4 Binary files /dev/null and b/VTMFTimelyFillingEvidence/EAT and Timely Filing Inclusion Exclusion List v27.0.xlsm differ diff --git a/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_.xlsx b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_.xlsx new file mode 100644 index 0000000..b3a4970 Binary files /dev/null and b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_.xlsx differ diff --git a/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_132654.xlsx b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_132654.xlsx new file mode 100644 index 0000000..ba6bd7a Binary files /dev/null and b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_132654.xlsx differ diff --git a/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_133516.xlsx b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_133516.xlsx new file mode 100644 index 0000000..46b0647 Binary files /dev/null and b/VTMFTimelyFillingEvidence/Timely Filing Evidence Report_with_flag_20260429_133516.xlsx differ diff --git a/VTMFTimelyFillingEvidence/add_timely_filing_flag.py b/VTMFTimelyFillingEvidence/add_timely_filing_flag.py new file mode 100644 index 0000000..8b67971 --- /dev/null +++ b/VTMFTimelyFillingEvidence/add_timely_filing_flag.py @@ -0,0 +1,90 @@ +import shutil +import pandas as pd +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side, Color +from datetime import datetime + +IE_FILE = "EAT and Timely Filing Inclusion Exclusion List v27.0.xlsm" +EV_FILE = "Timely Filing Evidence Report_.xlsx" +timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") +OUT_FILE = f"Timely Filing Evidence Report_with_flag_{timestamp}.xlsx" + +# --- build lookup from IE --- +ie = pd.read_excel(IE_FILE, sheet_name="JRD TMF Content Map") +lookup = {} +for _, row in ie.iterrows(): + key = ( + str(row["Type/Zone"]).strip().lower(), + str(row["SubType/Section"]).strip().lower(), + str(row["Classification/Artifact"]).strip().lower(), + ) + lookup[key] = str(row["Include in Timely Filing Report"]).strip() + +# --- copy Evidence Report --- +shutil.copy(EV_FILE, OUT_FILE) +wb = load_workbook(OUT_FILE) +ws = wb["Report"] + +# header row is row 4 (1-indexed); data starts row 5 +# current cols: A=DocNum, B=Version, ..., F=Type(6), G=Subtype(7), H=Classification(8) +HEADER_ROW = 4 +DATA_START = 5 +COL_TYPE = 6 # F +COL_SUBTYPE = 7 # G +COL_CLASS = 8 # H +INSERT_COL = 2 # insert as new column B + +# read key columns before inserting +row_keys = {} +for r in range(DATA_START, ws.max_row + 1): + t = ws.cell(r, COL_TYPE).value + s = ws.cell(r, COL_SUBTYPE).value + c = ws.cell(r, COL_CLASS).value + if t or s or c: + row_keys[r] = (str(t).strip().lower() if t else "", str(s).strip().lower() if s else "", str(c).strip().lower() if c else "") + +# insert column B (shifts everything right) +ws.insert_cols(INSERT_COL) + +# style helpers +header_font = Font(bold=True, name="Calibri", size=11, color=Color(theme=0)) +yes_fill = PatternFill("solid", start_color="C6EFCE") # light green +no_fill = PatternFill("solid", start_color="FFC7CE") # light red +na_fill = PatternFill("solid", start_color="FFEB9C") # light yellow +thin = Side(style="thin") +border = Border(left=thin, right=thin, top=thin, bottom=thin) + +# write header +hcell = ws.cell(HEADER_ROW, INSERT_COL, "Include in Timely Filing") +hcell.font = header_font +hcell.fill = PatternFill("solid", start_color="0070C0") +hcell.alignment = Alignment(horizontal="center", wrap_text=True) +hcell.border = border + +# write values +for r, key in row_keys.items(): + val = lookup.get(key, "N/A") + cell = ws.cell(r, INSERT_COL, val) + cell.font = Font(name="Calibri", size=11) + cell.alignment = Alignment(horizontal="center") + cell.border = border + if val == "Yes": + cell.fill = yes_fill + elif val == "No": + cell.fill = no_fill + else: + cell.fill = na_fill + +# set column width +ws.column_dimensions[ws.cell(1, INSERT_COL).column_letter].width = 18 + +wb._external_links = [] +wb.defined_names = wb.defined_names.__class__() +wb.save(OUT_FILE) +print(f"Saved: {OUT_FILE}") + +# quick stats +total = len(row_keys) +matched = sum(1 for k in row_keys.values() if lookup.get(k, "N/A") != "N/A") +na_count = sum(1 for k in row_keys.values() if lookup.get(k, "N/A") == "N/A") +print(f"Rows: {total}, matched: {matched}, N/A (no match): {na_count}") diff --git a/VTMFprocessing/Processed/2026-04-21 13_39_53 77242113UCO3001 Document Inventory Report - Site Level All Sites by Country.xlsx b/VTMFprocessing/Processed/2026-04-21 13_39_53 77242113UCO3001 Document Inventory Report - Site Level All Sites by Country.xlsx new file mode 100644 index 0000000..2af6715 Binary files /dev/null and b/VTMFprocessing/Processed/2026-04-21 13_39_53 77242113UCO3001 Document Inventory Report - Site Level All Sites by Country.xlsx differ diff --git a/VTMFprocessing/ToProcess/Document Inventory Report - Site Level All Sites by Country.xlsx b/VTMFprocessing/ToProcess/Document Inventory Report - Site Level All Sites by Country.xlsx new file mode 100644 index 0000000..5605aa7 Binary files /dev/null and b/VTMFprocessing/ToProcess/Document Inventory Report - Site Level All Sites by Country.xlsx differ diff --git a/VTMFprocessing/process_vtmf.py b/VTMFprocessing/process_vtmf.py new file mode 100644 index 0000000..f128326 --- /dev/null +++ b/VTMFprocessing/process_vtmf.py @@ -0,0 +1,111 @@ +import re +import copy +import datetime +from collections import Counter +from pathlib import Path +from openpyxl import load_workbook, Workbook +from openpyxl.utils import get_column_letter + +TO_PROCESS = Path(__file__).parent / "ToProcess" +PROCESSED = Path(__file__).parent / "Processed" +SITE_PATTERN = re.compile(r'DD5-CZ\d+') + +ACTIVE_SITES = { + "DD5-CZ10001", "DD5-CZ10003", "DD5-CZ10006", "DD5-CZ10009", + "DD5-CZ10010", "DD5-CZ10012", "DD5-CZ10013", "DD5-CZ10015", + "DD5-CZ10016", "DD5-CZ10020", "DD5-CZ10021", "DD5-CZ10022", +} +TAB_GREEN = "00B050" +TAB_RED = "FF0000" + + +def copy_row(ws_dst, dst_row_num, src_row): + for src_cell in src_row: + dst_cell = ws_dst.cell(row=dst_row_num, column=src_cell.column) + dst_cell.value = src_cell.value + if src_cell.has_style: + dst_cell.font = copy.copy(src_cell.font) + dst_cell.fill = copy.copy(src_cell.fill) + dst_cell.border = copy.copy(src_cell.border) + dst_cell.alignment = copy.copy(src_cell.alignment) + dst_cell.number_format = src_cell.number_format + + +def process_file(src_path: Path): + print(f"Processing: {src_path.name}") + wb_src = load_workbook(src_path) + ws_src = wb_src["Sheet0"] + + headers = [ws_src.cell(1, c).value for c in range(1, ws_src.max_column + 1)] + site_col_idx = headers.index("Site") + 1 + date_col_idx = headers.index("Approval Complete Date") + 1 + + all_rows = list(ws_src.iter_rows(min_row=2)) + + all_sites = set( + m for row in all_rows + for m in SITE_PATTERN.findall(str(row[site_col_idx - 1].value or "")) + ) + active = sorted(s for s in all_sites if s in ACTIVE_SITES) + inactive = sorted(s for s in all_sites if s not in ACTIVE_SITES) + ordered_sites = active + inactive + print(f" Found {len(active)} active, {len(inactive)} inactive DD5-CZ sites") + + wb_out = Workbook() + wb_out.remove(wb_out.active) + + header_row = list(ws_src.iter_rows(min_row=1, max_row=1))[0] + + for site in ordered_sites: + site_rows = [ + row for row in all_rows + if site in (row[site_col_idx - 1].value or "") + ] + site_rows.sort( + key=lambda r: r[date_col_idx - 1].value or datetime.datetime.min, + reverse=True, + ) + + ws = wb_out.create_sheet(title=site) + ws.sheet_properties.tabColor = TAB_GREEN if site in ACTIVE_SITES else TAB_RED + copy_row(ws, 1, header_row) + + for i, row in enumerate(site_rows, start=2): + copy_row(ws, i, row) + + for col_idx in range(1, ws_src.max_column + 1): + col_letter = get_column_letter(col_idx) + if col_letter in ws_src.column_dimensions: + ws.column_dimensions[col_letter].width = ws_src.column_dimensions[col_letter].width + + ws.auto_filter.ref = ws.dimensions + print(f" {site}: {len(site_rows)} rows") + + study_col_idx = headers.index("Study") + 1 + study_values = [ + s.strip() + for row in all_rows + for s in str(row[study_col_idx - 1].value or "").split(",") + if s.strip() + ] + study_number = Counter(study_values).most_common(1)[0][0] + + timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H_%M_%S") + filename = f"{timestamp} {study_number} {src_path.name}" + out_path = PROCESSED / filename + wb_out.save(out_path) + print(f" Saved: {out_path}") + + +def main(): + xlsx_files = list(TO_PROCESS.glob("*.xlsx")) + if not xlsx_files: + print("No .xlsx files found in ToProcess/") + return + + for f in xlsx_files: + process_file(f) + + +if __name__ == "__main__": + main() diff --git a/mcp_mongo.py b/mcp_mongo.py new file mode 100644 index 0000000..44c0f3e --- /dev/null +++ b/mcp_mongo.py @@ -0,0 +1,509 @@ +#!/usr/bin/env python3 +""" +MCP server pro MongoDB — používá FastMCP. +Spustit: python mcp_mongo.py +""" + +import json +import sys +import traceback +from datetime import datetime, date +from typing import Optional, Union + +from bson import ObjectId +from mcp.server.fastmcp import FastMCP +from pymongo import MongoClient + +MONGO_HOST = "192.168.1.76" + + +def log(msg: str): + print(msg, file=sys.stderr, flush=True) + + +try: + client = MongoClient(MONGO_HOST, serverSelectionTimeoutMS=5000) + client.server_info() + log(f"Connected to MongoDB ({MONGO_HOST})") +except Exception as e: + log(f"MongoDB connection failed: {e}") + sys.exit(1) + + +def serialize(obj): + """Make MongoDB documents JSON-serializable.""" + if isinstance(obj, ObjectId): + return str(obj) + if isinstance(obj, datetime): + return obj.isoformat() + if isinstance(obj, date): + return obj.isoformat() + if isinstance(obj, bytes): + return obj.decode("utf-8", errors="replace") + if isinstance(obj, dict): + return {k: serialize(v) for k, v in obj.items()} + if isinstance(obj, list): + return [serialize(v) for v in obj] + return obj + + +def parse_filter(filter_json) -> dict: + """Parse JSON string or dict to dict. Returns {} on None/empty. + Automatically converts string _id values to ObjectId.""" + if not filter_json: + return {} + if isinstance(filter_json, str): + if not filter_json.strip(): + return {} + filter_json = json.loads(filter_json) + if isinstance(filter_json, dict): + if "_id" in filter_json and isinstance(filter_json["_id"], str): + try: + filter_json = dict(filter_json) + filter_json["_id"] = ObjectId(filter_json["_id"]) + except Exception: + pass + return filter_json + return {} + + +mcp = FastMCP("janssen-mongo") + + +@mcp.tool() +def list_databases() -> dict: + """List all databases on the MongoDB server (excludes admin/config/local).""" + try: + skip = {"admin", "config", "local"} + dbs = [d["name"] for d in client.list_databases() if d["name"] not in skip] + return {"count": len(dbs), "databases": dbs} + except Exception: + log(f"list_databases error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def list_collections(db: str) -> dict: + """List all collections in a database.""" + try: + cols = sorted(client[db].list_collection_names()) + return {"db": db, "count": len(cols), "collections": cols} + except Exception: + log(f"list_collections error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def collection_stats(db: str, collection: str) -> dict: + """Returns document count + schema sample (union of fields and types from first 20 documents).""" + try: + col = client[db][collection] + count = col.count_documents({}) + sample_docs = list(col.find().limit(20)) + schema = {} + for doc in sample_docs: + for k, v in doc.items(): + if k not in schema: + schema[k] = type(v).__name__ + return {"db": db, "collection": collection, "count": count, "schema": schema} + except Exception: + log(f"collection_stats error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def find_documents( + db: str, + collection: str, + filter_json: Optional[Union[str, dict]] = None, + projection_json: Optional[Union[str, dict]] = None, + sort_json: Optional[Union[str, dict]] = None, + limit: int = 50, + skip: int = 0, +) -> dict: + """Query documents. filter/projection/sort are JSON strings or dicts, e.g. '{"patient_code":"CZ1-01"}'. + sort example: '{"last_seen_at": -1}'. Limit max 500. Use skip for pagination. + """ + try: + col = client[db][collection] + filt = parse_filter(filter_json) + proj = parse_filter(projection_json) or None + sort_spec = parse_filter(sort_json) + limit = min(limit, 500) + + cursor = col.find(filt, proj) + if sort_spec: + cursor = cursor.sort(list(sort_spec.items())) + cursor = cursor.skip(skip).limit(limit) + + docs = [serialize(doc) for doc in cursor] + total = col.count_documents(filt) + return {"total": total, "skip": skip, "count": len(docs), "docs": docs} + except Exception: + log(f"find_documents error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def aggregate(db: str, collection: str, pipeline_json: str) -> dict: + """Run a MongoDB aggregation pipeline. pipeline_json is a JSON array of stages, + e.g. '[{"$group": {"_id": "$patient_code", "count": {"$sum": 1}}}]'. + """ + try: + col = client[db][collection] + pipeline = json.loads(pipeline_json) + results = [serialize(doc) for doc in col.aggregate(pipeline)] + return {"count": len(results), "results": results} + except Exception: + log(f"aggregate error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def field_coverage(db: str, collection: str, field: str) -> dict: + """Check how many documents have a given field present and non-null/non-empty. + Useful for verifying data consistency across a collection. + Returns total count, how many have the field, how many are missing it, and coverage %. + """ + try: + col = client[db][collection] + total = col.count_documents({}) + present = col.count_documents({field: {"$exists": True, "$ne": None, "$ne": ""}}) + missing = total - present + return { + "field": field, + "total": total, + "present": present, + "missing": missing, + "coverage_pct": round(present / total * 100, 1) if total else 0, + } + except Exception: + log(f"field_coverage error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def count_documents(db: str, collection: str, filter_json: Optional[Union[str, dict]] = None) -> dict: + """Count documents matching an optional filter. Fast way to check data without fetching content.""" + try: + col = client[db][collection] + filt = parse_filter(filter_json) + count = col.count_documents(filt) + return {"db": db, "collection": collection, "filter": filt, "count": count} + except Exception: + log(f"count_documents error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def schema_diff( + db: str, + collection: str, + filter_a_json: Optional[Union[str, dict]] = None, + filter_b_json: Optional[Union[str, dict]] = None, + sample_size: int = 50, +) -> dict: + """Compare field presence between two groups of documents in a collection. + filter_a_json and filter_b_json define the two groups (defaults to all documents). + Returns fields that are only in group A, only in group B, and in both — useful for + diagnosing why some documents are missing fields that others have. + """ + try: + col = client[db][collection] + filt_a = parse_filter(filter_a_json) + filt_b = parse_filter(filter_b_json) + + def get_field_set(filt: dict) -> set: + fields = set() + for doc in col.find(filt).limit(sample_size): + fields.update(doc.keys()) + return fields + + fields_a = get_field_set(filt_a) + fields_b = get_field_set(filt_b) + + only_in_a = sorted(fields_a - fields_b) + only_in_b = sorted(fields_b - fields_a) + in_both = sorted(fields_a & fields_b) + + return { + "only_in_a": only_in_a, + "only_in_b": only_in_b, + "in_both": in_both, + "count_a": len(fields_a), + "count_b": len(fields_b), + } + except Exception: + log(f"schema_diff error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def ping() -> dict: + """Check if MongoDB is reachable. Returns server version and latency.""" + try: + import time + start = time.monotonic() + info = client.server_info() + latency_ms = round((time.monotonic() - start) * 1000, 1) + return { + "status": "ok", + "version": info.get("version", "unknown"), + "latency_ms": latency_ms, + "host": MONGO_HOST, + } + except Exception as e: + return {"status": "error", "error": str(e), "host": MONGO_HOST} + + +@mcp.tool() +def distinct_values(db: str, collection: str, field: str, filter_json: Optional[Union[str, dict]] = None) -> dict: + """Return distinct values of a field, optionally filtered. Useful for exploring enums and categories.""" + try: + col = client[db][collection] + filt = parse_filter(filter_json) + values = [serialize(v) for v in col.distinct(field, filt)] + return {"field": field, "count": len(values), "values": values} + except Exception: + log(f"distinct_values error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def preview_update( + db: str, + collection: str, + filter_json: Union[str, dict], + update_json: Union[str, dict], +) -> dict: + """Preview what update_documents will change — shows affected count and sample of matching docs + BEFORE any write. Always call this first, then present the summary to the user for confirmation. + filter_json: MongoDB filter, e.g. '{}' for all documents. + update_json: MongoDB update operator, e.g. '{"$set": {"Zdroj": "Iluminátor"}}'. + """ + try: + col = client[db][collection] + filt = parse_filter(filter_json) + affected = col.count_documents(filt) + sample = [serialize(doc) for doc in col.find(filt).limit(3)] + upd = parse_filter(update_json) + return { + "db": db, + "collection": collection, + "filter": filt, + "update": upd, + "affected_count": affected, + "sample_docs": sample, + "note": "No changes made yet. Present this summary to the user and ask for confirmation before calling update_documents.", + } + except Exception: + log(f"preview_update error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def update_documents( + db: str, + collection: str, + filter_json: Union[str, dict], + update_json: Union[str, dict], + confirmed: bool = False, +) -> dict: + """Update documents matching filter_json using update_json (MongoDB update operators). + REQUIRES confirmed=True — only set this after presenting preview_update output to the user + and receiving explicit approval. + filter_json example: '{"zeme": "Czech Republic"}' + update_json example: '{"$set": {"Zdroj": "Iluminátor"}}' + """ + if not confirmed: + return { + "status": "aborted", + "reason": "confirmed=False. Call preview_update first, show the user what will change, and only proceed with confirmed=True after explicit approval.", + } + try: + col = client[db][collection] + filt = parse_filter(filter_json) + upd = parse_filter(update_json) + result = col.update_many(filt, upd) + log(f"update_documents: matched={result.matched_count} modified={result.modified_count}") + return { + "status": "ok", + "db": db, + "collection": collection, + "filter": filt, + "update": upd, + "matched_count": result.matched_count, + "modified_count": result.modified_count, + } + except Exception: + log(f"update_documents error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def preview_insert( + db: str, + collection: str, + documents_json: Union[str, list], +) -> dict: + """Preview what insert_documents will insert — shows count and the documents themselves + BEFORE any write. Always call this first, then present the summary to the user for confirmation. + documents_json: JSON array of documents, e.g. '[{"name": "Test", "value": 1}]'. + """ + try: + docs = json.loads(documents_json) if isinstance(documents_json, str) else documents_json + return { + "db": db, + "collection": collection, + "insert_count": len(docs), + "documents": docs, + "note": "No changes made yet. Present this summary to the user and ask for confirmation before calling insert_documents.", + } + except Exception: + log(f"preview_insert error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def insert_documents( + db: str, + collection: str, + documents_json: Union[str, list], + confirmed: bool = False, +) -> dict: + """Insert one or more documents into a collection. + REQUIRES confirmed=True — only set this after presenting preview_insert output to the user + and receiving explicit approval. + documents_json: JSON array of documents. + """ + if not confirmed: + return { + "status": "aborted", + "reason": "confirmed=False. Call preview_insert first, show the user what will be inserted, and only proceed with confirmed=True after explicit approval.", + } + try: + col = client[db][collection] + docs = json.loads(documents_json) if isinstance(documents_json, str) else documents_json + result = col.insert_many(docs) + log(f"insert_documents: inserted={len(result.inserted_ids)}") + return { + "status": "ok", + "db": db, + "collection": collection, + "inserted_count": len(result.inserted_ids), + "inserted_ids": [str(i) for i in result.inserted_ids], + } + except Exception: + log(f"insert_documents error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def preview_delete( + db: str, + collection: str, + filter_json: Union[str, dict], +) -> dict: + """Preview what delete_documents will remove — shows affected count and sample docs + BEFORE any write. Always call this first, then present the summary to the user for confirmation. + filter_json: MongoDB filter. Be careful with '{}' — it matches all documents. + """ + try: + col = client[db][collection] + filt = parse_filter(filter_json) + affected = col.count_documents(filt) + sample = [serialize(doc) for doc in col.find(filt).limit(3)] + return { + "db": db, + "collection": collection, + "filter": filt, + "affected_count": affected, + "sample_docs": sample, + "note": "No changes made yet. Present this summary to the user and ask for confirmation before calling delete_documents.", + } + except Exception: + log(f"preview_delete error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def delete_documents( + db: str, + collection: str, + filter_json: Union[str, dict], + confirmed: bool = False, +) -> dict: + """Delete documents matching filter_json. + REQUIRES confirmed=True — only set this after presenting preview_delete output to the user + and receiving explicit approval. + WARNING: '{}' as filter will delete ALL documents in the collection. + """ + if not confirmed: + return { + "status": "aborted", + "reason": "confirmed=False. Call preview_delete first, show the user what will be deleted, and only proceed with confirmed=True after explicit approval.", + } + try: + col = client[db][collection] + filt = parse_filter(filter_json) + result = col.delete_many(filt) + log(f"delete_documents: deleted={result.deleted_count}") + return { + "status": "ok", + "db": db, + "collection": collection, + "filter": filt, + "deleted_count": result.deleted_count, + } + except Exception: + log(f"delete_documents error: {traceback.format_exc()}") + raise + + +@mcp.tool() +def bulk_update( + db: str, + collection: str, + operations_json: Union[str, list], + confirmed: bool = False, +) -> dict: + """Run multiple update operations in one call — each with its own filter and update. + operations_json: JSON array of {filter, update} objects, e.g.: + [{"filter": {"email": "a@b.com"}, "update": {"$set": {"excel": {...}}}}, ...] + Each operation runs as update_one. REQUIRES confirmed=True. + """ + if not confirmed: + ops = json.loads(operations_json) if isinstance(operations_json, str) else operations_json + return { + "status": "preview", + "operation_count": len(ops), + "sample": ops[:3], + "note": "No changes made. Call again with confirmed=True to execute.", + } + try: + from pymongo import UpdateOne + col = client[db][collection] + ops = json.loads(operations_json) if isinstance(operations_json, str) else operations_json + requests = [ + UpdateOne(parse_filter(op["filter"]), parse_filter(op["update"])) + for op in ops + ] + result = col.bulk_write(requests, ordered=False) + log(f"bulk_update: matched={result.matched_count} modified={result.modified_count} upserted={result.upserted_count}") + return { + "status": "ok", + "db": db, + "collection": collection, + "operation_count": len(requests), + "matched_count": result.matched_count, + "modified_count": result.modified_count, + "upserted_count": result.upserted_count, + } + except Exception: + log(f"bulk_update error: {traceback.format_exc()}") + raise + + +if __name__ == "__main__": + log("MCP MongoDB server started (FastMCP)") + mcp.run() diff --git a/tmp_deploy.py b/tmp_deploy.py new file mode 100644 index 0000000..e1b0258 --- /dev/null +++ b/tmp_deploy.py @@ -0,0 +1,30 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +UNRAID_HOST = "192.168.1.76" +UNRAID_USER = "root" +UNRAID_PASS = "7309208104" +APP_SRC = r"U:\PythonProject\Janssen\EmailsImport\DockerCustomApp\app.py" +APP_DST = "/mnt/user/appdata/msgreceiver/app.py" + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect(UNRAID_HOST, username=UNRAID_USER, password=UNRAID_PASS) + +sftp = ssh.open_sftp() +sftp.put(APP_SRC, APP_DST) +sftp.close() +print(f"Nahráno: {APP_DST}") + +cmds = [ + "cd /mnt/user/appdata/msgreceiver && docker build -t msgreceiver . 2>&1 | tail -5", + "docker stop msgreceiver && docker rm msgreceiver", + "docker run -d --name msgreceiver -p 8765:8765 -v /mnt/user/JNJEMAILS:/msgs --restart unless-stopped msgreceiver", + "docker ps --filter name=msgreceiver --format '{{.Names}} {{.Status}}'", +] +for cmd in cmds: + _, out, err = ssh.exec_command(cmd) + output = out.read().decode() + err.read().decode() + print(f"$ {cmd[:60]}\n{output.strip()}\n") + +ssh.close() diff --git a/tmp_nginx_fix.py b/tmp_nginx_fix.py new file mode 100644 index 0000000..bc3ad19 --- /dev/null +++ b/tmp_nginx_fix.py @@ -0,0 +1,35 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +CONF = "/config/nginx/proxy-confs/msgreceiver.subdomain.conf" + +# Načti aktuální obsah +_, out, _ = ssh.exec_command(f"docker exec swag cat {CONF}") +content = out.read().decode() +print("=== PŘED ===") +print(content) + +# Nahraď limit +new_content = content.replace("client_max_body_size 50M;", "client_max_body_size 200M;") + +# Zapiš zpět +_, out, err = ssh.exec_command(f"docker exec -i swag tee {CONF}") +out.channel.sendall(new_content.encode()) +out.channel.shutdown_write() +print("=== PO ===") +print(new_content) + +# Reload nginx +_, out, err = ssh.exec_command("docker exec swag nginx -s reload 2>&1") +result = out.read().decode() + err.read().decode() +print(f"=== nginx reload: {result.strip() or 'OK'} ===") + +# Ověř +_, out, _ = ssh.exec_command(f"docker exec swag grep client_max_body_size {CONF}") +print(f"=== ověření: {out.read().decode().strip()} ===") + +ssh.close() diff --git a/tmp_ssh_check.py b/tmp_ssh_check.py new file mode 100644 index 0000000..eed5e1f --- /dev/null +++ b/tmp_ssh_check.py @@ -0,0 +1,33 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +# 1) Všechny kontejnery +_, out, _ = ssh.exec_command("docker ps --format '{{.Names}}'") +print("=== Kontejnery ===") +print(out.read().decode()) + +# 2) Hledej SWAG +_, out, _ = ssh.exec_command("docker ps --format '{{.Names}}' | grep -i swag") +swag = out.read().decode().strip() +print(f"=== SWAG kontejner: '{swag}' ===") + +if swag: + # 3) Najdi nginx config pro msgs.buzalka.cz + _, out, err = ssh.exec_command( + f"docker exec {swag} find /config/nginx/proxy-confs/ -name '*msgs*' -o -name '*msg*' 2>/dev/null" + ) + print("=== proxy-confs msgs* ===") + print(out.read().decode()) + + # 4) Zobraz hlavní nginx.conf - hledej client_max_body_size + _, out, _ = ssh.exec_command( + f"docker exec {swag} grep -r 'client_max_body_size' /config/nginx/ 2>/dev/null" + ) + print("=== client_max_body_size ===") + print(out.read().decode()) + +ssh.close() diff --git a/tmp_ssh_check2.py b/tmp_ssh_check2.py new file mode 100644 index 0000000..5cafd3d --- /dev/null +++ b/tmp_ssh_check2.py @@ -0,0 +1,11 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +_, out, _ = ssh.exec_command("docker exec swag cat /config/nginx/proxy-confs/msgreceiver.subdomain.conf") +print(out.read().decode()) + +ssh.close() diff --git a/tmp_ssh_check3.py b/tmp_ssh_check3.py new file mode 100644 index 0000000..d629c45 --- /dev/null +++ b/tmp_ssh_check3.py @@ -0,0 +1,23 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +# ModSecurity zapnutý? +_, out, _ = ssh.exec_command("docker exec swag cat /config/nginx/modsec/modsecurity.conf 2>/dev/null | grep -E 'SecRuleEngine|SecAuditEngine' | head -5") +print("=== ModSecurity status ===") +print(out.read().decode() or "(soubor neexistuje)") + +# Nginx error log - poslední záznamy 403 +_, out, _ = ssh.exec_command("docker exec swag tail -50 /config/log/nginx/error.log 2>/dev/null | grep -i '403\\|forbidden\\|modsec\\|block' | tail -20") +print("=== nginx error log (403/modsec) ===") +print(out.read().decode() or "(nic)") + +# Access log - poslední 403 +_, out, _ = ssh.exec_command("docker exec swag tail -100 /config/log/nginx/access.log 2>/dev/null | grep ' 403 ' | tail -10") +print("=== access log 403 ===") +print(out.read().decode() or "(nic)") + +ssh.close() diff --git a/tmp_ssh_check4.py b/tmp_ssh_check4.py new file mode 100644 index 0000000..604b101 --- /dev/null +++ b/tmp_ssh_check4.py @@ -0,0 +1,28 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +# proxy.conf obsah +_, out, _ = ssh.exec_command("docker exec swag cat /config/nginx/proxy.conf") +print("=== proxy.conf ===") +print(out.read().decode()) + +# fail2ban - banned IPs +_, out, _ = ssh.exec_command("docker exec swag fail2ban-client status 2>/dev/null | head -20") +print("=== fail2ban status ===") +print(out.read().decode() or "(fail2ban není)") + +# access log - kde jsou uloženy a jak jsou velké +_, out, _ = ssh.exec_command("docker exec swag ls -lh /config/log/nginx/ 2>/dev/null") +print("=== nginx log soubory ===") +print(out.read().decode()) + +# starší access logy - gzip archiv? +_, out, _ = ssh.exec_command("docker exec swag ls -lh /config/log/nginx/*.gz 2>/dev/null | head -5") +print("=== archivované logy ===") +print(out.read().decode() or "(žádné)") + +ssh.close() diff --git a/tmp_ssh_check5.py b/tmp_ssh_check5.py new file mode 100644 index 0000000..54d1c83 --- /dev/null +++ b/tmp_ssh_check5.py @@ -0,0 +1,28 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +# fail2ban - banned IPs per jail +for jail in ["nginx-unauthorized", "nginx-badbots", "nginx-deny"]: + _, out, _ = ssh.exec_command(f"docker exec swag fail2ban-client status {jail} 2>/dev/null") + print(f"=== fail2ban {jail} ===") + print(out.read().decode()) + +# hledej 403 v access logu pro msgs +_, out, _ = ssh.exec_command( + "docker exec swag grep 'msgs.buzalka.cz' /config/log/nginx/access.log | grep ' 403 ' | tail -20" +) +print("=== access.log msgs 403 ===") +print(out.read().decode() or "(nic)") + +# hledej všechny POST /upload z dnešního dne +_, out, _ = ssh.exec_command( + "docker exec swag grep 'POST /upload' /config/log/nginx/access.log | grep '01/Jun/2026' | tail -20" +) +print("=== POST /upload dnes ===") +print(out.read().decode() or "(nic)") + +ssh.close() diff --git a/tmp_ssh_check6.py b/tmp_ssh_check6.py new file mode 100644 index 0000000..42b29aa --- /dev/null +++ b/tmp_ssh_check6.py @@ -0,0 +1,13 @@ +import paramiko, sys +sys.stdout.reconfigure(encoding="utf-8") + +ssh = paramiko.SSHClient() +ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +ssh.connect("192.168.1.76", username="root", password="7309208104") + +# uvicorn/app logy z msgreceiver kontejneru — hledej 403 a časy kolem 11:33 UTC +_, out, _ = ssh.exec_command("docker logs msgreceiver --since 2026-06-01T11:28:00Z --until 2026-06-01T11:35:00Z 2>&1") +print("=== msgreceiver logy 11:28-11:35 UTC ===") +print(out.read().decode() or "(prázdné)") + +ssh.close()